diff --git a/.gitignore b/.gitignore index 3d51edb0009..97fc6affcac 100644 --- a/.gitignore +++ b/.gitignore @@ -130,6 +130,7 @@ docs/** !docs/reference/ssh-host-key-verification.md !docs/reference/ssh-reconnect-source-recovery.md !docs/reference/windows-setup-shell.md +!docs/reference/windows-terminal-shell-selection.md !docs/reference/worktree-scan-fingerprint.md !docs/reference/wsl-command-execution.md !docs/reference/wsl-probe-failure-semantics.md diff --git a/AGENTS.md b/AGENTS.md index 0c11d13a9ca..664d986da13 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -61,6 +61,7 @@ Orca targets macOS, Linux, and Windows. Keep all platform-dependent behavior beh - **Keyboard shortcuts**: Never hardcode `e.metaKey`. Use a platform check (`navigator.userAgent.includes('Mac')`) to pick `metaKey` on Mac and `ctrlKey` on Linux/Windows. Electron menu accelerators should use `CmdOrCtrl`. - **Shortcut labels in UI**: Display `⌘` / `⇧` on Mac and `Ctrl+` / `Shift+` on other platforms. - **File paths**: Use `path.join` or Electron/Node path utilities — never assume `/` or `\`. +- **Windows terminal shells**: `--shell` picks the shell a terminal *is*; `--command` is typed into whatever shell the host spawned, so a shell choice routed through `command` silently becomes a child process. See [`docs/reference/windows-terminal-shell-selection.md`](./docs/reference/windows-terminal-shell-selection.md). - **Windows setup scripts**: the setup/issue-command runner is a `.cmd` batch file unless the script starts with a `#!` line — never derive that from the user's terminal-shell preference, and never launch a `.cmd` runner with a bare `cmd.exe /c` from a Git Bash pane (MSYS rewrites the `/c`). See [`docs/reference/windows-setup-shell.md`](./docs/reference/windows-setup-shell.md). - **Windows child processes**: start them through `runProcess`/`spawnProcess` in `src/shared/child-process/` — never `child_process` directly. It pins `windowsHide`, refuses `shell: true`, and encodes `.cmd`/`.bat` arguments so neither `CommandLineToArgvW` nor `cmd.exe` mangles them. A ratchet test fails on any new direct import. Recognised npm/pnpm `.cmd` shims are resolved to their real target so the spawn skips `cmd.exe` entirely; see [`docs/reference/windows-cmd-shim-resolution.md`](./docs/reference/windows-cmd-shim-resolution.md) before adding a shim shape or debugging one. - **Windows process enumeration**: read the table through `src/main/windows/windows-process-table.ts`, never by forking `powershell.exe`. See [`docs/reference/windows-process-enumeration.md`](./docs/reference/windows-process-enumeration.md). diff --git a/config/scripts/generate-rpc-params-catalog.mjs b/config/scripts/generate-rpc-params-catalog.mjs index 9810f952e77..bd7ddcd53f6 100644 --- a/config/scripts/generate-rpc-params-catalog.mjs +++ b/config/scripts/generate-rpc-params-catalog.mjs @@ -40,8 +40,12 @@ const repoPath = (absolute) => posix(path.relative(REPO_ROOT, absolute)) // Every module the catalog may import from: the extracted params modules plus the // pre-existing src/shared schemas the RPC methods already bind directly. function indexableModules() { + // Tests are excluded here for the same reason as the RPC_DIR walk below: bundling one pulls + // vitest into the CJS catalog build, which throws on require(). const modules = new Set( - globSync('*.ts', { cwd: CONTRACT_DIR }).map((name) => path.join(CONTRACT_DIR, name)) + globSync('*.ts', { cwd: CONTRACT_DIR }) + .filter((name) => !name.endsWith('.test.ts')) + .map((name) => path.join(CONTRACT_DIR, name)) ) modules.delete(OUTPUT_PATH) for (const file of globSync('**/*.ts', { cwd: RPC_DIR })) { diff --git a/docs/reference/windows-terminal-shell-selection.md b/docs/reference/windows-terminal-shell-selection.md new file mode 100644 index 00000000000..b0e361c5447 --- /dev/null +++ b/docs/reference/windows-terminal-shell-selection.md @@ -0,0 +1,54 @@ +# Windows terminal shell selection + +Two different things can put `cmd.exe` on a Windows terminal, and only one of them makes the +terminal _be_ cmd. + +- **`--shell` / `shellOverride`** names the executable the PTY is spawned as. The terminal's own + process is that shell for its whole life. +- **`--command` / `startupCommand`** is text the provider types into whatever shell it spawned. + `--command cmd.exe` therefore starts cmd as a **child** of the host's default shell. + +The difference is invisible until the child exits. Leaving that cmd returns the caller's handle to +a Git Bash or PowerShell prompt it never asked for, and anything that keyed off "this terminal is +cmd" is now wrong — while `terminal list` still shows one connected, healthy terminal, because the +PTY never changed. + +## Why the runtime path needed its own fix + +There are two spawn preflights, and they are twins: + +- `src/main/ipc/pty/ipc/spawn-preflight.ts` — renderer/IPC spawns (a terminal tab in the app). +- `src/main/ipc/pty/runtime/spawn-preflight.ts` — runtime spawns: `terminal.create` from the CLI, + headless `orca serve`, and every paired remote environment. + +Only the IPC twin read the caller's requested shell. The runtime twin passed a literal `undefined`, +so a runtime-created terminal could only ever be the host's default shell. `orca terminal create +--command cmd.exe` against a Windows environment had no way to say "be cmd" — it could only type +`cmd.exe` into Git Bash. `src/main/ipc/pty/pty-spawn-shell-override-parity.test.ts` pins the pair. + +## Rules + +- A caller choosing a shell passes `--shell`; a caller running a program passes `--command`. Do not + route a shell choice through `command` — it looks like it worked. +- The allowlist is `isSupportedWindowsShellOverride` in `src/shared/windows-terminal-shell.ts`, and + it is the reason `--shell` cannot name an arbitrary executable. The CLI, the `terminal.create` + RPC schema, and the relay all check the same set; add a shell in one place only. +- Bare shell names only. A path or anything with arguments is refused, so `--shell` can never carry + a command line into `pty.spawn`. +- A host that predates `--shell` STRIPS it (`terminal.create` params are a zod object, which drops + unknown keys) and answers with a healthy terminal running its default shell — a reply that reads + as success. So the CLI gates on `TERMINAL_CREATE_SHELL_SELECTION_RUNTIME_CAPABILITY` and refuses + before creating anything, rather than creating the wrong shell quietly. +- `--shell` is Windows-only, and a host that cannot apply it REFUSES the create + (`terminalShellOverrideRefusal`). macOS and Linux execution hosts spawn the login shell, and a + terminal routed over SSH resolves its shell on the SSH host, whose platform and installed shells + this runtime cannot see. Refusing is the point: spawning the default shell and reporting success + is the failure `--shell` exists to remove. +- A project's execution runtime decides which MACHINE the shell runs on, so it outranks a + per-terminal pick — but it outranks it by REFUSING, not by rewriting. A `--shell` that + contradicts the project runtime (a Windows shell on a WSL project, or a WSL name on a + Windows-host project) is refused. `resolveLocalWindowsTerminalRuntimeOptions` would otherwise + rewrite the value — a WSL project forces `wsl.exe`, a Windows-host project discards a WSL name in + favour of `COMSPEC` — and hand back a terminal running something the caller never asked for. It + also splits an agent launch's quoting from the shell that receives it: POSIX-quoted args typed + into cmd, or cmd-quoted args typed into a WSL shell. diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json index bb16a78e2e2..242fe11cbe5 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json +++ b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json @@ -3,10 +3,10 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "0431ac82cbb8c60b16f4432fd0da7cff665485d668e512b20fc1168ec63db3fe", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json b/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json index 495437062cb..e9cd49c0eb0 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json +++ b/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json @@ -3,10 +3,10 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "e97c6db772a70ee1912419ac67835b6074aaf9a341d4360389a11465f08092c5", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json b/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json index 4092fa6e375..120b26ac1db 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json +++ b/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json @@ -3,10 +3,10 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "10011c7c75e74d9c2e880c5458c9156264ae07e91956a80946ede1d4e684952a", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json new file mode 100644 index 00000000000..16539153f4e --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json @@ -0,0 +1,89 @@ +{ + "operation": "aiVault.resume-launch", + "family": "aiVault.resume-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "ebf1bbc01ad7704fe79eff0969fcc2d4af8ebfa7c2410d2ed9d3ae8c6976b434", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "58d16e8809a2": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" + }, + "62643ed38326": { + "failure": "Workspace is busy", + "launched": "unlaunched" + }, + "6e913cd7b306": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Workspace is busy", + "isRpcDeliveryUnknown": false + } + }, + "a7dec90e01a8": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "worktree_busy", + "message": "Workspace is busy" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "aivault-resume-launch-create-refused", + "checkpoints": [ + { + "id": "create-refused", + "observation": { + "sender": ["a7dec90e01a8"], + "payloads": ["58d16e8809a2"], + "settlements": { + "bare": "6e913cd7b306" + }, + "state": "62643ed38326", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json new file mode 100644 index 00000000000..6eea99fbcd7 --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json @@ -0,0 +1,96 @@ +{ + "operation": "aiVault.resume-launch", + "family": "aiVault.resume-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "281ccf5a082f3788ae8bf19f742ea4baf35c20c78bc91d7d91873845583e1a91", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "432332c9740e": { + "failure": "Created terminal response was invalid", + "launched": "unlaunched" + }, + "681fc4d59b92": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Created terminal response was invalid", + "isRpcDeliveryUnknown": false + } + }, + "af9961132c24": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tab": { + "id": "tab-9" + } + } + } + } + }, + "eb30e498d168": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" + } + }, + "recording": { + "scenario": "aivault-resume-launch-invalid-tab", + "checkpoints": [ + { + "id": "invalid-tab", + "observation": { + "sender": ["af9961132c24"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "681fc4d59b92" + }, + "state": "432332c9740e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json new file mode 100644 index 00000000000..b329349e867 --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json @@ -0,0 +1,140 @@ +{ + "operation": "aiVault.resume-launch", + "family": "aiVault.resume-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "941fcf202417c94ef546f5ee331983689d8b72397dac6f61dda944ca24abed9e", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0f026fafa7e1": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Terminal input is locked", + "isRpcDeliveryUnknown": false + } + }, + "5f84c02b1f7b": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "6b1e36abce6b": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tab": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex", + "type": "terminal" + } + } + } + } + }, + "a9a45875782f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" + }, + "da57c90b80d6": { + "failure": "Terminal input is locked", + "launched": "unlaunched" + }, + "eb30e498d168": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" + } + }, + "recording": { + "scenario": "aivault-resume-launch-locked", + "checkpoints": [ + { + "id": "input-locked", + "observation": { + "sender": ["6b1e36abce6b", "5f84c02b1f7b"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "0f026fafa7e1" + }, + "state": "da57c90b80d6", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json new file mode 100644 index 00000000000..e3f52018840 --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json @@ -0,0 +1,146 @@ +{ + "operation": "aiVault.resume-launch", + "family": "aiVault.resume-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "f0ac1c996e5b1b4043e0a081978476c6c2dd8a5d517d5752857721205a588fb0", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "400d946a183d": { + "failure": { + "$rpc": "null" + }, + "launched": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex" + } + }, + "6b1e36abce6b": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tab": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex", + "type": "terminal" + } + } + } + } + }, + "6e79da536ca9": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex" + } + }, + "a84f5d45a48b": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "a9a45875782f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" + }, + "eb30e498d168": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" + } + }, + "recording": { + "scenario": "aivault-resume-launch-sent", + "checkpoints": [ + { + "id": "resumed", + "observation": { + "sender": ["6b1e36abce6b", "a84f5d45a48b"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json new file mode 100644 index 00000000000..c91898d3562 --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json @@ -0,0 +1,89 @@ +{ + "operation": "aiVault.resume-preparation", + "family": "aiVault.resume-preparation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "dc9926f95475413627315e1f1c96740ececa697c6a0a5e3c42e18cfd4d58448a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1c21b98bedb1": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "codex home is locked", + "isRpcDeliveryUnknown": false + } + }, + "3a299ed75c3d": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "internal", + "message": "codex home is locked" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7e4864f4412b": { + "failure": "codex home is locked", + "prepared": "unprepared" + }, + "9a6c365d544f": { + "name": "aiVault.prepareSessionResume#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" + } + }, + "recording": { + "scenario": "aivault-resume-prepare-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["3a299ed75c3d"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "1c21b98bedb1" + }, + "state": "7e4864f4412b", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json new file mode 100644 index 00000000000..0e05bb49ff5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json @@ -0,0 +1,97 @@ +{ + "operation": "aiVault.resume-preparation", + "family": "aiVault.resume-preparation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "6719aea706086a68709894546f9595264407db2df94fa56180cb3c68b08aaa69", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "02733b10ba3d": { + "failure": { + "$rpc": "null" + }, + "prepared": { + "agent": "codex", + "codexHome": "/hosts/codex-accounts/acct-1/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + "15e10cea84b9": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-accounts/acct-1/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + "9a6c365d544f": { + "name": "aiVault.prepareSessionResume#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" + }, + "d8803e70463f": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "substituteCodexHome": "/hosts/codex-accounts/acct-1/home", + "useRealCodexHome": false + } + } + } + } + }, + "recording": { + "scenario": "aivault-resume-prepare-repin", + "checkpoints": [ + { + "id": "repinned", + "observation": { + "sender": ["d8803e70463f"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "15e10cea84b9" + }, + "state": "02733b10ba3d", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json new file mode 100644 index 00000000000..a3baab8960d --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json @@ -0,0 +1,56 @@ +{ + "operation": "aiVault.resume-preparation", + "family": "aiVault.resume-preparation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "3afaf2807506f5bde2159b367f34c6b777739d6aad564796d54ac0da05b5bd02", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "5d9b438a0a47": { + "failure": { + "$rpc": "null" + }, + "prepared": { + "agent": "claude", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + "fd5226716450": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "agent": "claude", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + } + }, + "recording": { + "scenario": "aivault-resume-prepare-skipped", + "checkpoints": [ + { + "id": "no-wire", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "claude": "fd5226716450" + }, + "state": "5d9b438a0a47", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json new file mode 100644 index 00000000000..c1c6f8d66e0 --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json @@ -0,0 +1,97 @@ +{ + "operation": "aiVault.resume-preparation", + "family": "aiVault.resume-preparation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "a5eedea5f551e0ca0e143292f1d9aa8920dd7af62a02d8e8777666ab3779c019", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "9a6c365d544f": { + "name": "aiVault.prepareSessionResume#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" + }, + "a25c46d6c1db": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "forbidden", + "message": "Method 'aiVault.prepareSessionResume' is not available to mobile clients" + }, + "id": "frame-1", + "ok": false + } + } + }, + "e839ea279e77": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + "f9dc8bff0bbd": { + "failure": { + "$rpc": "null" + }, + "prepared": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + } + }, + "recording": { + "scenario": "aivault-resume-prepare-unavailable", + "checkpoints": [ + { + "id": "degraded-to-legacy", + "observation": { + "sender": ["a25c46d6c1db"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "e839ea279e77" + }, + "state": "f9dc8bff0bbd", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/b1.json b/mobile/rpc-foundation/goldens/b1.json index 9e950286748..18178b06511 100644 --- a/mobile/rpc-foundation/goldens/b1.json +++ b/mobile/rpc-foundation/goldens/b1.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "23ffc912a432dcd3ff70be1903a8d518cf85634f27a2be6d21585963e338e7e3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/b2.json b/mobile/rpc-foundation/goldens/b2.json index 1dd9d9bb7ec..fabb731bbc9 100644 --- a/mobile/rpc-foundation/goldens/b2.json +++ b/mobile/rpc-foundation/goldens/b2.json @@ -3,9 +3,9 @@ "family": "project-explicit-false", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/b3.json b/mobile/rpc-foundation/goldens/b3.json index 25948c2a698..1d1996a99f0 100644 --- a/mobile/rpc-foundation/goldens/b3.json +++ b/mobile/rpc-foundation/goldens/b3.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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" ] } } diff --git a/mobile/rpc-foundation/goldens/browser-dialog-accepted.json b/mobile/rpc-foundation/goldens/browser-dialog-accepted.json index 2053e7a8c67..0793dfa32ac 100644 --- a/mobile/rpc-foundation/goldens/browser-dialog-accepted.json +++ b/mobile/rpc-foundation/goldens/browser-dialog-accepted.json @@ -3,9 +3,9 @@ "family": "browser.dialog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "95f377bc4d8bf1248cafed26b2e9f425ad37e8d3c99e354bd6a8c67eb9bd9b1b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json b/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json index 742cd33b737..4e045caec4d 100644 --- a/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json +++ b/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json @@ -3,9 +3,9 @@ "family": "browser.dialog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "5071188ee492a4ced5be793b2dab32baa9750ee6535128635f274fd79198e2f1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/browser-keyboard-input.json b/mobile/rpc-foundation/goldens/browser-keyboard-input.json index 98bf2fef172..4db02afaa3c 100644 --- a/mobile/rpc-foundation/goldens/browser-keyboard-input.json +++ b/mobile/rpc-foundation/goldens/browser-keyboard-input.json @@ -3,9 +3,9 @@ "family": "browser.keyboard", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json b/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json index 79e6bc84e6e..0664dbc60e8 100644 --- a/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json +++ b/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "73faa87b359a11959543542016295bb6b36a10934dd99ad5c1a77a4290a608cd", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json b/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json index 6c0afcd8154..e5ac6262efd 100644 --- a/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json +++ b/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "20779e28880cf62340bc34cef8f40a49311e11262ac069df909743da9b5500ff", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json b/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json index b51824f9ad0..970957c549a 100644 --- a/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json +++ b/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json @@ -3,9 +3,9 @@ "family": "browser.wheel", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "e1bc21248ccff45ff217e385a51618b6f5724c037bfbefa03bb76a48dd4d793b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json new file mode 100644 index 00000000000..71a5b6b098a --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json @@ -0,0 +1,211 @@ +{ + "operation": "clipboard.image-terminal-attachment", + "family": "clipboard.image-attachment", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "d4031721b16d7c281c544e7b2eef774fd20dda1890d7ebaadcbbb1eda4d276fd", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1062fb0e8dcf": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false}}" + }, + "1c2f6fe81321": { + "name": "before-terminal-send", + "value": { + "terminal": "terminal-1" + }, + "sent": 3 + }, + "308e09c6a619": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/img.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "8aa742456efd": { + "attached": false, + "failure": { + "$rpc": "null" + } + }, + "972fbf8b960e": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "e93276a9971b": { + "name": "clipboard.commitImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": "/tmp/img.png" + } + } + }, + "f1a3d38271bc": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "received": 32 + } + } + } + } + }, + "recording": { + "scenario": "clipboard-image-attachment-anonymous", + "checkpoints": [ + { + "id": "rejected", + "observation": { + "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b", "308e09c6a619"], + "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e", "1062fb0e8dcf"], + "settlements": { + "anonymous": "7ed3d39f0607" + }, + "state": "8aa742456efd", + "effects": ["5f71b4d3d25c", "1c2f6fe81321"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-blocked-before-send.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-blocked-before-send.json new file mode 100644 index 00000000000..89bbd092107 --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-blocked-before-send.json @@ -0,0 +1,170 @@ +{ + "operation": "clipboard.image-terminal-attachment", + "family": "clipboard.image-attachment", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "ea04d03c15d3cb94be7fe111a8a6219c4e0304095679bbae62af623f5b36c9f4", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1c2f6fe81321": { + "name": "before-terminal-send", + "value": { + "terminal": "terminal-1" + }, + "sent": 3 + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "8aa742456efd": { + "attached": false, + "failure": { + "$rpc": "null" + } + }, + "972fbf8b960e": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "e93276a9971b": { + "name": "clipboard.commitImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": "/tmp/img.png" + } + } + }, + "f1a3d38271bc": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "received": 32 + } + } + } + } + }, + "recording": { + "scenario": "clipboard-image-attachment-blocked-before-send", + "checkpoints": [ + { + "id": "blocked", + "observation": { + "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b"], + "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e"], + "settlements": { + "blocked": "7ed3d39f0607" + }, + "state": "8aa742456efd", + "effects": ["5f71b4d3d25c", "1c2f6fe81321"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json new file mode 100644 index 00000000000..c788767a93e --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json @@ -0,0 +1,46 @@ +{ + "operation": "clipboard.image-terminal-attachment", + "family": "clipboard.image-attachment", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "e6be7d5dd6b4f5083627a3ba864b1b040d71bf72b60ad940b7d0d575964a7b80", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "8aa742456efd": { + "attached": false, + "failure": { + "$rpc": "null" + } + } + }, + "recording": { + "scenario": "clipboard-image-attachment-cancelled", + "checkpoints": [ + { + "id": "no-wire", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "cancelled": "7ed3d39f0607" + }, + "state": "8aa742456efd", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json new file mode 100644 index 00000000000..c763b09b2e5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json @@ -0,0 +1,215 @@ +{ + "operation": "clipboard.image-terminal-attachment", + "family": "clipboard.image-attachment", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "60273f74d8fe869723cbbd1a459d7d789a92e07a0f1e9444b42e2d7767e5bec1", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1c2f6fe81321": { + "name": "before-terminal-send", + "value": { + "terminal": "terminal-1" + }, + "sent": 3 + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "972fbf8b960e": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "b7a44aafa946": { + "attached": true, + "failure": { + "$rpc": "null" + } + }, + "bc40e57896c9": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/img.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "d202dd09e1ff": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "e93276a9971b": { + "name": "clipboard.commitImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": "/tmp/img.png" + } + } + }, + "f1a3d38271bc": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "received": 32 + } + } + } + } + }, + "recording": { + "scenario": "clipboard-image-attachment-pasted", + "checkpoints": [ + { + "id": "attached", + "observation": { + "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b", "bc40e57896c9"], + "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e", "d202dd09e1ff"], + "settlements": { + "normal": "84e5ca07cb7a" + }, + "state": "b7a44aafa946", + "effects": ["5f71b4d3d25c", "1c2f6fe81321"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json new file mode 100644 index 00000000000..7efda73cb3f --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json @@ -0,0 +1,92 @@ +{ + "operation": "clipboard.image-terminal-attachment", + "family": "clipboard.image-attachment", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "e7f492523421873f045726e15ec95eac26d43f7e971a33fd89ec1a9749492987", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "765ab192e1a5": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Image is too large", + "isRpcDeliveryUnknown": false + } + }, + "cc325ad637ea": { + "attached": "unattached", + "failure": "Image is too large" + }, + "ec6fd7f06461": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "too_large", + "message": "Image is too large" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "clipboard-image-attachment-upload-refused", + "checkpoints": [ + { + "id": "upload-refused", + "observation": { + "sender": ["ec6fd7f06461"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "765ab192e1a5" + }, + "state": "cc325ad637ea", + "effects": ["5f71b4d3d25c"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-upload-aborts-on-chunk-failure.json b/mobile/rpc-foundation/goldens/clipboard-image-upload-aborts-on-chunk-failure.json new file mode 100644 index 00000000000..6e8966b6477 --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-aborts-on-chunk-failure.json @@ -0,0 +1,165 @@ +{ + "operation": "clipboard.image-upload", + "family": "clipboard.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "195c2f15d81c70012ea88750ab3f84bfe512f7e422f7d2d09fb7919bd9cfd85a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "3de611958398": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-2" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "upload_expired", + "message": "Upload slot expired" + }, + "id": "frame-2", + "ok": false + } + } + }, + "75e35171f9cf": { + "name": "clipboard.abortImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.abortImageUpload\",\"params\":{\"uploadId\":\"upload-2\"}}" + }, + "930e54058461": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-2\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "9cfc668f592b": { + "name": "clipboard.abortImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.abortImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-2" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "aborted": true + } + } + } + }, + "a517d3be2ecf": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":null}}" + }, + "b49be31d506e": { + "failure": "Upload slot expired", + "path": "unsaved" + }, + "ead0111942f4": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Upload slot expired", + "isRpcDeliveryUnknown": false + } + }, + "eddc5bc46b9b": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": { + "$rpc": "null" + }, + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-2" + } + } + } + } + }, + "recording": { + "scenario": "clipboard-image-upload-aborts-on-chunk-failure", + "checkpoints": [ + { + "id": "aborted", + "observation": { + "sender": ["eddc5bc46b9b", "3de611958398", "9cfc668f592b"], + "payloads": ["a517d3be2ecf", "930e54058461", "75e35171f9cf"], + "settlements": { + "local": "ead0111942f4" + }, + "state": "b49be31d506e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json b/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json new file mode 100644 index 00000000000..f5912f41bac --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json @@ -0,0 +1,158 @@ +{ + "operation": "clipboard.image-upload", + "family": "clipboard.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "160101326d39705c2036c12646ff6b13d997a1cf91bdc86e5e29279ba31867e4", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "7ab518750e0f": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "/tmp/img.png" + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "972fbf8b960e": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + }, + "a77b999a5f7c": { + "failure": { + "$rpc": "null" + }, + "path": "/tmp/img.png" + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "e93276a9971b": { + "name": "clipboard.commitImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": "/tmp/img.png" + } + } + }, + "f1a3d38271bc": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "received": 32 + } + } + } + } + }, + "recording": { + "scenario": "clipboard-image-upload-chunked", + "checkpoints": [ + { + "id": "uploaded", + "observation": { + "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b"], + "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e"], + "settlements": { + "remote": "7ab518750e0f" + }, + "state": "a77b999a5f7c", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-upload-single-frame-fallback.json b/mobile/rpc-foundation/goldens/clipboard-image-upload-single-frame-fallback.json new file mode 100644 index 00000000000..17abcc51661 --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-single-frame-fallback.json @@ -0,0 +1,121 @@ +{ + "operation": "clipboard.image-upload", + "family": "clipboard.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "89ffa843d08ee27dd44b7bba507ce84661b0df73c35f7a8c273e004604710dc9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "12f2bb1c7b16": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "61599dd8e71a": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": "/tmp/legacy.png" + } + } + }, + "7a67576b4db6": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + }, + "7f1260e77032": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "/tmp/legacy.png" + }, + "923de2c0221d": { + "failure": { + "$rpc": "null" + }, + "path": "/tmp/legacy.png" + } + }, + "recording": { + "scenario": "clipboard-image-upload-single-frame-fallback", + "checkpoints": [ + { + "id": "fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "61599dd8e71a"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "7f1260e77032" + }, + "state": "923de2c0221d", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json b/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json new file mode 100644 index 00000000000..7f64cc65409 --- /dev/null +++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json @@ -0,0 +1,87 @@ +{ + "operation": "clipboard.image-upload", + "family": "clipboard.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "bf0227939c2d41d6a1ebc5b07a31196043e78f1580811bd32ec6fc5f447f5934", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "765ab192e1a5": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Image is too large", + "isRpcDeliveryUnknown": false + } + }, + "a69f0ea71c3c": { + "failure": "Image is too large", + "path": "unsaved" + }, + "ec6fd7f06461": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "too_large", + "message": "Image is too large" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "clipboard-image-upload-start-refused", + "checkpoints": [ + { + "id": "start-refused", + "observation": { + "sender": ["ec6fd7f06461"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "remote": "765ab192e1a5" + }, + "state": "a69f0ea71c3c", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json b/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json new file mode 100644 index 00000000000..8d2d20596f5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json @@ -0,0 +1,288 @@ +{ + "operation": "accounts.codex-reset-credit", + "family": "components.codex-reset-credit", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json b/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json new file mode 100644 index 00000000000..06977036582 --- /dev/null +++ b/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json @@ -0,0 +1,287 @@ +{ + "operation": "accounts.codex-reset-credit", + "family": "components.codex-reset-credit", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/components-codex-capability.json b/mobile/rpc-foundation/goldens/components-codex-capability.json index 0ff933bf779..54804ad5fa6 100644 --- a/mobile/rpc-foundation/goldens/components-codex-capability.json +++ b/mobile/rpc-foundation/goldens/components-codex-capability.json @@ -3,9 +3,9 @@ "family": "components.codex-reset-capability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "88570b9d2376863c7f88d7ed8c745a5fb771deddbc7409f8944fa861dd4bdce9", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/components-setup-ask.json b/mobile/rpc-foundation/goldens/components-setup-ask.json index 4b3cb870379..25bc3c94f7c 100644 --- a/mobile/rpc-foundation/goldens/components-setup-ask.json +++ b/mobile/rpc-foundation/goldens/components-setup-ask.json @@ -3,9 +3,9 @@ "family": "components.setup-script", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "d4052f119c7ed68dc922c8beeb0074701f1532b10e48e284fb71aa165a17e437", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/components-target-local.json b/mobile/rpc-foundation/goldens/components-target-local.json index c1bb8ed6ed2..aa29f8272a3 100644 --- a/mobile/rpc-foundation/goldens/components-target-local.json +++ b/mobile/rpc-foundation/goldens/components-target-local.json @@ -3,9 +3,9 @@ "family": "components.execution-target-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "2e0d3021621698b63117e250dd5e9762b5bfb3dc1911e27c510e9539bd2ee6c9", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/components-target-ssh.json b/mobile/rpc-foundation/goldens/components-target-ssh.json index 2f49323b773..f8b810dcb6d 100644 --- a/mobile/rpc-foundation/goldens/components-target-ssh.json +++ b/mobile/rpc-foundation/goldens/components-target-ssh.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "82b891c7a7a2f255e2d22a372ee6112c9cc1f650259244e87f2e8c1356e97e5f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/diff-review-branch-compare.json b/mobile/rpc-foundation/goldens/diff-review-branch-compare.json index 328ea2c50d7..951f357b575 100644 --- a/mobile/rpc-foundation/goldens/diff-review-branch-compare.json +++ b/mobile/rpc-foundation/goldens/diff-review-branch-compare.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "b7579013e65f0f5fe503c10cf2294cb9d4ac1938108275de001db6e02cf2cc21", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json b/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json index b27b0c5f478..7d977f82327 100644 --- a/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json +++ b/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "6c71b0f217a464dffbc6f5736605b840edac74ebaf0664edc0ab85984bb64328", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/diff-review-notes-refused-before-compare.json b/mobile/rpc-foundation/goldens/diff-review-notes-refused-before-compare.json index c6e1bc239c0..205f834fd74 100644 --- a/mobile/rpc-foundation/goldens/diff-review-notes-refused-before-compare.json +++ b/mobile/rpc-foundation/goldens/diff-review-notes-refused-before-compare.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "3e7fa054f77587b9ac24b6732a9926273b0f2ff35a266e633d0ccd1dada932cc", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json b/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json index 9165872f6e7..21c12c1252e 100644 --- a/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json +++ b/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "d1b04fe2945a2799ac8465d8fd9e45ab790ae29b401a0cf4fef68ebc5fa3cc76", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/diff-review-snapshot.json b/mobile/rpc-foundation/goldens/diff-review-snapshot.json index 5e9dedd8fe7..d8a3c3ec997 100644 --- a/mobile/rpc-foundation/goldens/diff-review-snapshot.json +++ b/mobile/rpc-foundation/goldens/diff-review-snapshot.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "fa0a81462196458fdded5b7c00aa4e73975c2111afdd8dac115871490a481da2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json b/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json index 71d68d5e88b..308bd190c0e 100644 --- a/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json +++ b/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "182f37fbe6ae7c0694b50d603ecd4a03bc9a8c7c9738ebb775b47eb5f3b9660f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json b/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json index b2d136f5eb4..edb854781f5 100644 --- a/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json +++ b/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "538b68485a2268d311fcc7e13ff1a3e446ba4aa010bc18633af8e938a6688257", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/file-tap-open-refused.json b/mobile/rpc-foundation/goldens/file-tap-open-refused.json new file mode 100644 index 00000000000..2c496bcece2 --- /dev/null +++ b/mobile/rpc-foundation/goldens/file-tap-open-refused.json @@ -0,0 +1,142 @@ +{ + "operation": "files.terminal-path-tap", + "family": "files.terminal-path-tap", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", + "scenarioSha256": "a927e85c3ae58cd3b017955fe28aeffec6a5471b51d782f116639a3aaf4af77d", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "18cda90904c3": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "openTarget": { + "absolutePath": "/repo/src/app.ts", + "kind": "worktree-file", + "provider": "ssh", + "relativePath": "src/app.ts" + }, + "relativePath": "src/app.ts" + } + } + } + }, + "1d18c66a85d5": { + "name": "open-feedback", + "value": {}, + "sent": 1 + }, + "9a73d7a9fdc6": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "file_locked", + "message": "File is locked" + }, + "id": "frame-2", + "ok": false + } + } + }, + "c7ce9c8dc60e": { + "activeSessionTabId": "tab-source", + "failed": 1, + "switched": { + "$rpc": "null" + } + }, + "d88940bfb593": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f334b291fecc": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" + } + }, + "recording": { + "scenario": "file-tap-open-refused", + "checkpoints": [ + { + "id": "open-refused", + "observation": { + "sender": ["18cda90904c3", "9a73d7a9fdc6"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json b/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json new file mode 100644 index 00000000000..3772c961c4d --- /dev/null +++ b/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json @@ -0,0 +1,172 @@ +{ + "operation": "files.terminal-path-tap", + "family": "files.terminal-path-tap", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", + "scenarioSha256": "297ea4075333e178ca20247eb0abf6600efb44fe2b33f5142d1c1cabffb5a2d3", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "18cda90904c3": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "openTarget": { + "absolutePath": "/repo/src/app.ts", + "kind": "worktree-file", + "provider": "ssh", + "relativePath": "src/app.ts" + }, + "relativePath": "src/app.ts" + } + } + } + }, + "1d18c66a85d5": { + "name": "open-feedback", + "value": {}, + "sent": 1 + }, + "4301fd620304": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 2 + }, + "b765beef262e": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "tab-opened", + "relativePath": "src/app.ts" + } + ] + }, + "d88940bfb593": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + }, + "d9a357a79330": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f334b291fecc": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" + }, + "f8a009b4a36e": { + "activeSessionTabId": "tab-opened", + "failed": 0, + "switched": { + "id": "tab-opened", + "relativePath": "src/app.ts" + } + } + }, + "recording": { + "scenario": "file-tap-opens-worktree-file", + "checkpoints": [ + { + "id": "switched", + "observation": { + "sender": ["18cda90904c3", "d9a357a79330"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "f8a009b4a36e", + "effects": ["1d18c66a85d5", "4301fd620304"] + } + }, + { + "id": "settled", + "observation": { + "sender": ["18cda90904c3", "d9a357a79330"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "f8a009b4a36e", + "effects": ["1d18c66a85d5", "4301fd620304"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json b/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json new file mode 100644 index 00000000000..ce9bad25da8 --- /dev/null +++ b/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json @@ -0,0 +1,120 @@ +{ + "operation": "files.terminal-path-tap", + "family": "files.terminal-path-tap", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", + "scenarioSha256": "f1844c2608ce90250fddfc78c0b35bb1bf3647598a5ab2914eca0d8cb4403a38", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1d18c66a85d5": { + "name": "open-feedback", + "value": {}, + "sent": 1 + }, + "403de322e21f": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "openTarget": { + "absolutePath": "/logs/run.txt", + "grantId": "grant-1", + "kind": "absolute-file" + } + } + } + } + }, + "53fb9b1f36f9": { + "activeSessionTabId": "tab-source", + "failed": 0, + "switched": { + "$rpc": "null" + } + }, + "d88940bfb593": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + }, + "e8e7c23384dc": { + "name": "push-preview-route", + "value": { + "params": { + "absolutePath": "/logs/run.txt", + "cwd": "/repo", + "grantId": "grant-1", + "hostId": "host-1", + "name": "run.txt", + "pathText": "src/app.ts", + "source": "terminalArtifact", + "terminal": "terminal-1", + "worktreeId": "workspace-1", + "worktreeName": "workspace" + }, + "pathname": "/h/[hostId]/files/preview/[worktreeId]" + }, + "sent": 1 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "file-tap-previews-absolute-artifact", + "checkpoints": [ + { + "id": "previewed", + "observation": { + "sender": ["403de322e21f"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a" + }, + "state": "53fb9b1f36f9", + "effects": ["1d18c66a85d5", "e8e7c23384dc"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json b/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json new file mode 100644 index 00000000000..f9e84ab1b0f --- /dev/null +++ b/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json @@ -0,0 +1,91 @@ +{ + "operation": "files.terminal-path-tap", + "family": "files.terminal-path-tap", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", + "scenarioSha256": "0f76b96408081737b3d630ee837dbb80bcce6670b6acc4f1f7c033a69bd40533", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "b03e10f6707b": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "exists": false, + "isDirectory": false + } + } + } + }, + "c7ce9c8dc60e": { + "activeSessionTabId": "tab-source", + "failed": 1, + "switched": { + "$rpc": "null" + } + }, + "d88940bfb593": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "file-tap-resolve-miss", + "checkpoints": [ + { + "id": "missed", + "observation": { + "sender": ["b03e10f6707b"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json b/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json new file mode 100644 index 00000000000..387db07301a --- /dev/null +++ b/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json @@ -0,0 +1,91 @@ +{ + "operation": "files.terminal-path-tap", + "family": "files.terminal-path-tap", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", + "scenarioSha256": "1ada35966dfb65afbb9b3dc8139961b8f042e2d53241b9608a080d0e655a5987", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "8a3fab4d308f": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + }, + "id": "frame-1", + "ok": false + } + } + }, + "c7ce9c8dc60e": { + "activeSessionTabId": "tab-source", + "failed": 1, + "switched": { + "$rpc": "null" + } + }, + "d88940bfb593": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "file-tap-resolve-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["8a3fab4d308f"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json b/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json new file mode 100644 index 00000000000..72b5debf7d4 --- /dev/null +++ b/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json @@ -0,0 +1,201 @@ +{ + "operation": "files.explorer-screen", + "family": "files.explorer-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/files-explorer-readdir.json b/mobile/rpc-foundation/goldens/files-explorer-readdir.json new file mode 100644 index 00000000000..0c33524d9ab --- /dev/null +++ b/mobile/rpc-foundation/goldens/files-explorer-readdir.json @@ -0,0 +1,157 @@ +{ + "operation": "files.explorer-screen", + "family": "files.explorer-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/files-ownership-local.json b/mobile/rpc-foundation/goldens/files-ownership-local.json index cce94739de1..17c8afde667 100644 --- a/mobile/rpc-foundation/goldens/files-ownership-local.json +++ b/mobile/rpc-foundation/goldens/files-ownership-local.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "8d24f52eb4194c3bc5d9f0dcabade6d7a09c066f79f911657647ed21dbecb3b1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-ownership-ssh.json b/mobile/rpc-foundation/goldens/files-ownership-ssh.json index b8c126fe180..200435a69dc 100644 --- a/mobile/rpc-foundation/goldens/files-ownership-ssh.json +++ b/mobile/rpc-foundation/goldens/files-ownership-ssh.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "4cd0be3a1c338b4b68211c717fd10738653c553fdb3b072db6706ff8175a8bd1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json b/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json index e562feb163e..c601c3445f1 100644 --- a/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json +++ b/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "dd8b7a0916a84c7d763a163759c02210ae99f8fbccfccaa98796b8610c5da97c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-preview-artifact-image.json b/mobile/rpc-foundation/goldens/files-preview-artifact-image.json index 8333d1413ce..feb34948998 100644 --- a/mobile/rpc-foundation/goldens/files-preview-artifact-image.json +++ b/mobile/rpc-foundation/goldens/files-preview-artifact-image.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "d15c1f4e0f95b5c49a8f889d2d37458225293d7306c8439690d972d2df4c29c0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json b/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json index 8cfa20e944f..70e3fb0c01a 100644 --- a/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json +++ b/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/files-preview-worktree-image.json b/mobile/rpc-foundation/goldens/files-preview-worktree-image.json index 17cae1afe51..1115bef11df 100644 --- a/mobile/rpc-foundation/goldens/files-preview-worktree-image.json +++ b/mobile/rpc-foundation/goldens/files-preview-worktree-image.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "0ffaffb472b663e08a42317d799a2a000211dda5b127fb21cc64f04f73800130", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-preview-worktree.json b/mobile/rpc-foundation/goldens/files-preview-worktree.json index 72232f47ef5..e52578ae656 100644 --- a/mobile/rpc-foundation/goldens/files-preview-worktree.json +++ b/mobile/rpc-foundation/goldens/files-preview-worktree.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "bcba4a7d9d929078c5ed80fc7e1acd45859d0b4c559767a919b0396dc6a70a3e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-save-blind.json b/mobile/rpc-foundation/goldens/files-save-blind.json index e965f0f0101..63d5bf51bca 100644 --- a/mobile/rpc-foundation/goldens/files-save-blind.json +++ b/mobile/rpc-foundation/goldens/files-save-blind.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "8b5c3e87d989966d7b252f19a537040cd5078ba9355a824e7e49af3424390a3e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-save-verified.json b/mobile/rpc-foundation/goldens/files-save-verified.json index 256c423b23c..dc3027386b8 100644 --- a/mobile/rpc-foundation/goldens/files-save-verified.json +++ b/mobile/rpc-foundation/goldens/files-save-verified.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "6e124d16173074d851d58593b20b25889ed13a3d8021c08fbed53b85a7d3196e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json b/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json index ddae0a76921..63dc8467ee8 100644 --- a/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json +++ b/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "b636221f719dae19a3af6772b687b0bcb300c9910645d23e98c309578ec1c5c5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/home-host-stats.json b/mobile/rpc-foundation/goldens/home-host-stats.json index 2c95049dc56..08c0820cce8 100644 --- a/mobile/rpc-foundation/goldens/home-host-stats.json +++ b/mobile/rpc-foundation/goldens/home-host-stats.json @@ -3,9 +3,9 @@ "family": "home.host-stats", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/host-view-settings-sync.json b/mobile/rpc-foundation/goldens/host-view-settings-sync.json index a02ef232e4e..5ee81e4fbb1 100644 --- a/mobile/rpc-foundation/goldens/host-view-settings-sync.json +++ b/mobile/rpc-foundation/goldens/host-view-settings-sync.json @@ -3,9 +3,9 @@ "family": "host.view-settings", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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" ] } } diff --git a/mobile/rpc-foundation/goldens/host-worktree-actions-pin-open-delete.json b/mobile/rpc-foundation/goldens/host-worktree-actions-pin-open-delete.json index 1a3de744960..1904dd37315 100644 --- a/mobile/rpc-foundation/goldens/host-worktree-actions-pin-open-delete.json +++ b/mobile/rpc-foundation/goldens/host-worktree-actions-pin-open-delete.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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" ] } } diff --git a/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json b/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json index 0ce46e955aa..d815428bd8e 100644 --- a/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json +++ b/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json b/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json index b02423a1527..b30ff9f7671 100644 --- a/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json +++ b/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "d6c57a5153d915f0a0c0fd9e305cac70b41b7eb8be226fc865227ebf1821e5d1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json b/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json index a1cecb80162..1230742aaed 100644 --- a/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json +++ b/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "2d5c6dea28aa1a7bb9e4aa14a4c8441527d9ad401ad30161f05ea1f8da836bb2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/inventory-lifecycle.json b/mobile/rpc-foundation/goldens/inventory-lifecycle.json index ba5f4954f15..6f8a2f9819b 100644 --- a/mobile/rpc-foundation/goldens/inventory-lifecycle.json +++ b/mobile/rpc-foundation/goldens/inventory-lifecycle.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "3471f5bcd6923c7b8ba3a737bb45b5239689deb78c00e85a828f38a6d6d68a05", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/inventory-repeat-query.json b/mobile/rpc-foundation/goldens/inventory-repeat-query.json index a1776055748..40a445d1b2c 100644 --- a/mobile/rpc-foundation/goldens/inventory-repeat-query.json +++ b/mobile/rpc-foundation/goldens/inventory-repeat-query.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "73a468d5c7a51c2dbb7af2642f0050d05d861fce29295460c48d7c51f86bf57f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/lifecycle-b3.json b/mobile/rpc-foundation/goldens/lifecycle-b3.json index e252cf8eb03..abcab370b90 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-b3.json +++ b/mobile/rpc-foundation/goldens/lifecycle-b3.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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" ] } } diff --git a/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json b/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json index ab12fd268aa..0a24d006b03 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json +++ b/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "46bbafcc57fe2e3aee41a14bc26a0375b7b56e58030705fe4c28841a272b2560", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json b/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json index 37637b07b29..59106d63070 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json +++ b/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "eb80283956c93849778f23cbabf1dbf83b72744197af4f6f50335b2fc1590d87", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json b/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json index 2eb92aa1be7..e18d4ab6d8c 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json +++ b/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3a8eab831602443d320ca0aa0f35dc269d8d511e76bdae8fd025c433561d068d", "platform": "darwin", @@ -13,21 +13,24 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -54,19 +57,22 @@ "startedAt": 0 } }, - "12388aa75326": { + "0d33c93fcbfd": { "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 5 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, "1825a87a7ca8": { "hydrated": false, @@ -78,9 +84,15 @@ "visibleTaskProviders": ["github", "linear"] } }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 + }, + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -119,9 +131,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -148,85 +161,129 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } - }, - "347cc433c473": { - "name": "projectRowDetail", + "252f3a25533f": { + "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 5 }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false + "28fa1cba5d1a": { + "name": "githubProjectSettings", + "value": { + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { + "2c04c960ee94": { "name": "showLinearTeamPicker", - "value": false + "value": false, + "sent": 0 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "2c4387ddd366": { + "name": "pendingHostedMerge", "value": { "$rpc": "null" - } + }, + "sent": 5 }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" - }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", - "value": { - "$rpc": "null" - } - }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false - }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { + "2e442e4df37c": { "name": "showGitHubProjectFieldsPicker", - "value": false + "value": false, + "sent": 0 }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 }, - "57da83afd125": { + "321bfff34ac2": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 + }, + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "460c956ad356": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 5 + }, + "47b218ef208f": { + "name": "showRepoPicker", + "value": false, + "sent": 5 + }, + "4976dfca54f0": { "name": "taskStateHydrated", - "value": true + "value": false, + "sent": 5 + }, + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "551c964c61ea": { + "name": "showProviderPicker", + "value": false, + "sent": 5 + }, + "56f2fa086479": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 + }, + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -238,12 +295,30 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { + "59936af3cc5b": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 5 + }, + "5d87a58f6c98": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 + }, + "5ebcdff07023": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 5 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -270,6 +345,24 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, + "67d7ef589c15": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 5 + }, + "6e5246994fa0": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 5 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -307,63 +400,166 @@ "name": "status.get#2", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, - "888c93f6f346": { - "name": "appliedQuery", - "value": "is:issue is:open" + "7a688c351c65": { + "name": "showSortPicker", + "value": false, + "sent": 5 }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" + "7c0f59ba016c": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "977e1de1ac2f": { + "7c6e6014385b": { + "name": "showCreateTask", + "value": false, + "sent": 5 + }, + "83f55c58a6c5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 5 + }, + "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", + "86a763922cd7": { + "name": "appliedQuery", + "value": "is:issue is:open", + "sent": 5 + }, + "874e70d237d7": { + "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 5 }, - "9a0f810232ef": { - "name": "provider", - "value": "github" + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 }, - "a211e64f0900": { + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8c53814e586c": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "921033244a12": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 5 + }, + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 + }, + "96a071be5404": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 5 + }, + "9abed258acba": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 5 + }, + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -390,9 +586,26 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -431,66 +644,58 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { + "afb75a8d93f3": { "name": "showLinearWorkspacePicker", - "value": false + "value": false, + "sent": 5 }, - "bbbd4bc0a4ef": { - "name": "taskStateHydrated", - "value": false - }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false - }, - "bfd6af371d88": { - "name": "githubProjectSettings", + "b341e832c60d": { + "name": "projectRowItem", "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "$rpc": "null" + }, + "sent": 0 + }, + "b577c113c079": { + "name": "showLinearViewPicker", + "value": false, + "sent": 5 + }, + "b9481aea1fae": { + "name": "taskStateHydrated", + "value": false, + "sent": 0 + }, + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 + }, + "c0739ee88dc8": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "c2601492c7cd": { + "name": "showLinearConnect", + "value": false, + "sent": 5 + }, + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, "c9c0513fdcb9": { "name": "status.get#2", @@ -517,16 +722,44 @@ "startedAt": 0 } }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d0c2ba0d141f": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 5 + }, + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 + }, + "d3db1d1b21c6": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 + }, + "d6ed7b17eb65": { + "name": "linearStatusPickerItem", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "d705fce957e8": { "name": "settings.get#1", @@ -567,13 +800,17 @@ } } }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false + "dc50f834cf28": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "de85b23d1a59": { + "name": "showLinearTeamPicker", + "value": false, + "sent": 5 }, "e5662efa8968": { "name": "preflight.check#1", @@ -614,14 +851,34 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e7af9bf83610": { + "name": "mergeMethodTaskItem", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, + "e96a98c6404f": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 5 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -634,21 +891,42 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "ef60e60436d0": { + "name": "showGitLabViewPicker", + "value": false, + "sent": 5 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", + "f31031e7e491": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 5 + }, + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 + }, + "f5ca82f623ea": { + "name": "pendingGitHubProjectViewSelection", "value": { "$rpc": "null" - } + }, + "sent": 5 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "f695768dc671": { + "name": "showLinearGroupPicker", + "value": false, + "sent": 5 + }, + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 + }, + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -676,46 +954,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -742,46 +1020,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -808,46 +1086,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -877,84 +1155,84 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -981,46 +1259,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1047,46 +1325,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1116,84 +1394,84 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -1220,46 +1498,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1286,46 +1564,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1355,84 +1633,84 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -1459,46 +1737,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1525,46 +1803,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1594,84 +1872,84 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -1698,46 +1976,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1764,46 +2042,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1833,84 +2111,84 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -1937,46 +2215,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -2003,46 +2281,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -2072,84 +2350,84 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -2176,46 +2454,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -2242,46 +2520,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -2311,84 +2589,84 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -2415,65 +2693,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -2500,65 +2778,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -2588,103 +2866,103 @@ }, "state": "1825a87a7ca8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } } diff --git a/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json b/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json index 0fe58e11f34..18d35ef7274 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json +++ b/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "136fb1d8d5925ad12ba22f4dd6c72573a9ad03b6a6ec8308668f0d9cd71aa36d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-agentsession.structured-launch-agentsession.createsupport-1.json b/mobile/rpc-foundation/goldens/matrix-agentsession.structured-launch-agentsession.createsupport-1.json new file mode 100644 index 00000000000..6a841c9dea9 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-agentsession.structured-launch-agentsession.createsupport-1.json @@ -0,0 +1,580 @@ +{ + "operation": "agentSession.structured-launch", + "family": "agentSession.structured-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", + "scenarioSha256": "211e3780edc0ff5fa0529c0de0e8bc2fd746a19c8a6b4e49900f6c4e56d53f7c", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "03bae1ffdae6": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "04f63acf891a": { + "launched": { + "kind": "unsupported", + "reason": { + "$rpc": "undefined" + } + } + }, + "0972c78c3d52": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "2c227fd1941f": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "unsupported" + } + }, + "4a8f44bda967": { + "name": "agentSession.createSupport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "551313dcc738": { + "launched": { + "kind": "unsupported", + "reason": "remote" + } + }, + "70998d5a1f56": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "99caa4276b06": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "add0a607a4c6": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "af6b02a86254": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "b5992e9c9c01": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "bef30d717da6": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "reason": "remote", + "supported": false + } + } + } + }, + "c0c67a317e23": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "dd51c5566f19": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "unsupported", + "reason": "remote" + } + }, + "e4a3b2c6a246": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "f0bb9de9827c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "unsupported", + "reason": { + "$rpc": "undefined" + } + } + }, + "f40adca316f9": { + "launched": { + "kind": "unsupported" + } + }, + "f698ccf3773d": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "matrix-agentsession.structured-launch-agentsession.createsupport-1", + "checkpoints": [ + { + "id": "structured-launch-unsupported.normal:unsupported", + "observation": { + "sender": ["bef30d717da6"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "dd51c5566f19" + }, + "state": "551313dcc738", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.result-absent:unsupported", + "observation": { + "sender": ["b5992e9c9c01"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "f0bb9de9827c" + }, + "state": "04f63acf891a", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.result-null:unsupported", + "observation": { + "sender": ["70998d5a1f56"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "f0bb9de9827c" + }, + "state": "04f63acf891a", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.inner-ok-missing:unsupported", + "observation": { + "sender": ["add0a607a4c6"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "f0bb9de9827c" + }, + "state": "04f63acf891a", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.inner-false-string-error:unsupported", + "observation": { + "sender": ["af6b02a86254"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "f0bb9de9827c" + }, + "state": "04f63acf891a", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.inner-false-object-error:unsupported", + "observation": { + "sender": ["03bae1ffdae6"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "f0bb9de9827c" + }, + "state": "04f63acf891a", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.outer-refused:unsupported", + "observation": { + "sender": ["f698ccf3773d"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "2c227fd1941f" + }, + "state": "f40adca316f9", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.outer-refused-no-message:unsupported", + "observation": { + "sender": ["0972c78c3d52"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "2c227fd1941f" + }, + "state": "f40adca316f9", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.method-not-found:unsupported", + "observation": { + "sender": ["99caa4276b06"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "2c227fd1941f" + }, + "state": "f40adca316f9", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.transport-rejection:unsupported", + "observation": { + "sender": ["e4a3b2c6a246"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "2c227fd1941f" + }, + "state": "f40adca316f9", + "effects": [] + } + }, + { + "id": "structured-launch-unsupported.transport-rejection-no-message:unsupported", + "observation": { + "sender": ["c0c67a317e23"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "2c227fd1941f" + }, + "state": "f40adca316f9", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.history-aivault.listsessions-1.json b/mobile/rpc-foundation/goldens/matrix-aivault.history-aivault.listsessions-1.json index dfd63128d8d..f7230963945 100644 --- a/mobile/rpc-foundation/goldens/matrix-aivault.history-aivault.listsessions-1.json +++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-aivault.listsessions-1.json @@ -3,10 +3,10 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "efb8d1cd2a2ff0ade4cdc48a1aacec565e33b405bbe95c100b86534cdde49740", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.history-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-aivault.history-status.get-1.json index 590d9a3c400..9ce7bb79fb8 100644 --- a/mobile/rpc-foundation/goldens/matrix-aivault.history-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-status.get-1.json @@ -3,10 +3,10 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "e0aa5e8577ec2a61e89c27b6578f9c6819e635e4be990834c039089acf40c697", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "a5698ca720dad08561a509c9c18f7586611fc68c58bd86791f4fcefc7915ab1f", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.resume-launch-session.tabs.createterminal-1.json b/mobile/rpc-foundation/goldens/matrix-aivault.resume-launch-session.tabs.createterminal-1.json new file mode 100644 index 00000000000..c9bb611ecd9 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-aivault.resume-launch-session.tabs.createterminal-1.json @@ -0,0 +1,770 @@ +{ + "operation": "aiVault.resume-launch", + "family": "aiVault.resume-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "f721ab4438c4183927ce5ebc5fd6f1f18414701a5fa3b2807c359785829962a3", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "00ce2da4b927": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "133463600de6": { + "failure": "Failed to create terminal", + "launched": "unlaunched" + }, + "30ec57518c05": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Failed to create terminal", + "isRpcDeliveryUnknown": false + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "3ad18553135a": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "400d946a183d": { + "failure": { + "$rpc": "null" + }, + "launched": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex" + } + }, + "432332c9740e": { + "failure": "Created terminal response was invalid", + "launched": "unlaunched" + }, + "4ee71a589941": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "54558214b507": { + "failure": "Unknown method", + "launched": "unlaunched" + }, + "611cf7134d32": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "671d748c842b": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "681fc4d59b92": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Created terminal response was invalid", + "isRpcDeliveryUnknown": false + } + }, + "6b1e36abce6b": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tab": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex", + "type": "terminal" + } + } + } + } + }, + "6e79da536ca9": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex" + } + }, + "80ce09f50b96": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "92613ac6d4fa": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "a84f5d45a48b": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "a9a45875782f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" + }, + "b948e8307e81": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Unknown method", + "isRpcDeliveryUnknown": false + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "cb0891b6056d": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "d34341547b51": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "dbc538c406b0": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "e105057c5765": { + "failure": "transport failure", + "launched": "unlaunched" + }, + "eb30e498d168": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" + }, + "efa7e20c5a6f": { + "failure": "outer refused", + "launched": "unlaunched" + }, + "f1f50b49b8de": { + "failure": "", + "launched": "unlaunched" + } + }, + "recording": { + "scenario": "matrix-aivault.resume-launch-session.tabs.createterminal-1", + "checkpoints": [ + { + "id": "aivault-resume-launch-sent.normal:resumed", + "observation": { + "sender": ["6b1e36abce6b", "a84f5d45a48b"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.result-absent:resumed", + "observation": { + "sender": ["671d748c842b"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "681fc4d59b92" + }, + "state": "432332c9740e", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.result-null:resumed", + "observation": { + "sender": ["d34341547b51"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "681fc4d59b92" + }, + "state": "432332c9740e", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.inner-ok-missing:resumed", + "observation": { + "sender": ["3ad18553135a"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "681fc4d59b92" + }, + "state": "432332c9740e", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.inner-false-string-error:resumed", + "observation": { + "sender": ["92613ac6d4fa"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "681fc4d59b92" + }, + "state": "432332c9740e", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.inner-false-object-error:resumed", + "observation": { + "sender": ["4ee71a589941"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "681fc4d59b92" + }, + "state": "432332c9740e", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.outer-refused:resumed", + "observation": { + "sender": ["611cf7134d32"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "32a7c0ae7918" + }, + "state": "efa7e20c5a6f", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.outer-refused-no-message:resumed", + "observation": { + "sender": ["cb0891b6056d"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "30ec57518c05" + }, + "state": "133463600de6", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.method-not-found:resumed", + "observation": { + "sender": ["00ce2da4b927"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "b948e8307e81" + }, + "state": "54558214b507", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.transport-rejection:resumed", + "observation": { + "sender": ["dbc538c406b0"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "a947768bc0ed" + }, + "state": "e105057c5765", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.transport-rejection-no-message:resumed", + "observation": { + "sender": ["80ce09f50b96"], + "payloads": ["eb30e498d168"], + "settlements": { + "full": "c7584e82c72f" + }, + "state": "f1f50b49b8de", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.resume-launch-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-aivault.resume-launch-terminal.send-1.json new file mode 100644 index 00000000000..aac0e6cc0f7 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-aivault.resume-launch-terminal.send-1.json @@ -0,0 +1,686 @@ +{ + "operation": "aiVault.resume-launch", + "family": "aiVault.resume-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "aa812132ede83e4aced73a644e996df82a38bfc70ead70a5db2e9af8a8b1bfff", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "049bcc141657": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "0f7c8cc35709": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "17ee408f637d": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "3253374e68e6": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "335573146591": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "400d946a183d": { + "failure": { + "$rpc": "null" + }, + "launched": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex" + } + }, + "54558214b507": { + "failure": "Unknown method", + "launched": "unlaunched" + }, + "6b1e36abce6b": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tab": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex", + "type": "terminal" + } + } + } + } + }, + "6e79da536ca9": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "tab-9", + "terminal": "terminal-9", + "title": "codex" + } + }, + "71b34bf921d6": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "8511f0debfc0": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Failed to send resume command", + "isRpcDeliveryUnknown": false + } + }, + "96f24b3825b5": { + "failure": "Failed to send resume command", + "launched": "unlaunched" + }, + "9b68cd60047e": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "a84f5d45a48b": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "a9a45875782f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" + }, + "b948e8307e81": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Unknown method", + "isRpcDeliveryUnknown": false + } + }, + "c27cefd487fc": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "dac3aef412ff": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "e105057c5765": { + "failure": "transport failure", + "launched": "unlaunched" + }, + "eb30e498d168": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" + }, + "efa7e20c5a6f": { + "failure": "outer refused", + "launched": "unlaunched" + }, + "f1f50b49b8de": { + "failure": "", + "launched": "unlaunched" + }, + "fa85a657c342": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-9", + "text": "codex resume rollout" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + } + }, + "recording": { + "scenario": "matrix-aivault.resume-launch-terminal.send-1", + "checkpoints": [ + { + "id": "aivault-resume-launch-sent.normal:resumed", + "observation": { + "sender": ["6b1e36abce6b", "a84f5d45a48b"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.result-absent:resumed", + "observation": { + "sender": ["6b1e36abce6b", "17ee408f637d"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.result-null:resumed", + "observation": { + "sender": ["6b1e36abce6b", "335573146591"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.inner-ok-missing:resumed", + "observation": { + "sender": ["6b1e36abce6b", "3253374e68e6"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.inner-false-string-error:resumed", + "observation": { + "sender": ["6b1e36abce6b", "9b68cd60047e"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.inner-false-object-error:resumed", + "observation": { + "sender": ["6b1e36abce6b", "dac3aef412ff"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "6e79da536ca9" + }, + "state": "400d946a183d", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.outer-refused:resumed", + "observation": { + "sender": ["6b1e36abce6b", "049bcc141657"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "32a7c0ae7918" + }, + "state": "efa7e20c5a6f", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.outer-refused-no-message:resumed", + "observation": { + "sender": ["6b1e36abce6b", "fa85a657c342"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "8511f0debfc0" + }, + "state": "96f24b3825b5", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.method-not-found:resumed", + "observation": { + "sender": ["6b1e36abce6b", "0f7c8cc35709"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "b948e8307e81" + }, + "state": "54558214b507", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.transport-rejection:resumed", + "observation": { + "sender": ["6b1e36abce6b", "c27cefd487fc"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "a947768bc0ed" + }, + "state": "e105057c5765", + "effects": [] + } + }, + { + "id": "aivault-resume-launch-sent.transport-rejection-no-message:resumed", + "observation": { + "sender": ["6b1e36abce6b", "71b34bf921d6"], + "payloads": ["eb30e498d168", "a9a45875782f"], + "settlements": { + "full": "c7584e82c72f" + }, + "state": "f1f50b49b8de", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.resume-preparation-aivault.preparesessionresume-1.json b/mobile/rpc-foundation/goldens/matrix-aivault.resume-preparation-aivault.preparesessionresume-1.json new file mode 100644 index 00000000000..f6e3416f4a5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-aivault.resume-preparation-aivault.preparesessionresume-1.json @@ -0,0 +1,655 @@ +{ + "operation": "aiVault.resume-preparation", + "family": "aiVault.resume-preparation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", + "scenarioSha256": "c3b400967b0b1c7bd3f82a278f4b10855ade72d384922ec4d34795c7bb20084d", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "02733b10ba3d": { + "failure": { + "$rpc": "null" + }, + "prepared": { + "agent": "codex", + "codexHome": "/hosts/codex-accounts/acct-1/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + "06345cef27f9": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Could not prepare this legacy Codex session. Retry resume.", + "isRpcDeliveryUnknown": false + } + }, + "110d8c28ad70": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "1174bbe22a9f": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "15e10cea84b9": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-accounts/acct-1/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + "1cc5c362a1d4": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "1cf09af5681c": { + "failure": "Could not prepare this legacy Codex session. Retry resume.", + "prepared": "unprepared" + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "3cb5dd9bacb9": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "6c0717cacf4f": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "954fabd8665f": { + "failure": "transport failure", + "prepared": "unprepared" + }, + "9736bcb85d7d": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "97f3b981d81f": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "9a6c365d544f": { + "name": "aiVault.prepareSessionResume#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b8c26ad576fc": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "d8803e70463f": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "substituteCodexHome": "/hosts/codex-accounts/acct-1/home", + "useRealCodexHome": false + } + } + } + }, + "dbbdae8f39e4": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "dd625f18432a": { + "failure": "", + "prepared": "unprepared" + }, + "e0c290ca8a22": { + "failure": "outer refused", + "prepared": "unprepared" + }, + "e839ea279e77": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + "eb577fc22483": { + "name": "aiVault.prepareSessionResume#1", + "args": [ + { + "name": "method", + "value": "aiVault.prepareSessionResume" + }, + { + "name": "params", + "value": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "f9dc8bff0bbd": { + "failure": { + "$rpc": "null" + }, + "prepared": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + } + } + }, + "recording": { + "scenario": "matrix-aivault.resume-preparation-aivault.preparesessionresume-1", + "checkpoints": [ + { + "id": "aivault-resume-prepare-repin.normal:repinned", + "observation": { + "sender": ["d8803e70463f"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "15e10cea84b9" + }, + "state": "02733b10ba3d", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.result-absent:repinned", + "observation": { + "sender": ["3cb5dd9bacb9"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "e839ea279e77" + }, + "state": "f9dc8bff0bbd", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.result-null:repinned", + "observation": { + "sender": ["b8c26ad576fc"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "e839ea279e77" + }, + "state": "f9dc8bff0bbd", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.inner-ok-missing:repinned", + "observation": { + "sender": ["eb577fc22483"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "e839ea279e77" + }, + "state": "f9dc8bff0bbd", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.inner-false-string-error:repinned", + "observation": { + "sender": ["110d8c28ad70"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "e839ea279e77" + }, + "state": "f9dc8bff0bbd", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.inner-false-object-error:repinned", + "observation": { + "sender": ["9736bcb85d7d"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "e839ea279e77" + }, + "state": "f9dc8bff0bbd", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.outer-refused:repinned", + "observation": { + "sender": ["dbbdae8f39e4"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "32a7c0ae7918" + }, + "state": "e0c290ca8a22", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.outer-refused-no-message:repinned", + "observation": { + "sender": ["6c0717cacf4f"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "06345cef27f9" + }, + "state": "1cf09af5681c", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.method-not-found:repinned", + "observation": { + "sender": ["1174bbe22a9f"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "e839ea279e77" + }, + "state": "f9dc8bff0bbd", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.transport-rejection:repinned", + "observation": { + "sender": ["1cc5c362a1d4"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "a947768bc0ed" + }, + "state": "954fabd8665f", + "effects": [] + } + }, + { + "id": "aivault-resume-prepare-repin.transport-rejection-no-message:repinned", + "observation": { + "sender": ["97f3b981d81f"], + "payloads": ["9a6c365d544f"], + "settlements": { + "prepare": "c7584e82c72f" + }, + "state": "dd625f18432a", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-browser.dialog-browser.dialogaccept-1.json b/mobile/rpc-foundation/goldens/matrix-browser.dialog-browser.dialogaccept-1.json index ea7246d3b2e..fde32ebeb2f 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.dialog-browser.dialogaccept-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.dialog-browser.dialogaccept-1.json @@ -3,9 +3,9 @@ "family": "browser.dialog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "9cae732e4227d4c2fe874a5fb2e104552c16cbc91b59523de8fd46454660cde8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keyboardinserttext-1.json b/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keyboardinserttext-1.json index 39298399bde..216c6c3b588 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keyboardinserttext-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keyboardinserttext-1.json @@ -3,9 +3,9 @@ "family": "browser.keyboard", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keypress-1.json b/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keypress-1.json index 82d07a42c93..45f41d6661f 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keypress-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keypress-1.json @@ -3,9 +3,9 @@ "family": "browser.keyboard", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseclick-1.json b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseclick-1.json index 78614c5f1e0..95716c9c02f 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseclick-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseclick-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "74adcaa668164bc7430e9984f100988bf72975dc8ebbe6b52fac34367cf31a4d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousedown-1.json b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousedown-1.json index b3297e1c91d..756c5c92b5d 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousedown-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousedown-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "db84000f262c6812db55b5f735ab7fe32c914e9ab52b9a7ccc0c21386b782298", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousemove-1.json b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousemove-1.json index c4b4a88a2ac..49637da56db 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousemove-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousemove-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "35ef15037791fa2e87456ee4585ddaaa00fbf5cde578d7c0b5df143cd40dd9a1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseup-1.json b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseup-1.json index e9c6717a02a..2d734e0c723 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseup-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseup-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "47868afdd6d593526ea6f0a0a1e19377ee8306ab70636f2dace0da9ef2454397", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousemove-1.json b/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousemove-1.json index 00e39b9bc8f..51135f40954 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousemove-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousemove-1.json @@ -3,9 +3,9 @@ "family": "browser.wheel", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "c1283bbfb340e968bbd4c86ac63489995d6191290751316228d27779dc6a2c55", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousewheel-1.json b/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousewheel-1.json index f61ed29153b..e726e39a0a2 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousewheel-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousewheel-1.json @@ -3,9 +3,9 @@ "family": "browser.wheel", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "092777c9ce457dcae95eafbe083c70510580569ac74e31c0d4224ac94b9fad76", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-clipboard.image-attachment-clipboard.startimageupload-1.json b/mobile/rpc-foundation/goldens/matrix-clipboard.image-attachment-clipboard.startimageupload-1.json new file mode 100644 index 00000000000..e75c6515120 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-clipboard.image-attachment-clipboard.startimageupload-1.json @@ -0,0 +1,721 @@ +{ + "operation": "clipboard.image-terminal-attachment", + "family": "clipboard.image-attachment", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "fc690a2ac59a6fbcdc08f9b91e769cd793f5a48d9034a50c2d587ce0d0fca3d9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "09c6a4baa397": { + "attached": "unattached", + "failure": "outer refused" + }, + "0ba13b24aafa": { + "attached": "unattached", + "failure": "transport failure" + }, + "10eb844da0d9": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "12f2bb1c7b16": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + }, + "2360f0a18466": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null.", + "isRpcDeliveryUnknown": false + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "443dd7aae7aa": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined.", + "isRpcDeliveryUnknown": false + } + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5573fed479c2": { + "attached": "unattached", + "failure": { + "$rpc": "null" + } + }, + "5884da2bfdb4": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "64cf59fb95a9": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + } + }, + "6f4464fb363d": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "71c09680e90b": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7a67576b4db6": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + }, + "7d50e9097d4b": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "81e9dee3833a": { + "attached": "unattached", + "failure": "" + }, + "8504c3b81dd7": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "873e759fa035": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "8de120313755": { + "attached": "unattached", + "failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined." + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "934346926f7a": { + "attached": "unattached", + "failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null." + }, + "9dea35e9f187": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "b782aed57bef": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "d3e85c1d5bb4": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d8eb6923f5c3": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + }, + "f61098e90dc1": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": { + "$rpc": "undefined" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + } + }, + "recording": { + "scenario": "matrix-clipboard.image-attachment-clipboard.startimageupload-1", + "checkpoints": [ + { + "id": "clipboard-image-attachment-upload-refused.normal:upload-refused", + "observation": { + "sender": ["7e48c58139e5", "d3e85c1d5bb4"], + "payloads": ["520b3fe0fb07", "b69a955ea891"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "5573fed479c2", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.result-absent:upload-refused", + "observation": { + "sender": ["873e759fa035"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "443dd7aae7aa" + }, + "state": "8de120313755", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.result-null:upload-refused", + "observation": { + "sender": ["10eb844da0d9"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "2360f0a18466" + }, + "state": "934346926f7a", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.inner-ok-missing:upload-refused", + "observation": { + "sender": ["d8eb6923f5c3", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "5573fed479c2", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.inner-false-string-error:upload-refused", + "observation": { + "sender": ["9dea35e9f187", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "5573fed479c2", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.inner-false-object-error:upload-refused", + "observation": { + "sender": ["64cf59fb95a9", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "5573fed479c2", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.outer-refused:upload-refused", + "observation": { + "sender": ["71c09680e90b"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "32a7c0ae7918" + }, + "state": "09c6a4baa397", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.outer-refused-no-message:upload-refused", + "observation": { + "sender": ["6f4464fb363d"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "f3b516f62081" + }, + "state": "81e9dee3833a", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.method-not-found:upload-refused", + "observation": { + "sender": ["12f2bb1c7b16", "7d50e9097d4b"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "5573fed479c2", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.transport-rejection:upload-refused", + "observation": { + "sender": ["5884da2bfdb4"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "a947768bc0ed" + }, + "state": "0ba13b24aafa", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "clipboard-image-attachment-upload-refused.transport-rejection-no-message:upload-refused", + "observation": { + "sender": ["b782aed57bef"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "c7584e82c72f" + }, + "state": "81e9dee3833a", + "effects": ["5f71b4d3d25c"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-clipboard.image-upload-clipboard.saveimageastempfile-1.json b/mobile/rpc-foundation/goldens/matrix-clipboard.image-upload-clipboard.saveimageastempfile-1.json new file mode 100644 index 00000000000..8d09af90235 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-clipboard.image-upload-clipboard.saveimageastempfile-1.json @@ -0,0 +1,735 @@ +{ + "operation": "clipboard.image-upload", + "family": "clipboard.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "fa69748b6d0e29abc37757b48bcb22dac07af1686554200ceaf18b4e3d62e4ac", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0886378046b0": { + "failure": { + "$rpc": "null" + }, + "path": { + "$rpc": "undefined" + } + }, + "12f2bb1c7b16": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + }, + "16df47fdaef5": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "2565f3b22472": { + "failure": { + "$rpc": "null" + }, + "path": { + "error": "inner refused", + "ok": false + } + }, + "2c021902d01b": { + "failure": { + "$rpc": "null" + }, + "path": { + "error": { + "message": "inner refused" + }, + "ok": false + } + }, + "301151228fa3": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": "refused" + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "350e6f28e830": { + "failure": "outer refused", + "path": "unsaved" + }, + "447c096794ae": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "44fb3e60f264": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5f0bdbce1ddf": { + "failure": "", + "path": "unsaved" + }, + "61599dd8e71a": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": "/tmp/legacy.png" + } + } + }, + "73fe3aca4d79": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "7a67576b4db6": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + }, + "7a9387a4c64a": { + "failure": "transport failure", + "path": "unsaved" + }, + "7f1260e77032": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "/tmp/legacy.png" + }, + "84271db61a98": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "923de2c0221d": { + "failure": { + "$rpc": "null" + }, + "path": "/tmp/legacy.png" + }, + "927229706f96": { + "failure": { + "$rpc": "null" + }, + "path": { + "error": "refused" + } + }, + "9bb070695706": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "9c3a6678afcc": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "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 + } + } + } + }, + "9f00dd54ba64": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": "inner refused", + "ok": false + } + }, + "a3d9fec4cf5a": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "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 + } + } + }, + "a79e227c913e": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "ad8a954e879d": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "message": "inner refused" + }, + "ok": false + } + }, + "afb22d946687": { + "failure": { + "$rpc": "null" + }, + "path": { + "$rpc": "null" + } + }, + "b948e8307e81": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Unknown method", + "isRpcDeliveryUnknown": false + } + }, + "b9ede26528d9": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "e939e5e1437a": { + "failure": "Unknown method", + "path": "unsaved" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ee20a1dc39e7": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "null" + } + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + } + }, + "recording": { + "scenario": "matrix-clipboard.image-upload-clipboard.saveimageastempfile-1", + "checkpoints": [ + { + "id": "clipboard-image-upload-single-frame-fallback.normal:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "61599dd8e71a"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "7f1260e77032" + }, + "state": "923de2c0221d", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.result-absent:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "73fe3aca4d79"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "eb79a9b3682a" + }, + "state": "0886378046b0", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.result-null:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "b9ede26528d9"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "ee20a1dc39e7" + }, + "state": "afb22d946687", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.inner-ok-missing:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "9bb070695706"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "301151228fa3" + }, + "state": "927229706f96", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.inner-false-string-error:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "84271db61a98"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "9f00dd54ba64" + }, + "state": "2565f3b22472", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.inner-false-object-error:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "9c3a6678afcc"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "ad8a954e879d" + }, + "state": "2c021902d01b", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.outer-refused:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "16df47fdaef5"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "32a7c0ae7918" + }, + "state": "350e6f28e830", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.outer-refused-no-message:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "a79e227c913e"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "f3b516f62081" + }, + "state": "5f0bdbce1ddf", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.method-not-found:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "a3d9fec4cf5a"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "b948e8307e81" + }, + "state": "e939e5e1437a", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.transport-rejection:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "44fb3e60f264"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "a947768bc0ed" + }, + "state": "7a9387a4c64a", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.transport-rejection-no-message:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "447c096794ae"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "c7584e82c72f" + }, + "state": "5f0bdbce1ddf", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-clipboard.image-upload-clipboard.startimageupload-1.json b/mobile/rpc-foundation/goldens/matrix-clipboard.image-upload-clipboard.startimageupload-1.json new file mode 100644 index 00000000000..6b6b2e100ae --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-clipboard.image-upload-clipboard.startimageupload-1.json @@ -0,0 +1,734 @@ +{ + "operation": "clipboard.image-upload", + "family": "clipboard.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "a4bea606723da4d4a86db6e04c46266801149a852a8861b15e637d5c0855c679", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0076104a780d": { + "failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined.", + "path": "unsaved" + }, + "10eb844da0d9": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "12f2bb1c7b16": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + }, + "2360f0a18466": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null.", + "isRpcDeliveryUnknown": false + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "350e6f28e830": { + "failure": "outer refused", + "path": "unsaved" + }, + "443dd7aae7aa": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined.", + "isRpcDeliveryUnknown": false + } + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5884da2bfdb4": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "5f0bdbce1ddf": { + "failure": "", + "path": "unsaved" + }, + "61599dd8e71a": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": "/tmp/legacy.png" + } + } + }, + "64cf59fb95a9": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + } + }, + "6f4464fb363d": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "71c09680e90b": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7a67576b4db6": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + }, + "7a9387a4c64a": { + "failure": "transport failure", + "path": "unsaved" + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "7f1260e77032": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "/tmp/legacy.png" + }, + "8504c3b81dd7": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "873e759fa035": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "923de2c0221d": { + "failure": { + "$rpc": "null" + }, + "path": "/tmp/legacy.png" + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "9de89efe4e9a": { + "failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null.", + "path": "unsaved" + }, + "9dea35e9f187": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "b782aed57bef": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "d3e85c1d5bb4": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d8eb6923f5c3": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "e8f2e67001e9": { + "failure": { + "$rpc": "null" + }, + "path": "unsaved" + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + }, + "f61098e90dc1": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": { + "$rpc": "undefined" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + } + }, + "recording": { + "scenario": "matrix-clipboard.image-upload-clipboard.startimageupload-1", + "checkpoints": [ + { + "id": "clipboard-image-upload-single-frame-fallback.normal:fell-back", + "observation": { + "sender": ["7e48c58139e5", "d3e85c1d5bb4"], + "payloads": ["520b3fe0fb07", "b69a955ea891"], + "settlements": { + "remote": "9270aeb7d9c6" + }, + "state": "e8f2e67001e9", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.result-absent:fell-back", + "observation": { + "sender": ["873e759fa035"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "remote": "443dd7aae7aa" + }, + "state": "0076104a780d", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.result-null:fell-back", + "observation": { + "sender": ["10eb844da0d9"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "remote": "2360f0a18466" + }, + "state": "9de89efe4e9a", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.inner-ok-missing:fell-back", + "observation": { + "sender": ["d8eb6923f5c3", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "remote": "9270aeb7d9c6" + }, + "state": "e8f2e67001e9", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.inner-false-string-error:fell-back", + "observation": { + "sender": ["9dea35e9f187", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "remote": "9270aeb7d9c6" + }, + "state": "e8f2e67001e9", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.inner-false-object-error:fell-back", + "observation": { + "sender": ["64cf59fb95a9", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "remote": "9270aeb7d9c6" + }, + "state": "e8f2e67001e9", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.outer-refused:fell-back", + "observation": { + "sender": ["71c09680e90b"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "remote": "32a7c0ae7918" + }, + "state": "350e6f28e830", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.outer-refused-no-message:fell-back", + "observation": { + "sender": ["6f4464fb363d"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "remote": "f3b516f62081" + }, + "state": "5f0bdbce1ddf", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.method-not-found:fell-back", + "observation": { + "sender": ["12f2bb1c7b16", "61599dd8e71a"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "remote": "7f1260e77032" + }, + "state": "923de2c0221d", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.transport-rejection:fell-back", + "observation": { + "sender": ["5884da2bfdb4"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "remote": "a947768bc0ed" + }, + "state": "7a9387a4c64a", + "effects": [] + } + }, + { + "id": "clipboard-image-upload-single-frame-fallback.transport-rejection-no-message:fell-back", + "observation": { + "sender": ["b782aed57bef"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "remote": "c7584e82c72f" + }, + "state": "5f0bdbce1ddf", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-components.codex-reset-capability-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-components.codex-reset-capability-status.get-1.json index 288a3c15a02..d0b903c75e9 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.codex-reset-capability-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.codex-reset-capability-status.get-1.json @@ -3,9 +3,9 @@ "family": "components.codex-reset-capability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "06c2ad6d4b464f889a640be7a238f6d0ff7c54b0e93fb5ea22aaa856dadb0336", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-components.codex-reset-credit-accounts.consumecodexresetcredit-1.json b/mobile/rpc-foundation/goldens/matrix-components.codex-reset-credit-accounts.consumecodexresetcredit-1.json new file mode 100644 index 00000000000..f5c86ad34e7 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-components.codex-reset-credit-accounts.consumecodexresetcredit-1.json @@ -0,0 +1,908 @@ +{ + "operation": "accounts.codex-reset-credit", + "family": "components.codex-reset-credit", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-components.execution-target-local-preflight.detectagents-1.json b/mobile/rpc-foundation/goldens/matrix-components.execution-target-local-preflight.detectagents-1.json index a1028532e45..6b96d9adca4 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-local-preflight.detectagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-local-preflight.detectagents-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "f88ee2f5d19b19cc53dca5180a9b5936a13a00a82e8a4636a5e895262b669dec", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-components.execution-target-preflight.detectremoteagents-1.json b/mobile/rpc-foundation/goldens/matrix-components.execution-target-preflight.detectremoteagents-1.json index a303c8b1118..8a98c9e53bd 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-preflight.detectremoteagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-preflight.detectremoteagents-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "79a49cddf66935007afb9be8a30593b778f02237894e5fd4d2898b526fc125df", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.connect-1.json b/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.connect-1.json index d5a583d293c..f382fcb7346 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.connect-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.connect-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "8b8f7fe7227d44330e216e0bf5d366c41b54d9bf76acfb24df2c1770984b9f27", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.getstate-1.json b/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.getstate-1.json index e1a71fe4324..66c765e0c71 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.getstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.getstate-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "6832d23c6500e4fcb20abe7c53bc4f5abe72180dc0ad747a4907b82d99bc75d0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-components.new-workspace-repositories-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-components.new-workspace-repositories-repo.list-1.json new file mode 100644 index 00000000000..4f6a2ada0eb --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-components.new-workspace-repositories-repo.list-1.json @@ -0,0 +1,622 @@ +{ + "operation": "workspace.repositories", + "family": "components.new-workspace-repositories", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-components.setup-script-repo.hooks-1.json b/mobile/rpc-foundation/goldens/matrix-components.setup-script-repo.hooks-1.json index e1b732cfa48..948ff471c43 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.setup-script-repo.hooks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.setup-script-repo.hooks-1.json @@ -3,9 +3,9 @@ "family": "components.setup-script", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "a844134d7bad3c7c12107d60dbd298f5cfba778703fb9dd0f7ad454615d26b07", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.explorer-screen-files.list-1.json b/mobile/rpc-foundation/goldens/matrix-files.explorer-screen-files.list-1.json new file mode 100644 index 00000000000..e94b60343b4 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-files.explorer-screen-files.list-1.json @@ -0,0 +1,761 @@ +{ + "operation": "files.explorer-screen", + "family": "files.explorer-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-files.explorer-screen-files.readdir-1.json b/mobile/rpc-foundation/goldens/matrix-files.explorer-screen-files.readdir-1.json new file mode 100644 index 00000000000..de071cfd521 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-files.explorer-screen-files.readdir-1.json @@ -0,0 +1,757 @@ +{ + "operation": "files.explorer-screen", + "family": "files.explorer-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "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": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-ssh.getstate-1.json b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-ssh.getstate-1.json index 6e9a5a08f8d..2469e6789af 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-ssh.getstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-ssh.getstate-1.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "5815450e8d07f463423ca0bd8237830791c220234201abffc6fa13e698913516", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-status.get-1.json index 58421571015..e51145dc9dd 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-status.get-1.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "b9cfb187224a4b42efe8ccfcd96145833730d135c4fffa345716f95991a4700f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-worktree.show-1.json index 1871cfd7964..d4b3e7c275e 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "0bf3b17048bceb0bc8592405facd99cb8086274509206d9e55cd589a05d7415f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-1.json b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-1.json index c63a65ae5c9..d0a315cf5b9 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-1.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "dbd20e271999641affbd4b52635c8864e25f08aa6db820a46d0773faa09770c6", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-2.json b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-2.json index 290f6f0111f..1f46d5cab53 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-2.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-2.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.resolveterminalpath-1.json b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.resolveterminalpath-1.json index 0088a7d3529..b40683499db 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.resolveterminalpath-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.resolveterminalpath-1.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.readterminalartifact-1.json b/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.readterminalartifact-1.json index 96e20fd03ab..fd1384d0d67 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.readterminalartifact-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.readterminalartifact-1.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "1a4f7dff351be244712bedb8f495c83a531cfbfc5b5923267d1ed46bf2d6d11b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.writeterminalartifact-1.json b/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.writeterminalartifact-1.json index e16ebdbf862..31ef6a9be06 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.writeterminalartifact-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.writeterminalartifact-1.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "8d443bda91fe5a1fa74910d525bb2ec40f639109bc71afbd42bccd949b3d463f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.read-1.json b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.read-1.json index 860644c712f..5a09244346c 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.read-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.read-1.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "65895c028637185238baf4fd4f1297c11f528a289fe8173a41c48dc5a0b37c26", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.readpreview-1.json b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.readpreview-1.json index 10ba7090f58..bd2776371aa 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.readpreview-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.readpreview-1.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "2ceca0ecd901fd78838fcbdc789cbb6b96f04674b850a0994c7611f5db804915", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-git.diff-1.json b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-git.diff-1.json index 1c96e8d442e..82d7635c1a3 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-git.diff-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-git.diff-1.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "c4db2424b8a35fd97b3fea00b4dd91a3c8d50c6fb73795811ef5402e3d14f8df", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-files.terminal-path-tap-files.open-1.json b/mobile/rpc-foundation/goldens/matrix-files.terminal-path-tap-files.open-1.json new file mode 100644 index 00000000000..311a3e1d6ac --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-files.terminal-path-tap-files.open-1.json @@ -0,0 +1,779 @@ +{ + "operation": "files.terminal-path-tap", + "family": "files.terminal-path-tap", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", + "scenarioSha256": "73dbbb8b96662af57240194be4af5726697d402b624a807d003ab56fea04dbd7", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "18cda90904c3": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "openTarget": { + "absolutePath": "/repo/src/app.ts", + "kind": "worktree-file", + "provider": "ssh", + "relativePath": "src/app.ts" + }, + "relativePath": "src/app.ts" + } + } + } + }, + "1d18c66a85d5": { + "name": "open-feedback", + "value": {}, + "sent": 1 + }, + "230cba644911": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "3e4eebf8cca0": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "4301fd620304": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 2 + }, + "650c13434960": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "8d3bc4f0f067": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "b18df88ac812": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "b765beef262e": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "tab-opened", + "relativePath": "src/app.ts" + } + ] + }, + "c08a54e5680c": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "c7ce9c8dc60e": { + "activeSessionTabId": "tab-source", + "failed": 1, + "switched": { + "$rpc": "null" + } + }, + "d88940bfb593": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + }, + "d9a357a79330": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "dd46a93564da": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "e53bbf4222bd": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "e7105794ab87": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f1dbfddcde3b": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "f334b291fecc": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" + }, + "f8a009b4a36e": { + "activeSessionTabId": "tab-opened", + "failed": 0, + "switched": { + "id": "tab-opened", + "relativePath": "src/app.ts" + } + } + }, + "recording": { + "scenario": "matrix-files.terminal-path-tap-files.open-1", + "checkpoints": [ + { + "id": "file-tap-opens-worktree-file.normal:switched", + "observation": { + "sender": ["18cda90904c3", "d9a357a79330"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "f8a009b4a36e", + "effects": ["1d18c66a85d5", "4301fd620304"] + } + }, + { + "id": "file-tap-opens-worktree-file.normal:settled", + "observation": { + "sender": ["18cda90904c3", "d9a357a79330"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "f8a009b4a36e", + "effects": ["1d18c66a85d5", "4301fd620304"] + } + }, + { + "id": "file-tap-opens-worktree-file.result-absent:switched", + "observation": { + "sender": ["18cda90904c3", "e53bbf4222bd"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.result-absent:settled", + "observation": { + "sender": ["18cda90904c3", "e53bbf4222bd"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.result-null:switched", + "observation": { + "sender": ["18cda90904c3", "c08a54e5680c"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.result-null:settled", + "observation": { + "sender": ["18cda90904c3", "c08a54e5680c"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-ok-missing:switched", + "observation": { + "sender": ["18cda90904c3", "230cba644911"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-ok-missing:settled", + "observation": { + "sender": ["18cda90904c3", "230cba644911"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-string-error:switched", + "observation": { + "sender": ["18cda90904c3", "8d3bc4f0f067"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-string-error:settled", + "observation": { + "sender": ["18cda90904c3", "8d3bc4f0f067"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-object-error:switched", + "observation": { + "sender": ["18cda90904c3", "b18df88ac812"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-object-error:settled", + "observation": { + "sender": ["18cda90904c3", "b18df88ac812"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused:switched", + "observation": { + "sender": ["18cda90904c3", "3e4eebf8cca0"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused:settled", + "observation": { + "sender": ["18cda90904c3", "3e4eebf8cca0"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused-no-message:switched", + "observation": { + "sender": ["18cda90904c3", "dd46a93564da"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused-no-message:settled", + "observation": { + "sender": ["18cda90904c3", "dd46a93564da"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.method-not-found:switched", + "observation": { + "sender": ["18cda90904c3", "e7105794ab87"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.method-not-found:settled", + "observation": { + "sender": ["18cda90904c3", "e7105794ab87"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection:switched", + "observation": { + "sender": ["18cda90904c3", "650c13434960"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection:settled", + "observation": { + "sender": ["18cda90904c3", "650c13434960"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection-no-message:switched", + "observation": { + "sender": ["18cda90904c3", "f1dbfddcde3b"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection-no-message:settled", + "observation": { + "sender": ["18cda90904c3", "f1dbfddcde3b"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": ["1d18c66a85d5"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-files.terminal-path-tap-files.resolveterminalpath-1.json b/mobile/rpc-foundation/goldens/matrix-files.terminal-path-tap-files.resolveterminalpath-1.json new file mode 100644 index 00000000000..341dd760922 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-files.terminal-path-tap-files.resolveterminalpath-1.json @@ -0,0 +1,809 @@ +{ + "operation": "files.terminal-path-tap", + "family": "files.terminal-path-tap", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", + "scenarioSha256": "ba8728e890e0e9c10ea163bd16f4f99fbc9727cd2f9c4ed69c56436d8bc29f89", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "10db95f1c64d": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "18cda90904c3": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "openTarget": { + "absolutePath": "/repo/src/app.ts", + "kind": "worktree-file", + "provider": "ssh", + "relativePath": "src/app.ts" + }, + "relativePath": "src/app.ts" + } + } + } + }, + "1d18c66a85d5": { + "name": "open-feedback", + "value": {}, + "sent": 1 + }, + "2f4867eaa094": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "31f84e3531c0": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "3f64ebc424e8": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "4301fd620304": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 2 + }, + "6ec7ceb8bafd": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "7f9e906655aa": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "986ca89cb4f6": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "9b581f30ecf9": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "b765beef262e": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "tab-opened", + "relativePath": "src/app.ts" + } + ] + }, + "c7ce9c8dc60e": { + "activeSessionTabId": "tab-source", + "failed": 1, + "switched": { + "$rpc": "null" + } + }, + "caa3fdbab58a": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "cbff15f6958f": { + "name": "files.resolveTerminalPath#1", + "args": [ + { + "name": "method", + "value": "files.resolveTerminalPath" + }, + { + "name": "params", + "value": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 10000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "d88940bfb593": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + }, + "d9a357a79330": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f334b291fecc": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" + }, + "f8a009b4a36e": { + "activeSessionTabId": "tab-opened", + "failed": 0, + "switched": { + "id": "tab-opened", + "relativePath": "src/app.ts" + } + } + }, + "recording": { + "scenario": "matrix-files.terminal-path-tap-files.resolveterminalpath-1", + "checkpoints": [ + { + "id": "file-tap-opens-worktree-file.normal:switched", + "observation": { + "sender": ["18cda90904c3", "d9a357a79330"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "f8a009b4a36e", + "effects": ["1d18c66a85d5", "4301fd620304"] + } + }, + { + "id": "file-tap-opens-worktree-file.normal:settled", + "observation": { + "sender": ["18cda90904c3", "d9a357a79330"], + "payloads": ["d88940bfb593", "f334b291fecc"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "f8a009b4a36e", + "effects": ["1d18c66a85d5", "4301fd620304"] + } + }, + { + "id": "file-tap-opens-worktree-file.result-absent:switched", + "observation": { + "sender": ["3f64ebc424e8"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.result-absent:settled", + "observation": { + "sender": ["3f64ebc424e8"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.result-null:switched", + "observation": { + "sender": ["31f84e3531c0"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.result-null:settled", + "observation": { + "sender": ["31f84e3531c0"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-ok-missing:switched", + "observation": { + "sender": ["10db95f1c64d"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-ok-missing:settled", + "observation": { + "sender": ["10db95f1c64d"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-string-error:switched", + "observation": { + "sender": ["986ca89cb4f6"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-string-error:settled", + "observation": { + "sender": ["986ca89cb4f6"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-object-error:switched", + "observation": { + "sender": ["2f4867eaa094"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.inner-false-object-error:settled", + "observation": { + "sender": ["2f4867eaa094"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused:switched", + "observation": { + "sender": ["caa3fdbab58a"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused:settled", + "observation": { + "sender": ["caa3fdbab58a"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused-no-message:switched", + "observation": { + "sender": ["9b581f30ecf9"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.outer-refused-no-message:settled", + "observation": { + "sender": ["9b581f30ecf9"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.method-not-found:switched", + "observation": { + "sender": ["7f9e906655aa"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.method-not-found:settled", + "observation": { + "sender": ["7f9e906655aa"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection:switched", + "observation": { + "sender": ["6ec7ceb8bafd"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection:settled", + "observation": { + "sender": ["6ec7ceb8bafd"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection-no-message:switched", + "observation": { + "sender": ["cbff15f6958f"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + }, + { + "id": "file-tap-opens-worktree-file.transport-rejection-no-message:settled", + "observation": { + "sender": ["cbff15f6958f"], + "payloads": ["d88940bfb593"], + "settlements": { + "tap": "eb79a9b3682a", + "list": "b765beef262e" + }, + "state": "c7ce9c8dc60e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.baserefdefault-1.json b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.baserefdefault-1.json index c8ec3ef93bb..db4b77e6e00 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.baserefdefault-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.baserefdefault-1.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "5605a2984d7692aa80e5e38f804bdfed4b1ce8ac2102def5dc728b1a79dc1acf", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.list-1.json index ffa83ab2a42..5a265049a99 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.list-1.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "ed0e97ead1aad0b45bdfc48f5fe4e498810d0cfee88f07d3c6228db56fda1dd9", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-worktree.show-1.json index d63aa9b8aaf..4584db130b9 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "1db6919b94df3b8548838ff4c206fafa3a09ea096b17c04483f78f9321ccb1ba", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.commit-message-ai-git.generatecommitmessage-1.json b/mobile/rpc-foundation/goldens/matrix-git.commit-message-ai-git.generatecommitmessage-1.json index a3582cf55f4..9e9eb60a30f 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.commit-message-ai-git.generatecommitmessage-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.commit-message-ai-git.generatecommitmessage-1.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "22ea5279155ecf749aaab521ffd570221ac3169b177fc1daf85ef93a49d38260", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.history-read-git.history-1.json b/mobile/rpc-foundation/goldens/matrix-git.history-read-git.history-1.json index 21463abd646..08dce59da27 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.history-read-git.history-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.history-read-git.history-1.json @@ -3,9 +3,9 @@ "family": "git.history-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "86254ed87ad3427d6ee4631d7348075039ba2d4d7496d59f27f03f78580f35a1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.remote-prerequisite-git.push-1.json b/mobile/rpc-foundation/goldens/matrix-git.remote-prerequisite-git.push-1.json index 7e53c8894e0..f6ae40eba32 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.remote-prerequisite-git.push-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.remote-prerequisite-git.push-1.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "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"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-git.review-preparation-git.status-1.json b/mobile/rpc-foundation/goldens/matrix-git.review-preparation-git.status-1.json index 5b526443b9c..eac9ccc0141 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.review-preparation-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.review-preparation-git.status-1.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "485b2751006ee8fb4df28b228ea7adda85779feae83974eb0f7e795e31c500a1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addissuecomment-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addissuecomment-1.json index 4e2bdd5fa40..f9b7753e45b 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "0c8f09683408a919dd3ac2b7cd12197d8745882627134cde95ecee209575b027", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addprreviewcommentreply-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addprreviewcommentreply-1.json index ab38e6eace2..7c6735a2f65 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addprreviewcommentreply-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addprreviewcommentreply-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "4f2b61df5e59d2efe81d467214a78132654035cbcb4d929385410b53f735c9fe", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.deleteissuecommentbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.deleteissuecommentbyslug-1.json index a6d7bd5e16c..e6a51c7405a 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.deleteissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.deleteissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "04b2052cce6f24d9e208c992f204355639409ddc9793b3044b394c0e38d3c284", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.updateissuecommentbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.updateissuecommentbyslug-1.json index ca73684f789..2e395f6ce54 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.updateissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.updateissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "8f849437158296753a84a75dfdbaf69852bcdb6cdc6e8205496961ec16e4be21", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.resolvereviewthread-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.resolvereviewthread-1.json index e6a1672e6e2..4442d2129fd 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.resolvereviewthread-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.resolvereviewthread-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "77eba7deff3f15e64795cdcbefd009abfcf2379e7293eefb1f154ca1e99f4d5d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.mergepr-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.mergepr-1.json index 10158bf2d07..3b06ca3a10d 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.mergepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.mergepr-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "2235d05e0d2c6f1a9518cfdd76870e303cccd35289d6a44334147b6a5b6b675e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.removeprreviewers-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.removeprreviewers-1.json index c87bd4eb8a3..86dd3f03a82 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.removeprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.removeprreviewers-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "2cea87c339b35daf62c963092c01c6379db43f2ee4ca5cb2b5f817975b0caf65", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.requestprreviewers-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.requestprreviewers-1.json index ac8410d5963..526675bf887 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.requestprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.requestprreviewers-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "78de11de556c91782590725819b22821732a12d3769f493d165c80bc7fcc1f53", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.rerunprchecks-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.rerunprchecks-1.json index e47c4ee88aa..238b88fd233 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.rerunprchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.rerunprchecks-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "ac7e91b4d35021eca63af8ce01f9a2c7959109e4cb824009881437cb94dbfe82", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.setprautomerge-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.setprautomerge-1.json index 79c9c7f69f3..723c529d3ba 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.setprautomerge-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.setprautomerge-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "a85682e5009d634bf468b8dbe4f35a957988754ed9c2b07d57ad475c1590d1f6", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.updateprstate-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.updateprstate-1.json index 01cb2163862..61cebb1e346 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.updateprstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.updateprstate-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "30f321fcbfaf09505bc6e18e64c09ca49c0dcdb7c5e12c4e27c2429b3e1066ca", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.listassignableusers-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.listassignableusers-1.json index 6a69aaa63c9..4d4b3bf9053 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.listassignableusers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.listassignableusers-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "507743a5925a37be32156b3d8df83ddb8e08c262d2c2f44bbd117dee4672bbc5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prcheckdetails-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prcheckdetails-1.json index 6dbf442a96f..6be7d81cff7 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prcheckdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prcheckdetails-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "6efca320cf31a1de988110004a9fb7b67fdad279a789e046ad6b5141b66e5bf1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prchecks-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prchecks-1.json index c36356b869e..f9991b5b370 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prchecks-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "c77d7c7a05ecb9b27180ef28ca63a28e1c1ca42db2bb54a468699da77281ae35", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prforbranch-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prforbranch-1.json index c872607b639..636650b5349 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prforbranch-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prforbranch-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "3b3d3032b992fc7461b13de8a42512affa12fb018ad583898179a9934c13b414", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.reposlug-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.reposlug-1.json index cf90559032a..f8330a94754 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.reposlug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.reposlug-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "4ebe865f874b0b4a813860ec7356b8dc214ea02f0a9036cb003efe863d89b83e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.workitemdetails-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.workitemdetails-1.json index 47b2f946954..c00e22e3913 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.workitemdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.workitemdetails-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "bc3350efc030f824fc21046aea8c6dc9a46993b6c75613c66874fde59af9171a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-read-hostedreview.forbranch-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-read-hostedreview.forbranch-1.json index e39b3b5071f..94a43cfc892 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-hostedreview.forbranch-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-hostedreview.forbranch-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "9171e982babc4e56852fe35bafa7a9f3aeda2be5bd4648f29aaa04ca7119d5d2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-github.pr-title-mutation-github.updateprtitle-1.json b/mobile/rpc-foundation/goldens/matrix-github.pr-title-mutation-github.updateprtitle-1.json index a95eb14b730..32eafcb25a4 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-title-mutation-github.updateprtitle-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-title-mutation-github.updateprtitle-1.json @@ -3,9 +3,9 @@ "family": "github.pr-title-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "fe91d5518501a078dff3010e74c4b9d70122f88a629e384336cd1b6a84de36a8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-home.host-stats-stats.summary-1.json b/mobile/rpc-foundation/goldens/matrix-home.host-stats-stats.summary-1.json index f399af48e83..6b67341ab28 100644 --- a/mobile/rpc-foundation/goldens/matrix-home.host-stats-stats.summary-1.json +++ b/mobile/rpc-foundation/goldens/matrix-home.host-stats-stats.summary-1.json @@ -3,9 +3,9 @@ "family": "home.host-stats", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "5518e08c1b20f0ddd4cb6bc81ff9af032b1a38daf24f3d3497bac5df8b2d0ec5", "platform": "darwin", @@ -47,15 +47,6 @@ } } }, - "0632d58191fb": { - "name": "stats", - "value": { - "host-1": { - "activeWorktrees": 1, - "totalWorktrees": 3 - } - } - }, "0ebcc6f6a4cb": { "name": "stats.summary#1", "args": [ @@ -123,13 +114,14 @@ } } }, - "2f0d38ebf67c": { + "334d5072a3ae": { "name": "stats", "value": { "host-1": { "$rpc": "undefined" } - } + }, + "sent": 1 }, "44136fa355b3": {}, "556edbbc8712": { @@ -137,30 +129,36 @@ "$rpc": "null" } }, - "5d85cea3ab32": { - "name": "stats", - "value": { - "host-1": { - "error": "inner refused", - "ok": false - } - } - }, - "6fe0cca6ed2a": { - "name": "stats", - "value": { - "host-1": { - "error": "refused" - } - } - }, - "7b564b8fe22e": { + "71f63720e55d": { "name": "stats", "value": { "host-1": { "$rpc": "null" } - } + }, + "sent": 1 + }, + "774545f8062f": { + "name": "stats", + "value": { + "host-1": { + "error": { + "message": "inner refused" + }, + "ok": false + } + }, + "sent": 1 + }, + "7836888bb6c0": { + "name": "stats", + "value": { + "host-1": { + "activeWorktrees": 1, + "totalWorktrees": 3 + } + }, + "sent": 1 }, "7bf81b1e94c5": { "name": "stats.summary#1", @@ -172,17 +170,6 @@ "totalWorktrees": 3 } }, - "9b2c7b6a4f74": { - "name": "stats", - "value": { - "host-1": { - "error": { - "message": "inner refused" - }, - "ok": false - } - } - }, "9c34abfa17e7": { "host-1": { "error": { @@ -425,6 +412,16 @@ } } }, + "e242a638aa23": { + "name": "stats", + "value": { + "host-1": { + "error": "inner refused", + "ok": false + } + }, + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -433,6 +430,15 @@ "$rpc": "undefined" } }, + "ec55f57d0b5d": { + "name": "stats", + "value": { + "host-1": { + "error": "refused" + } + }, + "sent": 1 + }, "f9b87a5a7a70": { "name": "stats.summary#1", "args": [ @@ -528,7 +534,7 @@ "load": "eb79a9b3682a" }, "state": "9a84a7559023", - "effects": ["0632d58191fb"] + "effects": ["7836888bb6c0"] } }, { @@ -540,7 +546,7 @@ "load": "eb79a9b3682a" }, "state": "c5bfd5f18460", - "effects": ["2f0d38ebf67c"] + "effects": ["334d5072a3ae"] } }, { @@ -552,7 +558,7 @@ "load": "eb79a9b3682a" }, "state": "556edbbc8712", - "effects": ["7b564b8fe22e"] + "effects": ["71f63720e55d"] } }, { @@ -564,7 +570,7 @@ "load": "eb79a9b3682a" }, "state": "b474d2a02a6a", - "effects": ["6fe0cca6ed2a"] + "effects": ["ec55f57d0b5d"] } }, { @@ -576,7 +582,7 @@ "load": "eb79a9b3682a" }, "state": "e05986a4b6e2", - "effects": ["5d85cea3ab32"] + "effects": ["e242a638aa23"] } }, { @@ -588,7 +594,7 @@ "load": "eb79a9b3682a" }, "state": "9c34abfa17e7", - "effects": ["9b2c7b6a4f74"] + "effects": ["774545f8062f"] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.get-1.json b/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.get-1.json index 4ac2545c421..801c5c31602 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.get-1.json @@ -3,9 +3,9 @@ "family": "host.view-settings", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "a9a3191e2e8c36870ce2769a7bb972813f435267fdc6ed9e42632a57a227bbd6", "platform": "darwin", @@ -78,6 +78,11 @@ } } }, + "1207e1b06040": { + "name": "workspaceStatuses", + "value": [], + "sent": 1 + }, "1308c5012cf9": { "name": "ui.get#1", "args": [ @@ -146,18 +151,15 @@ } } }, + "217aeff07fa0": { + "name": "groupMode", + "value": "none", + "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" - }, "3650379e5c37": { "name": "ui.get#1", "args": [ @@ -251,6 +253,11 @@ } } }, + "6816213c2ede": { + "name": "collapsedGroups", + "value": [], + "sent": 1 + }, "757d36f7d7c1": { "name": "ui.get#1", "args": [ @@ -315,10 +322,6 @@ } } }, - "7eaddd04bcdd": { - "name": "workspaceStatuses", - "value": [] - }, "8ab3467032ef": { "name": "ui.get#1", "args": [ @@ -359,19 +362,6 @@ "status": "pending", "startedAt": 0 }, - "9527461faeb1": { - "name": "filters", - "value": { - "alwaysShowDefaultBranch": true, - "filterRepoIds": [], - "hideDefaultBranch": false, - "hideSleeping": true - } - }, - "96e59623cbb8": { - "name": "groupMode", - "value": "none" - }, "993945d30ef2": { "name": "ui.get#1", "args": [ @@ -450,15 +440,6 @@ "sortMode": "name", "statuses": [] }, - "a0a3277ca732": { - "name": "filters", - "value": { - "alwaysShowDefaultBranch": true, - "filterRepoIds": [], - "hideDefaultBranch": false, - "hideSleeping": false - } - }, "a424515cabc9": { "name": "ui.get#1", "args": [ @@ -496,6 +477,11 @@ } } }, + "a8115697f295": { + "name": "sortMode", + "value": "name", + "sent": 1 + }, "ba2035345a68": { "collapsed": [], "filters": { @@ -508,6 +494,16 @@ "sortMode": "name", "statuses": [] }, + "bb2162bb7903": { + "name": "filters", + "value": { + "alwaysShowDefaultBranch": true, + "filterRepoIds": [], + "hideDefaultBranch": false, + "hideSleeping": false + }, + "sent": 1 + }, "bbdab1a7d122": { "collapsed": [], "filters": { @@ -520,9 +516,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", @@ -561,16 +568,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -586,11 +593,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -606,11 +613,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -626,11 +633,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -646,11 +653,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -666,11 +673,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -686,11 +693,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -706,11 +713,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -726,11 +733,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -746,11 +753,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } }, @@ -766,11 +773,11 @@ }, "state": "9d2d4e824476", "effects": [ - "96e59623cbb8", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "a0a3277ca732" + "217aeff07fa0", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "bb2162bb7903" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.set-1.json b/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.set-1.json index d153c6f3184..df2e9fff010 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.set-1.json @@ -3,9 +3,9 @@ "family": "host.view-settings", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "30cbeff90a845ab5dd576e302156e859338357b608e87e9fadeddf18ae93d9ca", "platform": "darwin", @@ -47,6 +47,11 @@ } } }, + "1207e1b06040": { + "name": "workspaceStatuses", + "value": [], + "sent": 1 + }, "25d97d355299": { "name": "ui.set#1", "args": [ @@ -82,10 +87,6 @@ "name": "ui.set#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}" }, - "3059ce80d86a": { - "name": "collapsedGroups", - "value": [] - }, "344b9ddf6cfb": { "name": "ui.set#1", "args": [ @@ -120,10 +121,6 @@ } } }, - "34925f64c9a6": { - "name": "sortMode", - "value": "name" - }, "44e91172f4a0": { "name": "ui.set#1", "args": [ @@ -218,6 +215,11 @@ "startedAt": 0 } }, + "6816213c2ede": { + "name": "collapsedGroups", + "value": [], + "sent": 1 + }, "733b56879f90": { "name": "ui.set#1", "args": [ @@ -281,23 +283,10 @@ } } }, - "7eaddd04bcdd": { - "name": "workspaceStatuses", - "value": [] - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "9527461faeb1": { - "name": "filters", - "value": { - "alwaysShowDefaultBranch": true, - "filterRepoIds": [], - "hideDefaultBranch": false, - "hideSleeping": true - } - }, "a234a06a4465": { "name": "ui.set#1", "args": [ @@ -368,6 +357,11 @@ } } }, + "a8115697f295": { + "name": "sortMode", + "value": "name", + "sent": 1 + }, "ba2035345a68": { "collapsed": [], "filters": { @@ -428,6 +422,16 @@ } } }, + "d88f3b1774b1": { + "name": "filters", + "value": { + "alwaysShowDefaultBranch": true, + "filterRepoIds": [], + "hideDefaultBranch": false, + "hideSleeping": true + }, + "sent": 1 + }, "d991b0c4e961": { "name": "ui.set#1", "args": [ @@ -461,9 +465,10 @@ } } }, - "e9a3acf203c6": { + "e0a092c9ae88": { "name": "groupMode", - "value": "repo" + "value": "repo", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -536,16 +541,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -561,16 +566,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -586,16 +591,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -611,16 +616,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -636,16 +641,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -661,16 +666,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -686,16 +691,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -711,16 +716,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -736,16 +741,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -761,16 +766,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } }, @@ -786,16 +791,16 @@ }, "state": "ba2035345a68", "effects": [ - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1", - "e9a3acf203c6", - "34925f64c9a6", - "7eaddd04bcdd", - "3059ce80d86a", - "9527461faeb1" + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1", + "e0a092c9ae88", + "a8115697f295", + "1207e1b06040", + "6816213c2ede", + "d88f3b1774b1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.activate-1.json b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.activate-1.json index 7a43b3e7f39..3119d29f7be 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.activate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.activate-1.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "7e842584620018d5ec5560711d63a472302e8da80cfe65dfcd2952aebb509af2", "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", @@ -186,6 +204,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 + }, "403256b7ebef": { "name": "worktree.activate#1", "args": [ @@ -262,35 +302,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": [], @@ -299,6 +314,16 @@ "routeActionState": {}, "worktrees": [] }, + "71246d169f18": { + "name": "worktrees", + "value": [], + "sent": 2 + }, + "8839215bd1a5": { + "name": "lastKnownWorktrees", + "value": [], + "sent": 2 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -380,9 +405,15 @@ } } }, - "b1509905fc66": { + "a970c9a870bb": { + "name": "pinnedIds", + "value": ["wt-1"], + "sent": 0 + }, + "bb44ad78848e": { "name": "optimisticActiveWorktreeIdentity", - "value": "|wt-1" + "value": "|wt-1", + "sent": 1 }, "bea1b89d2581": { "name": "worktree.activate#1", @@ -450,31 +481,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": [] - }, "d4d67a091d31": { "name": "worktree.activate#1", "args": [ @@ -666,7 +672,7 @@ "toggle-pin": "eb79a9b3682a" }, "state": "9a9b0d6699b2", - "effects": ["cbf8280fdbe7", "6cfdae6737f2", "0ebfc1859f18"] + "effects": ["088a989c038b", "3e27f9568029", "a970c9a870bb"] } }, { @@ -682,12 +688,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -704,12 +710,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -726,12 +732,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -748,12 +754,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -770,12 +776,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -792,12 +798,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -814,12 +820,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -836,12 +842,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -858,12 +864,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -880,12 +886,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -902,12 +908,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -924,12 +930,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -946,12 +952,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -968,12 +974,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -990,12 +996,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1012,12 +1018,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1034,12 +1040,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1056,12 +1062,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1078,12 +1084,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1100,12 +1106,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1122,12 +1128,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1144,12 +1150,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.rm-1.json b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.rm-1.json index 5be65f9f017..4413cee90dc 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.rm-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.rm-1.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "c47656a4ca21762e4b5a247ddf9a96efb746bec81e942ffa308a774bab1449e2", "platform": "darwin", @@ -90,9 +90,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 }, "11e971c034ae": { "name": "worktree.rm#1", @@ -200,6 +218,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}}" @@ -273,10 +313,6 @@ } } }, - "5c186d67b84c": { - "name": "lastKnownWorktrees", - "value": [] - }, "60cb8c68db7d": { "name": "worktree.rm#1", "args": [ @@ -313,14 +349,27 @@ "name": "worktree.rm#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}" }, - "6cfdae6737f2": { - "name": "lastKnownWorktrees", + "6e959a9dd70e": { + "confirmRemoveHost": false, + "lastKnownWorktrees": [], + "optimisticActiveWorktreeIdentity": "|wt-1", + "pinnedIds": ["wt-1"], + "routeActionState": {}, + "worktrees": [] + }, + "71246d169f18": { + "name": "worktrees", + "value": [], + "sent": 2 + }, + "76533c02700f": { + "name": "worktrees", "value": [ { "branch": "feature/pin", "displayName": "marlin", "hasAttachedPty": false, - "isPinned": true, + "isPinned": false, "linkedPR": { "$rpc": "null" }, @@ -332,15 +381,8 @@ "unread": false, "worktreeId": "wt-1" } - ] - }, - "6e959a9dd70e": { - "confirmRemoveHost": false, - "lastKnownWorktrees": [], - "optimisticActiveWorktreeIdentity": "|wt-1", - "pinnedIds": ["wt-1"], - "routeActionState": {}, - "worktrees": [] + ], + "sent": 3 }, "7ce7ff16ad9e": { "name": "worktree.rm#1", @@ -412,6 +454,11 @@ } } }, + "8839215bd1a5": { + "name": "lastKnownWorktrees", + "value": [], + "sent": 2 + }, "909c8bc23636": { "name": "worktree.rm#1", "args": [ @@ -525,8 +572,13 @@ } ] }, - "a7c564546e94": { - "name": "worktrees", + "a970c9a870bb": { + "name": "pinnedIds", + "value": ["wt-1"], + "sent": 0 + }, + "b9380463fe37": { + "name": "lastKnownWorktrees", "value": [ { "branch": "feature/pin", @@ -544,11 +596,13 @@ "unread": false, "worktreeId": "wt-1" } - ] + ], + "sent": 3 }, - "b1509905fc66": { + "bb44ad78848e": { "name": "optimisticActiveWorktreeIdentity", - "value": "|wt-1" + "value": "|wt-1", + "sent": 1 }, "bf2b36bda2d2": { "name": "worktree.set#1", @@ -580,48 +634,6 @@ "name": "worktree.activate#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}" }, - "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" - } - ] - }, - "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" - } - ] - }, "ce97d2eedacb": { "name": "worktree.rm#1", "args": [ @@ -686,10 +698,6 @@ } } }, - "d440bd87d1ce": { - "name": "worktrees", - "value": [] - }, "e3e3c397a66a": { "name": "worktree.rm#1", "args": [ @@ -772,7 +780,7 @@ "toggle-pin": "eb79a9b3682a" }, "state": "9a9b0d6699b2", - "effects": ["cbf8280fdbe7", "6cfdae6737f2", "0ebfc1859f18"] + "effects": ["088a989c038b", "3e27f9568029", "a970c9a870bb"] } }, { @@ -788,12 +796,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -810,14 +818,14 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c", - "a7c564546e94", - "c777b17081dd" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5", + "76533c02700f", + "b9380463fe37" ] } }, @@ -834,12 +842,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -856,12 +864,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -878,12 +886,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -900,12 +908,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -922,12 +930,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -944,12 +952,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -966,14 +974,14 @@ }, "state": "064a538f6c1c", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c", - "a7c564546e94", - "c777b17081dd" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5", + "76533c02700f", + "b9380463fe37" ] } }, @@ -990,14 +998,14 @@ }, "state": "064a538f6c1c", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c", - "a7c564546e94", - "c777b17081dd" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5", + "76533c02700f", + "b9380463fe37" ] } }, @@ -1014,14 +1022,14 @@ }, "state": "064a538f6c1c", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c", - "a7c564546e94", - "c777b17081dd" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5", + "76533c02700f", + "b9380463fe37" ] } }, @@ -1038,14 +1046,14 @@ }, "state": "064a538f6c1c", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c", - "a7c564546e94", - "c777b17081dd" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5", + "76533c02700f", + "b9380463fe37" ] } }, @@ -1062,14 +1070,14 @@ }, "state": "064a538f6c1c", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c", - "a7c564546e94", - "c777b17081dd" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5", + "76533c02700f", + "b9380463fe37" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.set-1.json b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.set-1.json index 450114c6534..ad3f968af65 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "054f1b1380fc6cfd4b0f4a85d6f143822a12a0a732d550dd85eef64a6556b3ba", "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 }, "1266cec86f6a": { "name": "worktree.set#1", @@ -152,6 +170,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 + }, "44ff929f3c43": { "name": "worktree.set#1", "args": [ @@ -262,10 +302,6 @@ } } }, - "5c186d67b84c": { - "name": "lastKnownWorktrees", - "value": [] - }, "6307d17334bd": { "name": "worktree.set#1", "args": [ @@ -405,27 +441,6 @@ } } }, - "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": [], @@ -434,6 +449,16 @@ "routeActionState": {}, "worktrees": [] }, + "71246d169f18": { + "name": "worktrees", + "value": [], + "sent": 2 + }, + "8839215bd1a5": { + "name": "lastKnownWorktrees", + "value": [], + "sent": 2 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -482,9 +507,10 @@ } ] }, - "b1509905fc66": { - "name": "optimisticActiveWorktreeIdentity", - "value": "|wt-1" + "a970c9a870bb": { + "name": "pinnedIds", + "value": ["wt-1"], + "sent": 0 }, "ba44a37bda16": { "name": "worktree.set#1", @@ -521,6 +547,11 @@ } } }, + "bb44ad78848e": { + "name": "optimisticActiveWorktreeIdentity", + "value": "|wt-1", + "sent": 1 + }, "bf2b36bda2d2": { "name": "worktree.set#1", "args": [ @@ -551,31 +582,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": [ @@ -656,7 +662,7 @@ "toggle-pin": "eb79a9b3682a" }, "state": "9a9b0d6699b2", - "effects": ["cbf8280fdbe7", "6cfdae6737f2", "0ebfc1859f18"] + "effects": ["088a989c038b", "3e27f9568029", "a970c9a870bb"] } }, { @@ -672,12 +678,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -694,12 +700,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -716,12 +722,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -738,12 +744,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -760,12 +766,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -782,12 +788,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -804,12 +810,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -826,12 +832,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -848,12 +854,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -870,12 +876,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -892,12 +898,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -914,12 +920,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -936,12 +942,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -958,12 +964,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -980,12 +986,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1002,12 +1008,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1024,12 +1030,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1046,12 +1052,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1068,12 +1074,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1090,12 +1096,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1112,12 +1118,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } }, @@ -1134,12 +1140,12 @@ }, "state": "6e959a9dd70e", "effects": [ - "cbf8280fdbe7", - "6cfdae6737f2", - "0ebfc1859f18", - "b1509905fc66", - "d440bd87d1ce", - "5c186d67b84c" + "088a989c038b", + "3e27f9568029", + "a970c9a870bb", + "bb44ad78848e", + "71246d169f18", + "8839215bd1a5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-git.push-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-git.push-1.json index 7a2a8bf8b39..398ba791814 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-git.push-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-git.push-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "fcf5cdc7388457156dd81fe28a470f42fbabac7435ec5572cb19e209f410ca84", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-hostedreview.create-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-hostedreview.create-1.json index 52ab2873283..38e97aee45e 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-hostedreview.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-hostedreview.create-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "26e666a57805f354602a5b3906a691b10c8d6db66c77acc96c67153279c515a7", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-worktree.set-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-worktree.set-1.json index 0a23b95a873..1b189b527b6 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "08c25b6cb5bc12a7f67e858f229d15cf66b98b2ad4601b11f18c4c03f4a59669", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.bulkstage-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.bulkstage-1.json index 25bd5cbeaa9..fd201148ae2 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.bulkstage-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.bulkstage-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "ff9d1bfd6337607f3d3e8162692b589ecea4a32ae01b5ebb3c602f8f0a55642c", "platform": "darwin", @@ -142,6 +142,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -415,9 +425,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "3c6a5a164e8a": { "outcome": { @@ -509,10 +520,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -553,10 +560,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, "614d26fc14b1": { "name": "git.bulkStage#1", "args": [ @@ -656,10 +659,6 @@ } } }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -697,14 +696,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1114,6 +1114,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -1323,7 +1328,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1335,7 +1340,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1359,7 +1364,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1387,7 +1392,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1417,7 +1422,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1454,11 +1459,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1498,11 +1503,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1515,7 +1520,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1539,7 +1544,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1567,7 +1572,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1597,7 +1602,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1634,11 +1639,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1678,11 +1683,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1695,7 +1700,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1719,7 +1724,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1747,7 +1752,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1777,7 +1782,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1814,11 +1819,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1858,11 +1863,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1875,7 +1880,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1899,7 +1904,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1927,7 +1932,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1957,7 +1962,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1994,11 +1999,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2038,11 +2043,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2055,7 +2060,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2079,7 +2084,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2107,7 +2112,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2137,7 +2142,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2174,11 +2179,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2218,11 +2223,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2235,7 +2240,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2259,7 +2264,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2287,7 +2292,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2317,7 +2322,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2354,11 +2359,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2398,11 +2403,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2415,7 +2420,7 @@ "run": "1b2778bf67a2" }, "state": "aa8b30457cff", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2427,7 +2432,7 @@ "run": "1b2778bf67a2" }, "state": "aa8b30457cff", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2439,7 +2444,7 @@ "run": "1b2778bf67a2" }, "state": "aa8b30457cff", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2451,7 +2456,7 @@ "run": "1b2778bf67a2" }, "state": "aa8b30457cff", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2463,7 +2468,7 @@ "run": "1b2778bf67a2" }, "state": "aa8b30457cff", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2475,7 +2480,7 @@ "run": "1b2778bf67a2" }, "state": "aa8b30457cff", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2487,7 +2492,7 @@ "run": "0a06528c313d" }, "state": "287d2ce39488", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2499,7 +2504,7 @@ "run": "0a06528c313d" }, "state": "287d2ce39488", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2511,7 +2516,7 @@ "run": "0a06528c313d" }, "state": "287d2ce39488", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2523,7 +2528,7 @@ "run": "0a06528c313d" }, "state": "287d2ce39488", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2535,7 +2540,7 @@ "run": "0a06528c313d" }, "state": "287d2ce39488", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2547,7 +2552,7 @@ "run": "0a06528c313d" }, "state": "287d2ce39488", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2559,7 +2564,7 @@ "run": "fa93ca01f266" }, "state": "e157741a28a1", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2571,7 +2576,7 @@ "run": "fa93ca01f266" }, "state": "e157741a28a1", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2583,7 +2588,7 @@ "run": "fa93ca01f266" }, "state": "e157741a28a1", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2595,7 +2600,7 @@ "run": "fa93ca01f266" }, "state": "e157741a28a1", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2607,7 +2612,7 @@ "run": "fa93ca01f266" }, "state": "e157741a28a1", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2619,7 +2624,7 @@ "run": "fa93ca01f266" }, "state": "e157741a28a1", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2631,7 +2636,7 @@ "run": "a197c20578aa" }, "state": "f4ca76ee9f22", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2643,7 +2648,7 @@ "run": "a197c20578aa" }, "state": "f4ca76ee9f22", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2655,7 +2660,7 @@ "run": "a197c20578aa" }, "state": "f4ca76ee9f22", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2667,7 +2672,7 @@ "run": "a197c20578aa" }, "state": "f4ca76ee9f22", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2679,7 +2684,7 @@ "run": "a197c20578aa" }, "state": "f4ca76ee9f22", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2691,7 +2696,7 @@ "run": "a197c20578aa" }, "state": "f4ca76ee9f22", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2703,7 +2708,7 @@ "run": "fb4429083480" }, "state": "3c6a5a164e8a", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2715,7 +2720,7 @@ "run": "fb4429083480" }, "state": "3c6a5a164e8a", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2727,7 +2732,7 @@ "run": "fb4429083480" }, "state": "3c6a5a164e8a", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2739,7 +2744,7 @@ "run": "fb4429083480" }, "state": "3c6a5a164e8a", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2751,7 +2756,7 @@ "run": "fb4429083480" }, "state": "3c6a5a164e8a", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2763,7 +2768,7 @@ "run": "fb4429083480" }, "state": "3c6a5a164e8a", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.commit-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.commit-1.json index 0303238eb65..7889afad5c5 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.commit-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.commit-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "efeb9b248aeb98fac71c043d50afe0036cf804d3c11edfccd4e050fe8f3d8f9b", "platform": "darwin", @@ -99,6 +99,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "0e4e820a7323": { "name": "git.commit#1", "args": [ @@ -538,9 +548,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "43c38f02e8d3": { "name": "git.commit#1", @@ -693,10 +704,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -737,10 +744,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, "6769762c413a": { "name": "git.commit#1", "args": [ @@ -776,10 +779,6 @@ } } }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6ba30d61e50b": { "outcome": { "commitMessage": "feat: recorded", @@ -1011,6 +1010,11 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "73defac1bd0b": { "outcome": { "commitMessage": "feat: recorded", @@ -1067,10 +1071,6 @@ "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1710,6 +1710,11 @@ } } }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -1997,7 +2002,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2009,7 +2014,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2033,7 +2038,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2061,7 +2066,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2091,7 +2096,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2128,11 +2133,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2172,11 +2177,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2201,7 +2206,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2225,7 +2230,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2249,7 +2254,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2273,7 +2278,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2297,7 +2302,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2321,7 +2326,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2345,7 +2350,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2369,7 +2374,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2393,7 +2398,7 @@ "run": "85064683fc9c" }, "state": "73defac1bd0b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2417,7 +2422,7 @@ "run": "85064683fc9c" }, "state": "73defac1bd0b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2441,7 +2446,7 @@ "run": "85064683fc9c" }, "state": "73defac1bd0b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2465,7 +2470,7 @@ "run": "85064683fc9c" }, "state": "73defac1bd0b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2489,7 +2494,7 @@ "run": "d49f246ff85c" }, "state": "83cdbcf01e38", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2513,7 +2518,7 @@ "run": "d49f246ff85c" }, "state": "83cdbcf01e38", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2537,7 +2542,7 @@ "run": "d49f246ff85c" }, "state": "83cdbcf01e38", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2561,7 +2566,7 @@ "run": "d49f246ff85c" }, "state": "83cdbcf01e38", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2585,7 +2590,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2609,7 +2614,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2633,7 +2638,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2657,7 +2662,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2681,7 +2686,7 @@ "run": "7c91e223d962" }, "state": "aceb861a4f8d", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2705,7 +2710,7 @@ "run": "7c91e223d962" }, "state": "aceb861a4f8d", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2729,7 +2734,7 @@ "run": "7c91e223d962" }, "state": "aceb861a4f8d", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2753,7 +2758,7 @@ "run": "7c91e223d962" }, "state": "aceb861a4f8d", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2777,7 +2782,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2801,7 +2806,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2825,7 +2830,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2849,7 +2854,7 @@ "run": "2e35579e2fc7" }, "state": "2c921c059023", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2873,7 +2878,7 @@ "run": "1dcf573f4df7" }, "state": "6e12eca3f727", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2897,7 +2902,7 @@ "run": "1dcf573f4df7" }, "state": "6e12eca3f727", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2921,7 +2926,7 @@ "run": "1dcf573f4df7" }, "state": "6e12eca3f727", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2945,7 +2950,7 @@ "run": "1dcf573f4df7" }, "state": "6e12eca3f727", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2969,7 +2974,7 @@ "run": "71d1010eb04f" }, "state": "f16335c11521", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2993,7 +2998,7 @@ "run": "71d1010eb04f" }, "state": "f16335c11521", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -3017,7 +3022,7 @@ "run": "71d1010eb04f" }, "state": "f16335c11521", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -3041,7 +3046,7 @@ "run": "71d1010eb04f" }, "state": "f16335c11521", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -3065,7 +3070,7 @@ "run": "1d83527e29e1" }, "state": "6ba30d61e50b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -3089,7 +3094,7 @@ "run": "1d83527e29e1" }, "state": "6ba30d61e50b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -3113,7 +3118,7 @@ "run": "1d83527e29e1" }, "state": "6ba30d61e50b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -3137,7 +3142,7 @@ "run": "1d83527e29e1" }, "state": "6ba30d61e50b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.generatecommitmessage-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.generatecommitmessage-1.json index 313af5feba0..bc90ce4b419 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.generatecommitmessage-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.generatecommitmessage-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "7b0d9ddcb8df83fc4e465aa6b0dcf05aa0d8f266cd4bb8651969cb8321bcf549", "platform": "darwin", @@ -99,6 +99,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -403,9 +413,10 @@ } } }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "3c03a92720a9": { "name": "git.generateCommitMessage#1", @@ -555,10 +566,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -599,14 +606,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -644,14 +643,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1108,6 +1108,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "be35b33cb39b": { "name": "git.generateCommitMessage#1", "args": [ @@ -1363,7 +1368,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1375,7 +1380,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1399,7 +1404,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1427,7 +1432,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1457,7 +1462,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1494,11 +1499,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1538,11 +1543,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1555,7 +1560,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1567,7 +1572,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1579,7 +1584,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1591,7 +1596,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1603,7 +1608,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1615,7 +1620,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1627,7 +1632,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1639,7 +1644,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1651,7 +1656,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1663,7 +1668,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1675,7 +1680,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1687,7 +1692,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1699,7 +1704,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1711,7 +1716,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1723,7 +1728,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1735,7 +1740,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1747,7 +1752,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1759,7 +1764,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1771,7 +1776,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1783,7 +1788,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1795,7 +1800,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1807,7 +1812,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1819,7 +1824,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1831,7 +1836,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1843,7 +1848,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1855,7 +1860,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1867,7 +1872,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1879,7 +1884,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1891,7 +1896,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1903,7 +1908,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1915,7 +1920,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1927,7 +1932,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1939,7 +1944,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1951,7 +1956,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1963,7 +1968,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1975,7 +1980,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1987,7 +1992,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1999,7 +2004,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2011,7 +2016,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2023,7 +2028,7 @@ "run": "a93f3dc8c4a1" }, "state": "2a7b021ae7bf", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2035,7 +2040,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2047,7 +2052,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2059,7 +2064,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2071,7 +2076,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2083,7 +2088,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2095,7 +2100,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2107,7 +2112,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2119,7 +2124,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2131,7 +2136,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -2143,7 +2148,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.push-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.push-1.json index 4360868cacf..e2c46dff8aa 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.push-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.push-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "72c1f08739db1c0dfcd48adffaca582a3596116c1c377f95f7dab8b08b7e6cdc", "platform": "darwin", @@ -99,6 +99,11 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, "0bf318ff290e": { "name": "git.push#1", "args": [ @@ -129,6 +134,11 @@ } } }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -405,9 +415,10 @@ } } }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "3b3b6edb80e0": { "name": "git.push#1", @@ -584,10 +595,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -628,14 +635,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6bcd8388e50a": { "name": "git.push#1", "args": [ @@ -760,14 +759,15 @@ } } }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1278,6 +1278,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -1523,7 +1528,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1535,7 +1540,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1559,7 +1564,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1587,7 +1592,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1617,7 +1622,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1654,11 +1659,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1698,11 +1703,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1740,11 +1745,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1784,11 +1789,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1826,11 +1831,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1870,11 +1875,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1912,11 +1917,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1956,11 +1961,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1998,11 +2003,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2042,11 +2047,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2084,11 +2089,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2128,11 +2133,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2163,7 +2168,7 @@ "run": "ebe3b70aca42" }, "state": "2753bd712186", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2193,7 +2198,7 @@ "run": "ebe3b70aca42" }, "state": "2753bd712186", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2223,7 +2228,7 @@ "run": "7b7ef5bfe32e" }, "state": "44ee1cfb7fb0", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2253,7 +2258,7 @@ "run": "7b7ef5bfe32e" }, "state": "44ee1cfb7fb0", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2283,7 +2288,7 @@ "run": "b74fa1c5741d" }, "state": "6c71b1b41cc9", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2313,7 +2318,7 @@ "run": "b74fa1c5741d" }, "state": "6c71b1b41cc9", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2343,7 +2348,7 @@ "run": "89b0fc55092d" }, "state": "7cc31dea5812", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2373,7 +2378,7 @@ "run": "89b0fc55092d" }, "state": "7cc31dea5812", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2403,7 +2408,7 @@ "run": "314223d33794" }, "state": "72d3658278c1", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2433,7 +2438,7 @@ "run": "314223d33794" }, "state": "72d3658278c1", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-1.json index 89003f2334c..5f34fb2c471 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "1f002f900c1a3c92e8f7c72261579ee5015ec1529c003a1b32bcf3eaf98b672d", "platform": "darwin", @@ -103,6 +103,11 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, "0bd335404e92": { "name": "git.status#1", "args": [ @@ -134,6 +139,11 @@ } } }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -294,6 +304,11 @@ "startedAt": 0 } }, + "226425674175": { + "name": "progress", + "value": "generating_commit_message", + "sent": 1 + }, "27e9d0778f22": { "name": "git.commit#1", "args": [ @@ -431,9 +446,10 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "41689f68ece0": { "name": "git.status#1", @@ -587,9 +603,10 @@ } } }, - "5975e0bdd4a4": { + "51df16ec572e": { "name": "progress", - "value": "creating_review" + "value": "committing", + "sent": 2 }, "5b46f52533a0": { "name": "hostedReview.create#1", @@ -631,14 +648,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -676,14 +685,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1056,6 +1066,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -1384,7 +1399,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1396,7 +1411,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1420,7 +1435,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1448,7 +1463,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1478,7 +1493,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1515,11 +1530,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1559,11 +1574,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1996,7 +2011,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542"] + "effects": ["226425674175"] } }, { @@ -2008,7 +2023,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542"] + "effects": ["226425674175"] } }, { @@ -2020,7 +2035,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2032,7 +2047,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2044,7 +2059,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2056,7 +2071,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2068,7 +2083,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2080,7 +2095,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542"] + "effects": ["226425674175"] } }, { @@ -2092,7 +2107,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542"] + "effects": ["226425674175"] } }, { @@ -2104,7 +2119,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2116,7 +2131,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2128,7 +2143,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2140,7 +2155,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2152,7 +2167,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2164,7 +2179,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542"] + "effects": ["226425674175"] } }, { @@ -2176,7 +2191,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542"] + "effects": ["226425674175"] } }, { @@ -2188,7 +2203,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2200,7 +2215,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2212,7 +2227,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2224,7 +2239,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { @@ -2236,7 +2251,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["6a5c9570c542", "7778d4c43a58"] + "effects": ["226425674175", "51df16ec572e"] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-2.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-2.json index a07807503f0..6e5c083b1d0 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-2.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-2.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "3a6487a07457e0e5aa6fc3fccfa43687acfb06d94334e621081728de937e4e8d", "platform": "darwin", @@ -204,6 +204,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "0ef828d1fdbe": { "name": "git.status#2", "args": [ @@ -645,9 +655,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "43ccfe31d2a4": { "outcome": { @@ -733,10 +744,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -777,10 +784,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, "6491de11ec00": { "status": "fulfilled", "startedAt": 0, @@ -794,10 +797,6 @@ } } }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -943,6 +942,11 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -983,10 +987,6 @@ } } }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1463,6 +1463,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "bc686a34f1d7": { "outcome": { "committed": false, @@ -1734,7 +1739,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1746,7 +1751,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1770,7 +1775,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1798,7 +1803,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1828,7 +1833,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1865,11 +1870,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1909,11 +1914,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1926,7 +1931,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1938,7 +1943,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1950,7 +1955,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1962,7 +1967,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1974,7 +1979,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1986,7 +1991,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1998,7 +2003,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2010,7 +2015,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2022,7 +2027,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2034,7 +2039,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2046,7 +2051,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2058,7 +2063,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2070,7 +2075,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2082,7 +2087,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2094,7 +2099,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2106,7 +2111,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2118,7 +2123,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2130,7 +2135,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2142,7 +2147,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2154,7 +2159,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2166,7 +2171,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2178,7 +2183,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2190,7 +2195,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2202,7 +2207,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2214,7 +2219,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2226,7 +2231,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2238,7 +2243,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2250,7 +2255,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2262,7 +2267,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2274,7 +2279,7 @@ "run": "6491de11ec00" }, "state": "bc686a34f1d7", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2286,7 +2291,7 @@ "run": "26d585682271" }, "state": "c459dd805bb5", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2298,7 +2303,7 @@ "run": "26d585682271" }, "state": "c459dd805bb5", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2310,7 +2315,7 @@ "run": "26d585682271" }, "state": "c459dd805bb5", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2322,7 +2327,7 @@ "run": "26d585682271" }, "state": "c459dd805bb5", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2334,7 +2339,7 @@ "run": "26d585682271" }, "state": "c459dd805bb5", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2346,7 +2351,7 @@ "run": "26d585682271" }, "state": "c459dd805bb5", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2358,7 +2363,7 @@ "run": "267a30accd66" }, "state": "6e27cc3e956c", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2370,7 +2375,7 @@ "run": "267a30accd66" }, "state": "6e27cc3e956c", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2382,7 +2387,7 @@ "run": "267a30accd66" }, "state": "6e27cc3e956c", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2394,7 +2399,7 @@ "run": "267a30accd66" }, "state": "6e27cc3e956c", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2406,7 +2411,7 @@ "run": "267a30accd66" }, "state": "6e27cc3e956c", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2418,7 +2423,7 @@ "run": "267a30accd66" }, "state": "6e27cc3e956c", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2430,7 +2435,7 @@ "run": "b61524b47452" }, "state": "08adfb09d756", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2442,7 +2447,7 @@ "run": "b61524b47452" }, "state": "08adfb09d756", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2454,7 +2459,7 @@ "run": "b61524b47452" }, "state": "08adfb09d756", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2466,7 +2471,7 @@ "run": "b61524b47452" }, "state": "08adfb09d756", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2478,7 +2483,7 @@ "run": "b61524b47452" }, "state": "08adfb09d756", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2490,7 +2495,7 @@ "run": "b61524b47452" }, "state": "08adfb09d756", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2502,7 +2507,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2514,7 +2519,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2526,7 +2531,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2538,7 +2543,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2550,7 +2555,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2562,7 +2567,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2574,7 +2579,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2586,7 +2591,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2598,7 +2603,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2610,7 +2615,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2622,7 +2627,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -2634,7 +2639,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-3.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-3.json index 326b60d83da..17498d983e1 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-3.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-3.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "7355c45a707fa8a31f0999c4805a5b1dace4c65b727e711231f784b2f92c05ff", "platform": "darwin", @@ -109,6 +109,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -384,9 +394,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "410fa853262b": { "name": "git.status#3", @@ -647,10 +658,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -691,14 +698,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6cd42601ee16": { "name": "git.status#3", "args": [ @@ -767,14 +766,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1363,6 +1363,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -1596,7 +1601,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1608,7 +1613,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1632,7 +1637,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1660,7 +1665,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1690,7 +1695,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1727,11 +1732,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1771,11 +1776,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1802,7 +1807,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1828,7 +1833,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1854,7 +1859,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1880,7 +1885,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1906,7 +1911,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1932,7 +1937,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1958,7 +1963,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1984,7 +1989,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2010,7 +2015,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2036,7 +2041,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2062,7 +2067,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2088,7 +2093,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2114,7 +2119,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2140,7 +2145,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2166,7 +2171,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2192,7 +2197,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2218,7 +2223,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2244,7 +2249,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2270,7 +2275,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2296,7 +2301,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2322,7 +2327,7 @@ "run": "1325f8e894d3" }, "state": "50eda8efe42e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2348,7 +2353,7 @@ "run": "1325f8e894d3" }, "state": "50eda8efe42e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2374,7 +2379,7 @@ "run": "1325f8e894d3" }, "state": "50eda8efe42e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2400,7 +2405,7 @@ "run": "1325f8e894d3" }, "state": "50eda8efe42e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2426,7 +2431,7 @@ "run": "afd6b6f3573f" }, "state": "f4cca647443e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2452,7 +2457,7 @@ "run": "afd6b6f3573f" }, "state": "f4cca647443e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2478,7 +2483,7 @@ "run": "afd6b6f3573f" }, "state": "f4cca647443e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2504,7 +2509,7 @@ "run": "afd6b6f3573f" }, "state": "f4cca647443e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2530,7 +2535,7 @@ "run": "45e49471a27c" }, "state": "9299e1dff33e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2556,7 +2561,7 @@ "run": "45e49471a27c" }, "state": "9299e1dff33e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2582,7 +2587,7 @@ "run": "45e49471a27c" }, "state": "9299e1dff33e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2608,7 +2613,7 @@ "run": "45e49471a27c" }, "state": "9299e1dff33e", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2634,7 +2639,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2660,7 +2665,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2686,7 +2691,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2712,7 +2717,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2738,7 +2743,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2764,7 +2769,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2790,7 +2795,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2816,7 +2821,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-4.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-4.json index a51825d60b8..e42a6176e3d 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-4.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-4.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "45cda6757b76399d282d4b07992dab21bbb8236faadedba5e92eab8818e886bf", "platform": "darwin", @@ -109,6 +109,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -419,9 +429,10 @@ } } }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "43ccfe31d2a4": { "outcome": { @@ -507,10 +518,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -585,10 +592,6 @@ } } }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, "62dc892f13c5": { "name": "git.status#4", "args": [ @@ -620,10 +623,6 @@ } } }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6c71b1b41cc9": { "outcome": { "committed": true, @@ -688,6 +687,11 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "73bcd662ebbc": { "status": "fulfilled", "startedAt": 0, @@ -722,10 +726,6 @@ "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1173,6 +1173,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -1452,7 +1457,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1464,7 +1469,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1488,7 +1493,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1516,7 +1521,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1546,7 +1551,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1583,11 +1588,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1627,11 +1632,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1664,7 +1669,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1696,7 +1701,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1728,7 +1733,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1760,7 +1765,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1792,7 +1797,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1824,7 +1829,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1856,7 +1861,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1888,7 +1893,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1920,7 +1925,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1952,7 +1957,7 @@ "run": "898de61efa3c" }, "state": "01bc4ad46170", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1984,7 +1989,7 @@ "run": "ebe3b70aca42" }, "state": "2753bd712186", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2016,7 +2021,7 @@ "run": "ebe3b70aca42" }, "state": "2753bd712186", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2048,7 +2053,7 @@ "run": "73bcd662ebbc" }, "state": "cdf1fca5783b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2080,7 +2085,7 @@ "run": "73bcd662ebbc" }, "state": "cdf1fca5783b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2112,7 +2117,7 @@ "run": "b74fa1c5741d" }, "state": "6c71b1b41cc9", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2144,7 +2149,7 @@ "run": "b74fa1c5741d" }, "state": "6c71b1b41cc9", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2176,7 +2181,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2208,7 +2213,7 @@ "run": "a947768bc0ed" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2240,7 +2245,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2272,7 +2277,7 @@ "run": "c7584e82c72f" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.create-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.create-1.json index 818a630633b..1ad66ab3b0b 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.create-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "0ca08d5e70e1780a6ee5c919491dcddb062a22623f803e9960a329825f274cbe", "platform": "darwin", @@ -153,6 +153,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -445,9 +455,10 @@ } } }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "43ccfe31d2a4": { "outcome": { @@ -606,10 +617,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -650,10 +657,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, "658bb4ca2398": { "status": "fulfilled", "startedAt": 0, @@ -684,10 +687,6 @@ } } }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6c46647d78ab": { "name": "hostedReview.create#1", "args": [ @@ -820,14 +819,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1430,6 +1430,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c2d62db0725f": { "status": "fulfilled", "startedAt": 0, @@ -1882,7 +1887,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1894,7 +1899,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1918,7 +1923,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1946,7 +1951,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1976,7 +1981,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2013,11 +2018,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2057,11 +2062,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2099,11 +2104,11 @@ }, "state": "6d9570b41a8b", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2141,11 +2146,11 @@ }, "state": "000efa3053f3", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2183,11 +2188,11 @@ }, "state": "e19dc901cb36", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2225,11 +2230,11 @@ }, "state": "183dab44d2de", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2267,11 +2272,11 @@ }, "state": "c955a0980eb4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2309,11 +2314,11 @@ }, "state": "6e6633f1d2cf", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2351,11 +2356,11 @@ }, "state": "0215b92c4449", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2393,11 +2398,11 @@ }, "state": "a3d6789c75bc", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2435,11 +2440,11 @@ }, "state": "e6d858bcb05d", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -2477,11 +2482,11 @@ }, "state": "d6eed3ce26c0", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-1.json index 79a772d8a12..b5c8a4b03d8 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "658eb7bbf63b3a4b38eca0b1733e523962b6b6943644d65aab6f5c7e62534d6a", "platform": "darwin", @@ -99,6 +99,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -412,9 +422,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "43ccfe31d2a4": { "outcome": { @@ -549,10 +560,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -639,10 +646,6 @@ } } }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, "6538ade0d25d": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -737,10 +740,6 @@ } } }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -778,14 +777,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1189,6 +1189,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -1502,7 +1507,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1514,7 +1519,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1538,7 +1543,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1566,7 +1571,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1596,7 +1601,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1633,11 +1638,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1677,11 +1682,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1710,7 +1715,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1738,7 +1743,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1766,7 +1771,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1794,7 +1799,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1822,7 +1827,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1850,7 +1855,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1878,7 +1883,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1906,7 +1911,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1934,7 +1939,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1962,7 +1967,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1990,7 +1995,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2018,7 +2023,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2046,7 +2051,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2074,7 +2079,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2102,7 +2107,7 @@ "run": "83e80c98d259" }, "state": "dd5d9b4070b7", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2130,7 +2135,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2158,7 +2163,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2186,7 +2191,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2214,7 +2219,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2242,7 +2247,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2270,7 +2275,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2298,7 +2303,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2326,7 +2331,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2354,7 +2359,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2382,7 +2387,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2410,7 +2415,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2438,7 +2443,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2466,7 +2471,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2494,7 +2499,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -2522,7 +2527,7 @@ "run": "e6f94c399ee4" }, "state": "1bfbb544c337", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-2.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-2.json index 7a64b312b40..ee751db82e5 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-2.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-2.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "75ba135731290bf734a5eef0b65f9ad8b7cac453c4e2006faac88a5da9dbe3a3", "platform": "darwin", @@ -99,6 +99,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "0ea11c3b0bda": { "name": "hostedReview.getCreationEligibility#2", "args": [ @@ -479,9 +489,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "3baf33626add": { "status": "fulfilled", @@ -646,10 +657,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5a0d2dca259b": { "outcome": { "committed": true, @@ -717,14 +724,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6bdfb4167cc6": { "outcome": { "committed": true, @@ -840,6 +839,11 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "73e6cf23f0b3": { "name": "hostedReview.getCreationEligibility#2", "args": [ @@ -890,10 +894,6 @@ "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1219,6 +1219,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "bf0e050653a2": { "status": "fulfilled", "startedAt": 0, @@ -1502,7 +1507,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1514,7 +1519,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1538,7 +1543,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1566,7 +1571,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1596,7 +1601,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1633,11 +1638,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1677,11 +1682,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1716,7 +1721,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1750,7 +1755,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1784,7 +1789,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1818,7 +1823,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1852,7 +1857,7 @@ "run": "bf0e050653a2" }, "state": "5a0d2dca259b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1886,7 +1891,7 @@ "run": "bf0e050653a2" }, "state": "5a0d2dca259b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1920,7 +1925,7 @@ "run": "bf0e050653a2" }, "state": "5a0d2dca259b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1954,7 +1959,7 @@ "run": "bf0e050653a2" }, "state": "5a0d2dca259b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1988,7 +1993,7 @@ "run": "bf0e050653a2" }, "state": "5a0d2dca259b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2022,7 +2027,7 @@ "run": "bf0e050653a2" }, "state": "5a0d2dca259b", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2056,7 +2061,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2090,7 +2095,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2124,7 +2129,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2158,7 +2163,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2192,7 +2197,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2226,7 +2231,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2260,7 +2265,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2294,7 +2299,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2328,7 +2333,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -2362,7 +2367,7 @@ "run": "3baf33626add" }, "state": "6bdfb4167cc6", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-worktree.set-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-worktree.set-1.json index 62afbfb299d..ef473ca70d5 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "beb1161b98ffde8c5f1128e843766a1da3182d195f1f0a9012e12e5318ae01bc", "platform": "darwin", @@ -99,6 +99,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "0fe249ca3852": { "name": "worktree.set#1", "args": [ @@ -474,9 +484,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "43ccfe31d2a4": { "outcome": { @@ -562,10 +573,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -606,14 +613,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -651,14 +650,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1098,6 +1098,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "bfe1edd2ca60": { "name": "worktree.set#1", "args": [ @@ -1345,7 +1350,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -1357,7 +1362,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -1381,7 +1386,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1409,7 +1414,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1439,7 +1444,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1476,11 +1481,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1520,11 +1525,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1564,11 +1569,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1608,11 +1613,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1652,11 +1657,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1696,11 +1701,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1740,11 +1745,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1784,11 +1789,11 @@ }, "state": "2c6dd148501e", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1828,11 +1833,11 @@ }, "state": "2c6dd148501e", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1872,11 +1877,11 @@ }, "state": "2c6dd148501e", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1916,11 +1921,11 @@ }, "state": "2c6dd148501e", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1960,11 +1965,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-hostedreview.eligibility-hostedreview.getcreationeligibility-1.json b/mobile/rpc-foundation/goldens/matrix-hostedreview.eligibility-hostedreview.getcreationeligibility-1.json index a7ec312bb09..95fc0efd205 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.eligibility-hostedreview.getcreationeligibility-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.eligibility-hostedreview.getcreationeligibility-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "6c4de90e2617d204e82ca5e65eb17fc397acbcbb9dc0ec18594d2a7739e3528b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-1.json b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-1.json index 7f6bade9d95..52d4b4c2e12 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-1.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-1.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "4f6472fb7add960be9bcc8596a748264d7cb0755a782ebe9e85753ab1d1d5710", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-2.json b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-2.json index c536f15094c..661a0d3733e 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-2.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-2.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "048c3ec55ec67d09d9b02e17822f1154adca577e57ffe6d3059102d552d2f759", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json index 96a9437422f..5a98129ac8f 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "ad458a3407e3f1303343b46a1308b43535abef2c9ed2f68db59157db5b91daa1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json index cd6b32d9a19..8b523e8ce8b 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "52742d894d0ea53db89729101664a393b10794d9c2d2fe7b40b020643a13af81", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.getissue-1.json b/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.getissue-1.json index e0e2b9fd2a5..1d4ff58fa80 100644 --- a/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.getissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.getissue-1.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "8e00afc85e5b82d75bedecea0c748a3c8658cfc8545650e755c03f51fdc932d6", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1696f2f90218": { + "0e0abca05602": { "name": "detailError", - "value": "comments transport error" + "value": "comments transport error", + "sent": 2 }, "1736ff39135a": { "name": "linear.getIssue#1", @@ -52,9 +53,10 @@ } } }, - "3b01c25bcd45": { + "39ca42c97176": { "name": "detailError", - "value": "" + "value": "", + "sent": 2 }, "3cb9a384ce0e": { "name": "linear.issueComments#1", @@ -96,9 +98,10 @@ "$rpc": "null" } }, - "468cc28b676c": { + "4a3ebfb61f95": { "name": "detailError", - "value": "transport failure" + "value": "transport failure", + "sent": 2 }, "4e7c4654b51d": { "name": "linear.issueComments#1", @@ -139,6 +142,11 @@ "$rpc": "null" } }, + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, "5ce7f3fa558f": { "name": "linear.getIssue#1", "args": [ @@ -248,16 +256,6 @@ "$rpc": "null" } }, - "7d21147e56c1": { - "name": "detailLoading", - "value": true - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, "8ec7d930f214": { "name": "linear.getIssue#1", "args": [ @@ -293,9 +291,17 @@ } } }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 }, "a1504f9a0912": { "name": "linear.getIssue#1", @@ -483,6 +489,11 @@ "$rpc": "undefined" } }, + "ee0c4638d266": { + "name": "detailLoading", + "value": false, + "sent": 2 + }, "fc4ce176400a": { "name": "linear.getIssue#1", "args": [ @@ -557,7 +568,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -569,7 +580,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -582,11 +593,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -599,7 +610,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -612,11 +623,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -629,7 +640,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -642,11 +653,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -659,7 +670,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -672,11 +683,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -689,7 +700,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -702,11 +713,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -719,7 +730,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -732,11 +743,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -749,7 +760,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -762,11 +773,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -779,7 +790,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -792,11 +803,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -809,7 +820,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -822,11 +833,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -840,11 +851,11 @@ }, "state": "4209c465bb82", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "468cc28b676c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "4a3ebfb61f95", + "ee0c4638d266" ] } }, @@ -858,11 +869,11 @@ }, "state": "4209c465bb82", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "468cc28b676c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "4a3ebfb61f95", + "ee0c4638d266" ] } }, @@ -876,11 +887,11 @@ }, "state": "51f19b7d1380", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "39ca42c97176", + "ee0c4638d266" ] } }, @@ -894,11 +905,11 @@ }, "state": "51f19b7d1380", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "39ca42c97176", + "ee0c4638d266" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.issuecomments-1.json b/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.issuecomments-1.json index 140a07e4537..7a2dca66acb 100644 --- a/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.issuecomments-1.json +++ b/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.issuecomments-1.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "40289acce4a3542773f74681d255d67cfddadf6c42317928d6728f26a76f6cfb", "platform": "darwin", @@ -116,9 +116,10 @@ } } }, - "3b01c25bcd45": { + "39ca42c97176": { "name": "detailError", - "value": "" + "value": "", + "sent": 2 }, "3bb04fc55c1a": { "name": "linear.issueComments#1", @@ -220,9 +221,10 @@ "$rpc": "null" } }, - "468cc28b676c": { + "4a3ebfb61f95": { "name": "detailError", - "value": "transport failure" + "value": "transport failure", + "sent": 2 }, "51f19b7d1380": { "error": "", @@ -231,6 +233,16 @@ "$rpc": "null" } }, + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, + "77515f910d51": { + "name": "detailError", + "value": "issue refused", + "sent": 2 + }, "780aaf1d97be": { "error": "", "loading": true, @@ -238,19 +250,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 }, "9f8c9f7294a0": { "name": "linear.issueComments#1", @@ -436,10 +446,6 @@ "$rpc": "null" } }, - "e1a8c572690f": { - "name": "detailError", - "value": "issue refused" - }, "e7f73629d075": { "name": "linear.issueComments#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" @@ -484,6 +490,11 @@ } } }, + "ee0c4638d266": { + "name": "detailLoading", + "value": false, + "sent": 2 + }, "f60c595d990e": { "name": "linear.issueComments#1", "args": [ @@ -557,7 +568,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -569,7 +580,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -582,11 +593,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -600,11 +611,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -618,11 +629,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -636,11 +647,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -654,11 +665,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -672,11 +683,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -690,11 +701,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -708,11 +719,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -726,11 +737,11 @@ }, "state": "dff907b2355c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e1a8c572690f", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "77515f910d51", + "ee0c4638d266" ] } }, @@ -744,11 +755,11 @@ }, "state": "4209c465bb82", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "468cc28b676c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "4a3ebfb61f95", + "ee0c4638d266" ] } }, @@ -762,11 +773,11 @@ }, "state": "51f19b7d1380", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "39ca42c97176", + "ee0c4638d266" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-nativechat.image-paste-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-nativechat.image-paste-terminal.send-1.json new file mode 100644 index 00000000000..e0dafc1b227 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-nativechat.image-paste-terminal.send-1.json @@ -0,0 +1,698 @@ +{ + "operation": "nativeChat.image-paste", + "family": "nativeChat.image-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "88da63e9f56e02dbe8404471e23251f9b13fd00b1ab10c19aa15b3a73128a53e", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0c34ad3edfd4": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "37db94f2b504": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "47a22f9d0047": { + "failure": { + "$rpc": "null" + }, + "pasted": true + }, + "518651fd2840": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "604f82044ca0": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "a32415cc51eb": { + "failure": "", + "pasted": "unpasted" + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b83e56a4ec7e": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "bb0a3578940a": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "c299c7a89e41": { + "failure": { + "$rpc": "null" + }, + "pasted": false + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "ca4bb356176b": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "d4132868cdd1": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "e23dda10e475": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "e74d7d62aa22": { + "failure": "transport failure", + "pasted": "unpasted" + }, + "eee5069757c1": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "efe52c3cedea": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "f0668186d466": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + } + }, + "recording": { + "scenario": "matrix-nativechat.image-paste-terminal.send-1", + "checkpoints": [ + { + "id": "native-chat-image-paste-single.normal:pasted", + "observation": { + "sender": ["52ae659a3d36", "518651fd2840"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "84e5ca07cb7a" + }, + "state": "47a22f9d0047", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.result-absent:pasted", + "observation": { + "sender": ["0c34ad3edfd4"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.result-null:pasted", + "observation": { + "sender": ["ca4bb356176b"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.inner-ok-missing:pasted", + "observation": { + "sender": ["bb0a3578940a"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.inner-false-string-error:pasted", + "observation": { + "sender": ["eee5069757c1"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.inner-false-object-error:pasted", + "observation": { + "sender": ["efe52c3cedea"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.outer-refused:pasted", + "observation": { + "sender": ["604f82044ca0"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.outer-refused-no-message:pasted", + "observation": { + "sender": ["37db94f2b504"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.method-not-found:pasted", + "observation": { + "sender": ["e23dda10e475"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.transport-rejection:pasted", + "observation": { + "sender": ["f0668186d466"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "a947768bc0ed" + }, + "state": "e74d7d62aa22", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.transport-rejection-no-message:pasted", + "observation": { + "sender": ["d4132868cdd1"], + "payloads": ["242d9ae1137d"], + "settlements": { + "one": "c7584e82c72f" + }, + "state": "a32415cc51eb", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-nativechat.image-paste-terminal.send-2.json b/mobile/rpc-foundation/goldens/matrix-nativechat.image-paste-terminal.send-2.json new file mode 100644 index 00000000000..608fdb1d155 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-nativechat.image-paste-terminal.send-2.json @@ -0,0 +1,698 @@ +{ + "operation": "nativeChat.image-paste", + "family": "nativeChat.image-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "89023bb3ad07d59dba75f227addac9d6a138e52b11e8ed6a64515f2bb1989367", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0e1de3f0fafc": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "33dc42a773cf": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "3e9f7d21cc21": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "43c685a0f4cb": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "47a22f9d0047": { + "failure": { + "$rpc": "null" + }, + "pasted": true + }, + "518651fd2840": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "5c8b9cec7cee": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "65ccd8e86b19": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "6c5110b83c72": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "6e8c79b0fe06": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "8d344f82224c": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "a32415cc51eb": { + "failure": "", + "pasted": "unpasted" + }, + "a73b2d8ca709": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b83e56a4ec7e": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "c299c7a89e41": { + "failure": { + "$rpc": "null" + }, + "pasted": false + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "e74d7d62aa22": { + "failure": "transport failure", + "pasted": "unpasted" + } + }, + "recording": { + "scenario": "matrix-nativechat.image-paste-terminal.send-2", + "checkpoints": [ + { + "id": "native-chat-image-paste-single.normal:pasted", + "observation": { + "sender": ["52ae659a3d36", "518651fd2840"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "84e5ca07cb7a" + }, + "state": "47a22f9d0047", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.result-absent:pasted", + "observation": { + "sender": ["52ae659a3d36", "3e9f7d21cc21"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.result-null:pasted", + "observation": { + "sender": ["52ae659a3d36", "a73b2d8ca709"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.inner-ok-missing:pasted", + "observation": { + "sender": ["52ae659a3d36", "8d344f82224c"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.inner-false-string-error:pasted", + "observation": { + "sender": ["52ae659a3d36", "6e8c79b0fe06"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.inner-false-object-error:pasted", + "observation": { + "sender": ["52ae659a3d36", "5c8b9cec7cee"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.outer-refused:pasted", + "observation": { + "sender": ["52ae659a3d36", "6c5110b83c72"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.outer-refused-no-message:pasted", + "observation": { + "sender": ["52ae659a3d36", "65ccd8e86b19"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.method-not-found:pasted", + "observation": { + "sender": ["52ae659a3d36", "43c685a0f4cb"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.transport-rejection:pasted", + "observation": { + "sender": ["52ae659a3d36", "33dc42a773cf"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "a947768bc0ed" + }, + "state": "e74d7d62aa22", + "effects": [] + } + }, + { + "id": "native-chat-image-paste-single.transport-rejection-no-message:pasted", + "observation": { + "sender": ["52ae659a3d36", "0e1de3f0fafc"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "c7584e82c72f" + }, + "state": "a32415cc51eb", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-nativechat.image-upload-clipboard.startimageupload-1.json b/mobile/rpc-foundation/goldens/matrix-nativechat.image-upload-clipboard.startimageupload-1.json new file mode 100644 index 00000000000..3fe508a57c4 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-nativechat.image-upload-clipboard.startimageupload-1.json @@ -0,0 +1,721 @@ +{ + "operation": "nativeChat.image-upload", + "family": "nativeChat.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "0478b692709ef0fe3cd75bf0d47fc27fcbb50ebc779e231537ba36638a0125f8", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0ff6f55894de": { + "failure": "transport failure", + "uploaded": "unuploaded" + }, + "10eb844da0d9": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "12f2bb1c7b16": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + }, + "2360f0a18466": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null.", + "isRpcDeliveryUnknown": false + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "443dd7aae7aa": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined.", + "isRpcDeliveryUnknown": false + } + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5884da2bfdb4": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "64cf59fb95a9": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "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 + } + } + } + }, + "6f4464fb363d": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7180e20192a8": { + "failure": "outer refused", + "uploaded": "unuploaded" + }, + "71c09680e90b": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7a67576b4db6": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + }, + "7d50e9097d4b": { + "name": "clipboard.saveImageAsTempFile#1", + "args": [ + { + "name": "method", + "value": "clipboard.saveImageAsTempFile" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "8504c3b81dd7": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "873e759fa035": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "9dea35e9f187": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "9fb187085300": { + "failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is null.", + "uploaded": "unuploaded" + }, + "9feead71a57d": { + "failure": { + "$rpc": "null" + }, + "uploaded": "unuploaded" + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "aee3a490cf0d": { + "failure": "", + "uploaded": "unuploaded" + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "b782aed57bef": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "d3e85c1d5bb4": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d8eb6923f5c3": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "f04acab589d3": { + "failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined.", + "uploaded": "unuploaded" + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + }, + "f61098e90dc1": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": { + "$rpc": "undefined" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + } + }, + "recording": { + "scenario": "matrix-nativechat.image-upload-clipboard.startimageupload-1", + "checkpoints": [ + { + "id": "native-chat-image-upload-start-refused.normal:refused", + "observation": { + "sender": ["7e48c58139e5", "d3e85c1d5bb4"], + "payloads": ["520b3fe0fb07", "b69a955ea891"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "9feead71a57d", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.result-absent:refused", + "observation": { + "sender": ["873e759fa035"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "443dd7aae7aa" + }, + "state": "f04acab589d3", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.result-null:refused", + "observation": { + "sender": ["10eb844da0d9"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "2360f0a18466" + }, + "state": "9fb187085300", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.inner-ok-missing:refused", + "observation": { + "sender": ["d8eb6923f5c3", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "9feead71a57d", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.inner-false-string-error:refused", + "observation": { + "sender": ["9dea35e9f187", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "9feead71a57d", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.inner-false-object-error:refused", + "observation": { + "sender": ["64cf59fb95a9", "f61098e90dc1"], + "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "9feead71a57d", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.outer-refused:refused", + "observation": { + "sender": ["71c09680e90b"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "32a7c0ae7918" + }, + "state": "7180e20192a8", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.outer-refused-no-message:refused", + "observation": { + "sender": ["6f4464fb363d"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "f3b516f62081" + }, + "state": "aee3a490cf0d", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.method-not-found:refused", + "observation": { + "sender": ["12f2bb1c7b16", "7d50e9097d4b"], + "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "settlements": { + "normal": "9270aeb7d9c6" + }, + "state": "9feead71a57d", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.transport-rejection:refused", + "observation": { + "sender": ["5884da2bfdb4"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "a947768bc0ed" + }, + "state": "0ff6f55894de", + "effects": ["5f71b4d3d25c"] + } + }, + { + "id": "native-chat-image-upload-start-refused.transport-rejection-no-message:refused", + "observation": { + "sender": ["b782aed57bef"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "c7584e82c72f" + }, + "state": "aee3a490cf0d", + "effects": ["5f71b4d3d25c"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-nativechat.session-option-pick-settings.mutatenativechatsessionoptions-1.json b/mobile/rpc-foundation/goldens/matrix-nativechat.session-option-pick-settings.mutatenativechatsessionoptions-1.json new file mode 100644 index 00000000000..1f57c52be6b --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-nativechat.session-option-pick-settings.mutatenativechatsessionoptions-1.json @@ -0,0 +1,620 @@ +{ + "operation": "nativeChat.session-option-pick", + "family": "nativeChat.session-option-pick", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "1305f50c6e838d89d0a9e65d9011d2a532a2f75f7b3aea73f9e33330214f5724", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "087f0393107f": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "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 + } + } + }, + "0aa1124bf746": { + "settled": "settled" + }, + "13047e7a65a3": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "1963baf2c0ff": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "53eb0204a2b0": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "6b4c03125e83": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "6b6f06b19722": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "738c95d85c66": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "applied": true + } + } + } + }, + "7944fdd65c78": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "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 + } + } + } + }, + "8c7187df17ee": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "9c0980cfe789": { + "name": "settings.mutateNativeChatSessionOptions#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}" + }, + "a2a1cfb0ec3f": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "c7e368586865": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-nativechat.session-option-pick-settings.mutatenativechatsessionoptions-1", + "checkpoints": [ + { + "id": "native-chat-session-option-pick-written.normal:written", + "observation": { + "sender": ["738c95d85c66"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.result-absent:written", + "observation": { + "sender": ["a2a1cfb0ec3f"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.result-null:written", + "observation": { + "sender": ["8c7187df17ee"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.inner-ok-missing:written", + "observation": { + "sender": ["6b6f06b19722"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.inner-false-string-error:written", + "observation": { + "sender": ["53eb0204a2b0"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.inner-false-object-error:written", + "observation": { + "sender": ["7944fdd65c78"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.outer-refused:written", + "observation": { + "sender": ["6b4c03125e83"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.outer-refused-no-message:written", + "observation": { + "sender": ["1963baf2c0ff"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.method-not-found:written", + "observation": { + "sender": ["087f0393107f"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.transport-rejection:written", + "observation": { + "sender": ["13047e7a65a3"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + }, + { + "id": "native-chat-session-option-pick-written.transport-rejection-no-message:written", + "observation": { + "sender": ["c7e368586865"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-nativechat.terminal-write-orchestration.workerterminaluserinput-1.json b/mobile/rpc-foundation/goldens/matrix-nativechat.terminal-write-orchestration.workerterminaluserinput-1.json new file mode 100644 index 00000000000..ad078eb8a9d --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-nativechat.terminal-write-orchestration.workerterminaluserinput-1.json @@ -0,0 +1,598 @@ +{ + "operation": "nativeChat.terminal-write", + "family": "nativeChat.terminal-write", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "860d3a80815ec68dc3fe2891a69888b80ec60fa205940e31f14643fb1097ead5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0203262b5432": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "34a453846d11": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "46771288e046": { + "body": "accepted" + }, + "4f58026b7877": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "6aad8cc2e655": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "6bb5bb25e4d4": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "7291a73df186": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "accepted" + }, + "84777d7d765a": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "ad01b4d8b4de": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "bca437e23d8a": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "c7c300e28254": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "cb9a9683ab1e": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "d642e739823d": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "dc19ad107e96": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + } + }, + "recording": { + "scenario": "matrix-nativechat.terminal-write-orchestration.workerterminaluserinput-1", + "checkpoints": [ + { + "id": "native-chat-write-accepted.normal:accepted", + "observation": { + "sender": ["c7c300e28254", "960f67ee14e2"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.result-absent:accepted", + "observation": { + "sender": ["c7c300e28254", "bca437e23d8a"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.result-null:accepted", + "observation": { + "sender": ["c7c300e28254", "d642e739823d"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.inner-ok-missing:accepted", + "observation": { + "sender": ["c7c300e28254", "6aad8cc2e655"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.inner-false-string-error:accepted", + "observation": { + "sender": ["c7c300e28254", "cb9a9683ab1e"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.inner-false-object-error:accepted", + "observation": { + "sender": ["c7c300e28254", "34a453846d11"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.outer-refused:accepted", + "observation": { + "sender": ["c7c300e28254", "84777d7d765a"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.outer-refused-no-message:accepted", + "observation": { + "sender": ["c7c300e28254", "dc19ad107e96"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.method-not-found:accepted", + "observation": { + "sender": ["c7c300e28254", "ad01b4d8b4de"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.transport-rejection:accepted", + "observation": { + "sender": ["c7c300e28254", "0203262b5432"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.transport-rejection-no-message:accepted", + "observation": { + "sender": ["c7c300e28254", "4f58026b7877"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-nativechat.terminal-write-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-nativechat.terminal-write-terminal.send-1.json new file mode 100644 index 00000000000..1d6d6562849 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-nativechat.terminal-write-terminal.send-1.json @@ -0,0 +1,666 @@ +{ + "operation": "nativeChat.terminal-write", + "family": "nativeChat.terminal-write", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "c4193d972250dbe72907dcd32b8300b22986edfa5eeb651268c3838835177c64", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "14a6ba9e9dc8": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "19f53fb21e4e": { + "body": "rejected" + }, + "44d966fae591": { + "body": "unknown" + }, + "46771288e046": { + "body": "accepted" + }, + "4b95872cc64f": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "4c1c30022324": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "5506ce9fc47a": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "66db9c7b8675": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "6bb5bb25e4d4": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "6decb41791d9": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "7291a73df186": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "accepted" + }, + "905b5deb0588": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "9117084b9a95": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "9bd3ea1ff2bb": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "rejected" + }, + "b7728627ecad": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "b95efad2c5d7": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "c7c300e28254": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "ed1d171deda5": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "unknown" + } + }, + "recording": { + "scenario": "matrix-nativechat.terminal-write-terminal.send-1", + "checkpoints": [ + { + "id": "native-chat-write-accepted.normal:accepted", + "observation": { + "sender": ["c7c300e28254", "960f67ee14e2"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.result-absent:accepted", + "observation": { + "sender": ["5506ce9fc47a"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.result-null:accepted", + "observation": { + "sender": ["66db9c7b8675"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.inner-ok-missing:accepted", + "observation": { + "sender": ["6decb41791d9"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.inner-false-string-error:accepted", + "observation": { + "sender": ["14a6ba9e9dc8"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.inner-false-object-error:accepted", + "observation": { + "sender": ["b95efad2c5d7"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.outer-refused:accepted", + "observation": { + "sender": ["b7728627ecad"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.outer-refused-no-message:accepted", + "observation": { + "sender": ["4b95872cc64f"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.method-not-found:accepted", + "observation": { + "sender": ["9117084b9a95"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.transport-rejection:accepted", + "observation": { + "sender": ["905b5deb0588"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "ed1d171deda5" + }, + "state": "44d966fae591", + "effects": [] + } + }, + { + "id": "native-chat-write-accepted.transport-rejection-no-message:accepted", + "observation": { + "sender": ["4c1c30022324"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "ed1d171deda5" + }, + "state": "44d966fae591", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.push-dismissal-notifications.getmissedsince-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.push-dismissal-notifications.getmissedsince-1.json new file mode 100644 index 00000000000..211cf2ef8e6 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-notifications.push-dismissal-notifications.getmissedsince-1.json @@ -0,0 +1,698 @@ +{ + "operation": "notifications.push-dismissal", + "family": "notifications.push-dismissal", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "595a3eb2994d0596b9fcd0707b175b4e978625053dfbc5c541b0350c0cbfb524", + "scenarioSha256": "9ab21cda2ac956c70ddd23fe589778bbb46333314508cf92770d668ba59d5a90", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0375564c20d2": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "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 + } + } + } + }, + "12a51134490b": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "35a8f1665a60": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "3edd0c4f94c5": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "538677482207": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "6769d136aaaa": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "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 + } + } + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "9658e14eeea9": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "9aba86eb07e4": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "ac56c3fc846f": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "dismissedPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ] + } + } + } + }, + "afd5e55d2004": { + "name": "notifications.getMissedSince#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7}]}}" + }, + "b45fce07f72d": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "bcdd9c902f5e": { + "name": "device-store.setItem", + "value": { + "key": "orca:pushDismissalWatermarks:v1", + "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-1\\\"]\",\"seq\":7,\"expiresAt\":1767312000000}]" + }, + "sent": 1 + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "c83340909a1e": { + "name": "notification-tray.dismiss", + "value": { + "identifier": "tray-1" + }, + "sent": 1 + }, + "cf9c28129225": { + "disposed": false + }, + "d40294206150": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ec2490deff5d": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + } + }, + "recording": { + "scenario": "matrix-notifications.push-dismissal-notifications.getmissedsince-1", + "checkpoints": [ + { + "id": "push-dismissal-tray-reconciled.prelude:requested", + "observation": { + "sender": ["9aba86eb07e4"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "9270aeb7d9c6" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.normal:reconciled", + "observation": { + "sender": ["ac56c3fc846f"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": ["bcdd9c902f5e", "c83340909a1e"] + } + }, + { + "id": "push-dismissal-tray-reconciled.result-absent:reconciled", + "observation": { + "sender": ["538677482207"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.result-null:reconciled", + "observation": { + "sender": ["b45fce07f72d"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.inner-ok-missing:reconciled", + "observation": { + "sender": ["35a8f1665a60"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.inner-false-string-error:reconciled", + "observation": { + "sender": ["9658e14eeea9"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.inner-false-object-error:reconciled", + "observation": { + "sender": ["0375564c20d2"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.outer-refused:reconciled", + "observation": { + "sender": ["12a51134490b"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.outer-refused-no-message:reconciled", + "observation": { + "sender": ["3edd0c4f94c5"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.method-not-found:reconciled", + "observation": { + "sender": ["6769d136aaaa"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.transport-rejection:reconciled", + "observation": { + "sender": ["ec2490deff5d"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "a947768bc0ed" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "push-dismissal-tray-reconciled.transport-rejection-no-message:reconciled", + "observation": { + "sender": ["d40294206150"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "c7584e82c72f" + }, + "state": "cf9c28129225", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.registerpush-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.registerpush-1.json index 8343b7b9001..ec26c88469a 100644 --- a/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.registerpush-1.json +++ b/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.registerpush-1.json @@ -3,10 +3,10 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "bbfb0f3d8a68ccdd6f354db9ed57076060c32fc7effcf66fa09ee3c2de82a724", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "c77a518d35203370669fea20f7669d7695a2ec851f22b220a8be417c546efeab", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.unregisterpush-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.unregisterpush-1.json index 89f39cc6601..c17e43bde7a 100644 --- a/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.unregisterpush-1.json +++ b/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.unregisterpush-1.json @@ -3,10 +3,10 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "bbfb0f3d8a68ccdd6f354db9ed57076060c32fc7effcf66fa09ee3c2de82a724", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "bb772b4b000644f18b48dcf78b05863b30906bcf588824d94eff086014fa69e8", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-direct-status.json b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-direct-status.json index b995e1f3683..f23cc2f22f2 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-direct-status.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-direct-status.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "a28912c9abb97a227904723ff0de8162de31fce66c056da1813e0c18f6e01ccf", "platform": "darwin", @@ -13,13 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, - "0799d165f56e": { + "0b595cd54ac3": { "name": "journal-saved", - "value": "pair-fixture-1" + "value": "pair-fixture-1", + "sent": 0 + }, + "12869cc488be": { + "name": "host-saved", + "value": "relay-host-0001x", + "sent": 4 }, "16cd464bf664": { "name": "status.get#1", @@ -55,12 +57,6 @@ } } }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, "1e5b32902af7": { "name": "status.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" @@ -171,10 +167,6 @@ } } }, - "4030a59932c1": { - "name": "journal-updated", - "value": "pair-fixture-1" - }, "40741be1b91f": { "outcome": "failed: relay credential install result does not match pairing journal", "savedHost": { @@ -215,6 +207,16 @@ } } }, + "477b001b0374": { + "name": "candidate-closed", + "value": "direct", + "sent": 4 + }, + "47dedea61355": { + "name": "journal-cleared", + "value": "pair-fixture-1", + "sent": 4 + }, "53412dd89894": { "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" @@ -272,6 +274,13 @@ } } }, + "6b9f1bf73e55": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 4 + }, "6cb74a535419": { "name": "status.get#2", "args": [ @@ -487,13 +496,15 @@ } } }, - "b8549409f4a9": { - "name": "journal-cleared", - "value": "pair-fixture-1" + "b2a8517fe750": { + "name": "candidate-closed", + "value": "direct", + "sent": 2 }, - "bc627d34e0d0": { - "name": "host-saved", - "value": "relay-host-0001x" + "b96f13a39e18": { + "name": "journal-updated", + "value": "pair-fixture-1", + "sent": 2 }, "c0c86e67c300": { "name": "status.get#2", @@ -533,6 +544,11 @@ } } }, + "ca7cb1785a59": { + "name": "candidate-closed", + "value": "relay", + "sent": 4 + }, "d1b2eddf66f4": { "status": "fulfilled", "startedAt": 0, @@ -541,6 +557,11 @@ "hostId": "host-1" } }, + "d433a326314e": { + "name": "candidate-closed", + "value": "relay", + "sent": 2 + }, "de87f6266897": { "name": "status.get#1", "args": [ @@ -571,10 +592,6 @@ "isRpcDeliveryUnknown": true } } - }, - "f203320e31e9": { - "name": "candidate-closed", - "value": "direct" } }, "recording": { @@ -590,14 +607,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -611,14 +628,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -632,14 +649,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -653,14 +670,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -674,14 +691,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -695,14 +712,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -716,11 +733,11 @@ }, "state": "40741be1b91f", "effects": [ - "0799d165f56e", - "f203320e31e9", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "b2a8517fe750", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -734,11 +751,11 @@ }, "state": "40741be1b91f", "effects": [ - "0799d165f56e", - "f203320e31e9", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "b2a8517fe750", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -752,11 +769,11 @@ }, "state": "40741be1b91f", "effects": [ - "0799d165f56e", - "f203320e31e9", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "b2a8517fe750", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -770,11 +787,11 @@ }, "state": "40741be1b91f", "effects": [ - "0799d165f56e", - "f203320e31e9", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "b2a8517fe750", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -788,11 +805,11 @@ }, "state": "40741be1b91f", "effects": [ - "0799d165f56e", - "f203320e31e9", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "b2a8517fe750", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.getendpoints-1.json b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.getendpoints-1.json index 807bbdf80a1..f2f64e11e69 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "ccd2ef7c617d13bdf5987f5f89fed6917206205268633b9ef061b92c3580d672", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, "06dee54a3689": { "status": "rejected", "startedAt": 0, @@ -27,15 +23,15 @@ "isRpcDeliveryUnknown": false } }, - "0799d165f56e": { + "0b595cd54ac3": { "name": "journal-saved", - "value": "pair-fixture-1" + "value": "pair-fixture-1", + "sent": 0 }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } + "12869cc488be": { + "name": "host-saved", + "value": "relay-host-0001x", + "sent": 4 }, "1e5b32902af7": { "name": "status.get#1", @@ -213,9 +209,15 @@ } } }, - "4030a59932c1": { - "name": "journal-updated", - "value": "pair-fixture-1" + "477b001b0374": { + "name": "candidate-closed", + "value": "direct", + "sent": 4 + }, + "47dedea61355": { + "name": "journal-cleared", + "value": "pair-fixture-1", + "sent": 4 }, "4e3b57d795cb": { "status": "rejected", @@ -291,6 +293,13 @@ } } }, + "6b9f1bf73e55": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 4 + }, "6cb74a535419": { "name": "status.get#2", "args": [ @@ -603,13 +612,10 @@ } } }, - "b8549409f4a9": { - "name": "journal-cleared", - "value": "pair-fixture-1" - }, - "bc627d34e0d0": { - "name": "host-saved", - "value": "relay-host-0001x" + "b96f13a39e18": { + "name": "journal-updated", + "value": "pair-fixture-1", + "sent": 2 }, "c0c86e67c300": { "name": "status.get#2", @@ -632,6 +638,11 @@ "isRpcDeliveryUnknown": true } }, + "ca7cb1785a59": { + "name": "candidate-closed", + "value": "relay", + "sent": 4 + }, "ccde11a35347": { "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received null\"\n }\n]", "savedHost": { @@ -647,6 +658,11 @@ "hostId": "host-1" } }, + "d433a326314e": { + "name": "candidate-closed", + "value": "relay", + "sent": 2 + }, "d56bfdbce702": { "status": "rejected", "startedAt": 0, @@ -681,10 +697,6 @@ }, "timedOut": false }, - "f203320e31e9": { - "name": "candidate-closed", - "value": "direct" - }, "f413abdb830a": { "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received undefined\"\n }\n]", "savedHost": { @@ -726,14 +738,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -747,11 +759,11 @@ }, "state": "f413abdb830a", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -765,11 +777,11 @@ }, "state": "ccde11a35347", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -783,11 +795,11 @@ }, "state": "706827e9c433", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -801,11 +813,11 @@ }, "state": "7adfb8f30333", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -819,11 +831,11 @@ }, "state": "7adfb8f30333", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -837,11 +849,11 @@ }, "state": "4e5a56d00e5e", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -855,11 +867,11 @@ }, "state": "e625529b1cd8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -873,11 +885,11 @@ }, "state": "c3972c583458", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -891,11 +903,11 @@ }, "state": "9dec5db5203d", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -909,11 +921,11 @@ }, "state": "d7f4c8d8decc", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "477b001b0374", + "ca7cb1785a59" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.provisionrelay-1.json b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.provisionrelay-1.json index cfefe427a26..7ab31e95f5a 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.provisionrelay-1.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.provisionrelay-1.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "399fa8b85d9c2fc341ea2284a54aed278fd1a5b19a84cc9284c29d5a583bc519", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, "0539a34c02a8": { "name": "pairing.provisionRelay#1", "args": [ @@ -59,9 +55,15 @@ "isRpcDeliveryUnknown": false } }, - "0799d165f56e": { + "0b595cd54ac3": { "name": "journal-saved", - "value": "pair-fixture-1" + "value": "pair-fixture-1", + "sent": 0 + }, + "12869cc488be": { + "name": "host-saved", + "value": "relay-host-0001x", + "sent": 4 }, "139fb7a92eac": { "name": "pairing.provisionRelay#1", @@ -100,12 +102,6 @@ } } }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, "1e5b32902af7": { "name": "status.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" @@ -185,10 +181,6 @@ } } }, - "4030a59932c1": { - "name": "journal-updated", - "value": "pair-fixture-1" - }, "44341dbd8021": { "name": "pairing.provisionRelay#1", "args": [ @@ -223,11 +215,31 @@ } } }, + "4663b0f6e580": { + "name": "host-saved", + "value": "direct-only", + "sent": 3 + }, + "477b001b0374": { + "name": "candidate-closed", + "value": "direct", + "sent": 4 + }, + "47dedea61355": { + "name": "journal-cleared", + "value": "pair-fixture-1", + "sent": 4 + }, "4a54bf2090c8": { "outcome": "host-1", "savedHost": "direct-only", "timedOut": false }, + "4cb6216cee5a": { + "name": "candidate-closed", + "value": "relay", + "sent": 3 + }, "4e3b57d795cb": { "status": "rejected", "startedAt": 0, @@ -259,10 +271,6 @@ "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" }, - "540f41097a17": { - "name": "host-saved", - "value": "direct-only" - }, "56266d1e7340": { "name": "pairing.getEndpoints#1", "args": [ @@ -316,6 +324,13 @@ } } }, + "6b9f1bf73e55": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 4 + }, "6cb74a535419": { "name": "status.get#2", "args": [ @@ -491,6 +506,11 @@ "isRpcDeliveryUnknown": false } }, + "8eb785974a39": { + "name": "candidate-closed", + "value": "direct", + "sent": 3 + }, "9b50435fa2f8": { "outcome": "host-1", "savedHost": "relay-host-0001x", @@ -548,13 +568,10 @@ } } }, - "b8549409f4a9": { - "name": "journal-cleared", - "value": "pair-fixture-1" - }, - "bc627d34e0d0": { - "name": "host-saved", - "value": "relay-host-0001x" + "b96f13a39e18": { + "name": "journal-updated", + "value": "pair-fixture-1", + "sent": 2 }, "c0c86e67c300": { "name": "status.get#2", @@ -605,6 +622,11 @@ "isRpcDeliveryUnknown": true } }, + "ca7cb1785a59": { + "name": "candidate-closed", + "value": "relay", + "sent": 4 + }, "ccde11a35347": { "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received null\"\n }\n]", "savedHost": { @@ -620,6 +642,11 @@ "hostId": "host-1" } }, + "d433a326314e": { + "name": "candidate-closed", + "value": "relay", + "sent": 2 + }, "d56bfdbce702": { "status": "rejected", "startedAt": 0, @@ -668,10 +695,6 @@ "isRpcDeliveryUnknown": false } }, - "f203320e31e9": { - "name": "candidate-closed", - "value": "direct" - }, "f413abdb830a": { "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received undefined\"\n }\n]", "savedHost": { @@ -679,6 +702,11 @@ }, "timedOut": false }, + "f4232b7673ea": { + "name": "journal-cleared", + "value": "pair-fixture-1", + "sent": 3 + }, "f4797c8e8b5e": { "name": "pairing.provisionRelay#1", "args": [ @@ -728,14 +756,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -749,11 +777,11 @@ }, "state": "f413abdb830a", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -767,11 +795,11 @@ }, "state": "ccde11a35347", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -785,11 +813,11 @@ }, "state": "e45af0b65cfb", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -803,11 +831,11 @@ }, "state": "d99ec237c33f", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -821,11 +849,11 @@ }, "state": "d99ec237c33f", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -839,11 +867,11 @@ }, "state": "4e5a56d00e5e", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -857,11 +885,11 @@ }, "state": "e625529b1cd8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -875,13 +903,13 @@ }, "state": "4a54bf2090c8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "540f41097a17", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "4663b0f6e580", + "f4232b7673ea", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -895,11 +923,11 @@ }, "state": "9dec5db5203d", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } }, @@ -913,11 +941,11 @@ }, "state": "d7f4c8d8decc", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "8eb785974a39", + "4cb6216cee5a" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-relay-status.json b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-relay-status.json index c09d7a75cc3..59d7214f130 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-relay-status.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-relay-status.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "14931cc23cd0e6d850f596c880014c606834898acbeee4abff3dc83a94b0c6c0", "platform": "darwin", @@ -13,14 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, - "0799d165f56e": { - "name": "journal-saved", - "value": "pair-fixture-1" - }, "088babc6e1f7": { "name": "status.get#2", "args": [ @@ -52,6 +44,16 @@ } } }, + "0b595cd54ac3": { + "name": "journal-saved", + "value": "pair-fixture-1", + "sent": 0 + }, + "12869cc488be": { + "name": "host-saved", + "value": "relay-host-0001x", + "sent": 4 + }, "18654b1dc666": { "name": "status.get#2", "args": [ @@ -85,12 +87,6 @@ } } }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, "1e5b32902af7": { "name": "status.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" @@ -203,9 +199,15 @@ } } }, - "4030a59932c1": { - "name": "journal-updated", - "value": "pair-fixture-1" + "477b001b0374": { + "name": "candidate-closed", + "value": "direct", + "sent": 4 + }, + "47dedea61355": { + "name": "journal-cleared", + "value": "pair-fixture-1", + "sent": 4 }, "53412dd89894": { "name": "pairing.provisionRelay#1", @@ -368,6 +370,13 @@ } } }, + "6b9f1bf73e55": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 4 + }, "6cb74a535419": { "name": "status.get#2", "args": [ @@ -504,18 +513,20 @@ } } }, - "b8549409f4a9": { - "name": "journal-cleared", - "value": "pair-fixture-1" - }, - "bc627d34e0d0": { - "name": "host-saved", - "value": "relay-host-0001x" + "b96f13a39e18": { + "name": "journal-updated", + "value": "pair-fixture-1", + "sent": 2 }, "c0c86e67c300": { "name": "status.get#2", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" }, + "ca7cb1785a59": { + "name": "candidate-closed", + "value": "relay", + "sent": 4 + }, "cf2b86e124ae": { "name": "status.get#2", "args": [ @@ -555,9 +566,10 @@ "hostId": "host-1" } }, - "f203320e31e9": { + "d433a326314e": { "name": "candidate-closed", - "value": "direct" + "value": "relay", + "sent": 2 } }, "recording": { @@ -573,14 +585,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -594,14 +606,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -615,14 +627,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -636,14 +648,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -657,14 +669,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -678,14 +690,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -699,14 +711,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -720,14 +732,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -741,14 +753,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -762,14 +774,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } }, @@ -783,14 +795,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-project-explicit-false-github.project.updateissuebyslug-1.json b/mobile/rpc-foundation/goldens/matrix-project-explicit-false-github.project.updateissuebyslug-1.json index f7eb4c1c16d..a1315db3612 100644 --- a/mobile/rpc-foundation/goldens/matrix-project-explicit-false-github.project.updateissuebyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-project-explicit-false-github.project.updateissuebyslug-1.json @@ -3,9 +3,9 @@ "family": "project-explicit-false", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "926f0d8c37a33d465bf3a04f056600cfc9f1669b1eca7e968aa1a1f797a74c61", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "064bc8399cbc": { "name": "github.project.updateIssueBySlug#1", @@ -57,9 +58,24 @@ } } }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" + "0b09506355e4": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "labels": [ + { + "color": "808080", + "name": "recorded" + } + ], + "number": 1, + "repository": "owner/repo" + }, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 }, "0c4dced3e005": { "error": "", @@ -75,6 +91,23 @@ "itemType": "ISSUE" } }, + "0ef970845cc7": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 1 + }, + "152580ec9e5a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 1 + }, + "1c2a67aac7e4": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, "1ddee45b4bc3": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -139,10 +172,6 @@ "itemType": "ISSUE" } }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, "29f9b15bed7a": { "error": "Cannot read properties of undefined (reading 'ok')", "mutating": false, @@ -171,14 +200,6 @@ "itemType": "ISSUE" } }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "32cc1f3ceec8": { "error": "inner refused", "mutating": false, @@ -193,12 +214,6 @@ "itemType": "ISSUE" } }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, "37124163eb76": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -250,6 +265,16 @@ "itemType": "ISSUE" } }, + "4c09a53c8150": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "4c53511aa5f7": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 1 + }, "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\"]}}}" @@ -387,10 +412,6 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, "6f0142de3930": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -430,10 +451,6 @@ } } }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" - }, "7a55b2ec205b": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -473,6 +490,11 @@ } } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, "7df10429e862": { "error": "", "mutating": false, @@ -492,6 +514,16 @@ "itemType": "ISSUE" } }, + "8237b3a567bf": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 1 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, "90cf28d0b84a": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -536,6 +568,11 @@ "status": "pending", "startedAt": 0 }, + "a7b76954b136": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, "c1213bb55edc": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -573,9 +610,28 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true + "c2cfc66d5157": { + "name": "githubProjectTable", + "value": { + "rows": [ + { + "content": { + "assignees": [], + "labels": [ + { + "color": "808080", + "name": "recorded" + } + ], + "number": 1, + "repository": "owner/repo" + }, + "id": "item-1", + "itemType": "ISSUE" + } + ] + }, + "sent": 1 }, "c679565dc881": { "error": "Failed to update GitHub item", @@ -591,31 +647,10 @@ "itemType": "ISSUE" } }, - "cb9738a42f12": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "labels": [ - { - "color": "808080", - "name": "recorded" - } - ], - "number": 1, - "repository": "owner/repo" - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, - "cbdef49cc723": { + "da0f06b573ab": { "name": "projectRowDetailError", - "value": "Failed to update GitHub item" - }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "value": "Failed to update GitHub item", + "sent": 1 }, "e5673036d45e": { "name": "github.project.updateIssueBySlug#1", @@ -656,6 +691,11 @@ "$rpc": "undefined" } }, + "eff724250cc7": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 1 + }, "f12e58847110": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -734,32 +774,6 @@ } } } - }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" - }, - "fa333bb6724e": { - "name": "githubProjectTable", - "value": { - "rows": [ - { - "content": { - "assignees": [], - "labels": [ - { - "color": "808080", - "name": "recorded" - } - ], - "number": 1, - "repository": "owner/repo" - }, - "id": "item-1", - "itemType": "ISSUE" - } - ] - } } }, "recording": { @@ -775,7 +789,7 @@ "submit": "9270aeb7d9c6" }, "state": "0c4dced3e005", - "effects": ["c2a271fc5d97"] + "effects": ["7b2465eedefe"] } }, { @@ -788,7 +802,7 @@ "submit": "eb79a9b3682a" }, "state": "0c4dced3e005", - "effects": ["c2a271fc5d97", "f871d643501c", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "4c53511aa5f7", "02839f22d2db"] } }, { @@ -802,11 +816,11 @@ }, "state": "7df10429e862", "effects": [ - "c2a271fc5d97", - "cb9738a42f12", - "fa333bb6724e", - "347cc433c473", - "2cd14f7121a5" + "7b2465eedefe", + "0b09506355e4", + "c2cfc66d5157", + "1c2a67aac7e4", + "02839f22d2db" ] } }, @@ -820,7 +834,7 @@ "submit": "eb79a9b3682a" }, "state": "29f9b15bed7a", - "effects": ["c2a271fc5d97", "2e2da1bbd7ed", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "4c09a53c8150", "02839f22d2db"] } }, { @@ -833,7 +847,7 @@ "submit": "eb79a9b3682a" }, "state": "204a5c5728c2", - "effects": ["c2a271fc5d97", "d330309fabb3", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "a7b76954b136", "02839f22d2db"] } }, { @@ -847,11 +861,11 @@ }, "state": "7df10429e862", "effects": [ - "c2a271fc5d97", - "cb9738a42f12", - "fa333bb6724e", - "347cc433c473", - "2cd14f7121a5" + "7b2465eedefe", + "0b09506355e4", + "c2cfc66d5157", + "1c2a67aac7e4", + "02839f22d2db" ] } }, @@ -865,7 +879,7 @@ "submit": "eb79a9b3682a" }, "state": "c679565dc881", - "effects": ["c2a271fc5d97", "cbdef49cc723", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "da0f06b573ab", "02839f22d2db"] } }, { @@ -878,7 +892,7 @@ "submit": "eb79a9b3682a" }, "state": "32cc1f3ceec8", - "effects": ["c2a271fc5d97", "6fe1c7d73e4d", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "eff724250cc7", "02839f22d2db"] } }, { @@ -891,7 +905,7 @@ "submit": "eb79a9b3682a" }, "state": "2b3c1b95331e", - "effects": ["c2a271fc5d97", "27f506c59cc7", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "0ef970845cc7", "02839f22d2db"] } }, { @@ -904,7 +918,7 @@ "submit": "eb79a9b3682a" }, "state": "3f996c0d0403", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } }, { @@ -917,7 +931,7 @@ "submit": "eb79a9b3682a" }, "state": "22021a77bba3", - "effects": ["c2a271fc5d97", "6b6431f01d00", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "152580ec9e5a", "02839f22d2db"] } }, { @@ -930,7 +944,7 @@ "submit": "eb79a9b3682a" }, "state": "5ea692508d69", - "effects": ["c2a271fc5d97", "0924615699bf", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "8237b3a567bf", "02839f22d2db"] } }, { @@ -943,7 +957,7 @@ "submit": "eb79a9b3682a" }, "state": "3f996c0d0403", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-1.json b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-1.json index e8dad3f3a34..205f28ffc47 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "042d0f9ef57e2a18bf661b79f2f8f92a12125dbc0fc65dd8605f8cd6f7059d10", "platform": "darwin", @@ -220,16 +220,6 @@ "pending": true, "version": 3 }, - "6fc6c751d8be": { - "name": "bundle-written", - "value": { - "grace": { - "$rpc": "null" - }, - "pending": true, - "version": 3 - } - }, "7d18aba92a1d": { "name": "pairing.getEndpoints#1", "args": [ @@ -341,6 +331,17 @@ } } }, + "85b38f117802": { + "name": "bundle-written", + "value": { + "grace": { + "$rpc": "null" + }, + "pending": true, + "version": 3 + }, + "sent": 0 + }, "8a952a24a43b": { "outcome": "failed: ", "pending": true, @@ -420,16 +421,6 @@ "isRpcDeliveryUnknown": true } }, - "bcef5f2116bb": { - "name": "bundle-written", - "value": { - "grace": { - "$rpc": "null" - }, - "pending": false, - "version": 4 - } - }, "c343ba927b6d": { "name": "pairing.getEndpoints#1", "args": [ @@ -592,6 +583,17 @@ } } }, + "eee85d194a6b": { + "name": "bundle-written", + "value": { + "grace": { + "$rpc": "null" + }, + "pending": false, + "version": 4 + }, + "sent": 3 + }, "f2c843a9b548": { "status": "fulfilled", "startedAt": 0, @@ -701,7 +703,7 @@ "rotate": "f2c843a9b548" }, "state": "fdf764b375ae", - "effects": ["6fc6c751d8be", "bcef5f2116bb"] + "effects": ["85b38f117802", "eee85d194a6b"] } }, { @@ -713,7 +715,7 @@ "rotate": "8cfbee11e6cb" }, "state": "1ca1f62052cd", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -725,7 +727,7 @@ "rotate": "06dee54a3689" }, "state": "1174361fa42c", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -737,7 +739,7 @@ "rotate": "f4f341e9c757" }, "state": "3d6748b5e5d2", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -749,7 +751,7 @@ "rotate": "d6e7487f3275" }, "state": "9ca87aa167ba", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -761,7 +763,7 @@ "rotate": "d6e7487f3275" }, "state": "9ca87aa167ba", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -773,7 +775,7 @@ "rotate": "4e3b57d795cb" }, "state": "289c8fa743e7", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -785,7 +787,7 @@ "rotate": "d56bfdbce702" }, "state": "a70a2b66080c", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -797,7 +799,7 @@ "rotate": "f624ac81d963" }, "state": "6cfdd8ca783a", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -809,7 +811,7 @@ "rotate": "a947768bc0ed" }, "state": "a33e069666af", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -821,7 +823,7 @@ "rotate": "c7584e82c72f" }, "state": "8a952a24a43b", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-2.json b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-2.json index d95bf54a1ae..03ab6f0b36e 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-2.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-2.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "530aa1f2ddc6fce10d485c8a160ae3e695250b2e80e1e7fc3e8dacb9f5117347", "platform": "darwin", @@ -291,16 +291,6 @@ "pending": true, "version": 3 }, - "6fc6c751d8be": { - "name": "bundle-written", - "value": { - "grace": { - "$rpc": "null" - }, - "pending": true, - "version": 3 - } - }, "8336e309abb8": { "name": "pairing.getEndpoints#1", "args": [ @@ -347,6 +337,17 @@ } } }, + "85b38f117802": { + "name": "bundle-written", + "value": { + "grace": { + "$rpc": "null" + }, + "pending": true, + "version": 3 + }, + "sent": 0 + }, "8a952a24a43b": { "outcome": "failed: ", "pending": true, @@ -460,16 +461,6 @@ } } }, - "bcef5f2116bb": { - "name": "bundle-written", - "value": { - "grace": { - "$rpc": "null" - }, - "pending": false, - "version": 4 - } - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -628,6 +619,17 @@ } } }, + "eee85d194a6b": { + "name": "bundle-written", + "value": { + "grace": { + "$rpc": "null" + }, + "pending": false, + "version": 4 + }, + "sent": 3 + }, "f2c843a9b548": { "status": "fulfilled", "startedAt": 0, @@ -701,7 +703,7 @@ "rotate": "f2c843a9b548" }, "state": "fdf764b375ae", - "effects": ["6fc6c751d8be", "bcef5f2116bb"] + "effects": ["85b38f117802", "eee85d194a6b"] } }, { @@ -713,7 +715,7 @@ "rotate": "8cfbee11e6cb" }, "state": "1ca1f62052cd", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -725,7 +727,7 @@ "rotate": "06dee54a3689" }, "state": "1174361fa42c", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -737,7 +739,7 @@ "rotate": "f4f341e9c757" }, "state": "3d6748b5e5d2", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -749,7 +751,7 @@ "rotate": "d6e7487f3275" }, "state": "9ca87aa167ba", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -761,7 +763,7 @@ "rotate": "d6e7487f3275" }, "state": "9ca87aa167ba", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -773,7 +775,7 @@ "rotate": "4e3b57d795cb" }, "state": "289c8fa743e7", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -785,7 +787,7 @@ "rotate": "d56bfdbce702" }, "state": "a70a2b66080c", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -797,7 +799,7 @@ "rotate": "f624ac81d963" }, "state": "6cfdd8ca783a", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -809,7 +811,7 @@ "rotate": "a947768bc0ed" }, "state": "a33e069666af", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -821,7 +823,7 @@ "rotate": "c7584e82c72f" }, "state": "8a952a24a43b", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.provisionrelay-1.json b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.provisionrelay-1.json index 6c844c6dccf..8617d686196 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.provisionrelay-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.provisionrelay-1.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "18b1855f354c23cd5bb7af0db698f0a23d28208c3c6b7347f667bf6cd3ed612f", "platform": "darwin", @@ -199,16 +199,6 @@ "pending": true, "version": 3 }, - "6fc6c751d8be": { - "name": "bundle-written", - "value": { - "grace": { - "$rpc": "null" - }, - "pending": true, - "version": 3 - } - }, "70f7b5793181": { "name": "pairing.provisionRelay#1", "args": [ @@ -362,6 +352,17 @@ } } }, + "85b38f117802": { + "name": "bundle-written", + "value": { + "grace": { + "$rpc": "null" + }, + "pending": true, + "version": 3 + }, + "sent": 0 + }, "8a952a24a43b": { "outcome": "failed: ", "pending": true, @@ -510,16 +511,6 @@ } } }, - "bcef5f2116bb": { - "name": "bundle-written", - "value": { - "grace": { - "$rpc": "null" - }, - "pending": false, - "version": 4 - } - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -607,6 +598,17 @@ } } }, + "eee85d194a6b": { + "name": "bundle-written", + "value": { + "grace": { + "$rpc": "null" + }, + "pending": false, + "version": 4 + }, + "sent": 3 + }, "f19ff6c94d68": { "status": "rejected", "startedAt": 0, @@ -721,7 +723,7 @@ "rotate": "f2c843a9b548" }, "state": "fdf764b375ae", - "effects": ["6fc6c751d8be", "bcef5f2116bb"] + "effects": ["85b38f117802", "eee85d194a6b"] } }, { @@ -733,7 +735,7 @@ "rotate": "8cfbee11e6cb" }, "state": "1ca1f62052cd", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -745,7 +747,7 @@ "rotate": "06dee54a3689" }, "state": "1174361fa42c", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -757,7 +759,7 @@ "rotate": "f19ff6c94d68" }, "state": "f46324b14756", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -769,7 +771,7 @@ "rotate": "5099f8914209" }, "state": "1748121fa6cb", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -781,7 +783,7 @@ "rotate": "5099f8914209" }, "state": "1748121fa6cb", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -793,7 +795,7 @@ "rotate": "4e3b57d795cb" }, "state": "289c8fa743e7", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -805,7 +807,7 @@ "rotate": "d56bfdbce702" }, "state": "a70a2b66080c", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -817,7 +819,7 @@ "rotate": "f624ac81d963" }, "state": "6cfdd8ca783a", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -829,7 +831,7 @@ "rotate": "a947768bc0ed" }, "state": "a33e069666af", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } }, { @@ -841,7 +843,7 @@ "rotate": "c7584e82c72f" }, "state": "8a952a24a43b", - "effects": ["6fc6c751d8be"] + "effects": ["85b38f117802"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-1.json b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-1.json index c5fc5b9e8c9..6daa1eb8239 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "03355bc2696d02fed125d9f0e24c6c26c8df2f3709c1c5f4412aaf9317cd41d4", "platform": "darwin", @@ -84,20 +84,15 @@ "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, - "25b377db6629": { - "name": "host-saved", - "value": "host-1" - }, "2b3f0d69e5c0": { "journal": "present", "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received null\"\n }\n]" }, + "4683b84a57a2": { + "name": "host-saved", + "value": "host-1", + "sent": 3 + }, "4e3b57d795cb": { "status": "rejected", "startedAt": 0, @@ -207,6 +202,11 @@ "name": "pairing.getEndpoints#2", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" }, + "7d023da12fdb": { + "name": "journal-cleared", + "value": "upgrade", + "sent": 3 + }, "81230fab3114": { "name": "pairing.getEndpoints#1", "args": [ @@ -285,6 +285,11 @@ "isRpcDeliveryUnknown": false } }, + "8ea887e0fc46": { + "name": "journal-cleared", + "value": "upgrade", + "sent": 1 + }, "8eb22646fb28": { "journal": "present", "outcome": "failed: refused: " @@ -335,10 +340,6 @@ }, "outcome": "relay-host-0001x" }, - "a2c193508948": { - "name": "journal-cleared", - "value": "upgrade" - }, "a3865c87e54b": { "name": "pairing.provisionRelay#1", "args": [ @@ -395,6 +396,13 @@ "journal": "present", "outcome": "failed: transport failure" }, + "b991b2c7609f": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 3 + }, "ba95b28e3a94": { "name": "pairing.getEndpoints#1", "args": [ @@ -698,7 +706,7 @@ "upgrade": "590b3311b0c4" }, "state": "980bbba0b617", - "effects": ["1da0bf924e75", "25b377db6629", "a2c193508948"] + "effects": ["b991b2c7609f", "4683b84a57a2", "7d023da12fdb"] } }, { @@ -794,7 +802,7 @@ "upgrade": "ee20a1dc39e7" }, "state": "6c43da669636", - "effects": ["a2c193508948"] + "effects": ["8ea887e0fc46"] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-2.json b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-2.json index 53d07972794..4405903c42c 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-2.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-2.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "d0c4dd34645308f30c0999ea74c16b53f20e9183832fdf016c3dc21434744b05", "platform": "darwin", @@ -117,16 +117,6 @@ "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, - "25b377db6629": { - "name": "host-saved", - "value": "host-1" - }, "2b3f0d69e5c0": { "journal": "present", "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received null\"\n }\n]" @@ -175,6 +165,11 @@ "isRpcDeliveryUnknown": false } }, + "4683b84a57a2": { + "name": "host-saved", + "value": "host-1", + "sent": 3 + }, "47728c6fb437": { "name": "pairing.getEndpoints#2", "args": [ @@ -343,6 +338,11 @@ "name": "pairing.getEndpoints#2", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" }, + "7d023da12fdb": { + "name": "journal-cleared", + "value": "upgrade", + "sent": 3 + }, "83501517f8f9": { "name": "pairing.getEndpoints#2", "args": [ @@ -436,10 +436,6 @@ }, "outcome": "relay-host-0001x" }, - "a2c193508948": { - "name": "journal-cleared", - "value": "upgrade" - }, "a3865c87e54b": { "name": "pairing.provisionRelay#1", "args": [ @@ -500,6 +496,13 @@ "journal": "present", "outcome": "failed: relay endpoint reconciliation became unavailable" }, + "b991b2c7609f": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 3 + }, "ba95b28e3a94": { "name": "pairing.getEndpoints#1", "args": [ @@ -698,7 +701,7 @@ "upgrade": "590b3311b0c4" }, "state": "980bbba0b617", - "effects": ["1da0bf924e75", "25b377db6629", "a2c193508948"] + "effects": ["b991b2c7609f", "4683b84a57a2", "7d023da12fdb"] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.provisionrelay-1.json b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.provisionrelay-1.json index 55d017a7e44..0e9c626ba85 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.provisionrelay-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.provisionrelay-1.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "0fe163f405373adbb1913dddd79d6d596bf88d69fc27c824ba5a2cd4c1406446", "platform": "darwin", @@ -154,16 +154,6 @@ "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, - "25b377db6629": { - "name": "host-saved", - "value": "host-1" - }, "2a6e0fd0f08e": { "name": "pairing.provisionRelay#1", "args": [ @@ -242,6 +232,11 @@ "journal": "present", "outcome": "failed: [\n {\n \"code\": \"invalid_value\",\n \"values\": [\n 1\n ],\n \"path\": [\n \"v\"\n ],\n \"message\": \"Invalid input: expected 1\"\n },\n {\n \"expected\": \"string\",\n \"code\": \"invalid_type\",\n \"path\": [\n \"reqId\"\n ],\n \"message\": \"Invalid input: expected string, received undefined\"\n },\n {\n \"code\": \"invalid_value\",\n \"values\": [\n \"relay-basis\",\n \"authenticated-direct\"\n ],\n \"path\": [\n \"authorizationMode\"\n ],\n \"message\": \"Invalid option: expected one of \\\"relay-basis\\\"|\\\"authenticated-direct\\\"\"\n },\n {\n \"expected\": \"number\",\n \"code\": \"invalid_type\",\n \"path\": [\n \"currentVersion\"\n ],\n \"message\": \"Invalid input: expected number, received undefined\"\n },\n {\n \"expected\": \"number\",\n \"code\": \"invalid_type\",\n \"path\": [\n \"resumeExpiresAt\"\n ],\n \"message\": \"Invalid input: expected number, received undefined\"\n },\n {\n \"code\": \"unrecognized_keys\",\n \"keys\": [\n \"ok\",\n \"error\"\n ],\n \"path\": [],\n \"message\": \"Unrecognized keys: \\\"ok\\\", \\\"error\\\"\"\n }\n]" }, + "4683b84a57a2": { + "name": "host-saved", + "value": "host-1", + "sent": 3 + }, "4e3b57d795cb": { "status": "rejected", "startedAt": 0, @@ -323,6 +318,11 @@ "name": "pairing.getEndpoints#2", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" }, + "7d023da12fdb": { + "name": "journal-cleared", + "value": "upgrade", + "sent": 3 + }, "85d4f26647a1": { "name": "pairing.provisionRelay#1", "args": [ @@ -439,6 +439,11 @@ } } }, + "92bfc56d85f4": { + "name": "journal-cleared", + "value": "upgrade", + "sent": 2 + }, "952828fa571a": { "journal": "present", "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received undefined\"\n }\n]" @@ -486,10 +491,6 @@ } } }, - "a2c193508948": { - "name": "journal-cleared", - "value": "upgrade" - }, "a3865c87e54b": { "name": "pairing.provisionRelay#1", "args": [ @@ -542,6 +543,13 @@ "journal": "present", "outcome": "failed: transport failure" }, + "b991b2c7609f": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 3 + }, "ba95b28e3a94": { "name": "pairing.getEndpoints#1", "args": [ @@ -708,7 +716,7 @@ "upgrade": "590b3311b0c4" }, "state": "980bbba0b617", - "effects": ["1da0bf924e75", "25b377db6629", "a2c193508948"] + "effects": ["b991b2c7609f", "4683b84a57a2", "7d023da12fdb"] } }, { @@ -804,7 +812,7 @@ "upgrade": "ee20a1dc39e7" }, "state": "6c43da669636", - "effects": ["a2c193508948"] + "effects": ["92bfc56d85f4"] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-relay.pairing-recovery-pairing.getendpoints-1.json b/mobile/rpc-foundation/goldens/matrix-relay.pairing-recovery-pairing.getendpoints-1.json index 66226412a7c..fde00e8e7f6 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.pairing-recovery-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.pairing-recovery-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "relay.pairing-recovery", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "5aaa104a652d4f10cd48ab742112cf59fca22f52bbf85ee3716505a9642fbe37", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" + "0080ab426cd1": { + "name": "host-saved", + "value": "host-1", + "sent": 1 }, "10e679344b45": { "name": "pairing.getEndpoints#1", @@ -52,20 +53,6 @@ } } }, - "178d5cbb5880": { - "name": "journal-updated", - "value": "relay-basis" - }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, - "25b377db6629": { - "name": "host-saved", - "value": "host-1" - }, "2eeacc921b96": { "name": "pairing.getEndpoints#2", "args": [ @@ -128,10 +115,6 @@ } } }, - "42bd1e4b1fec": { - "name": "journal-cleared", - "value": "recovery" - }, "4b671f98d808": { "name": "pairing.getEndpoints#1", "args": [ @@ -207,6 +190,11 @@ "$rpc": "null" } }, + "6873c5ee509e": { + "name": "journal-cleared", + "value": "recovery", + "sent": 1 + }, "7a3e4e5413b5": { "outcome": "recovered", "winner": { @@ -355,6 +343,11 @@ } } }, + "be67e12f6925": { + "name": "candidate-closed", + "value": "relay", + "sent": 1 + }, "c02af6dd81bf": { "name": "pairing.getEndpoints#1", "args": [ @@ -474,6 +467,23 @@ "settledAt": 0, "value": "deferred" }, + "cf1bfb36f84e": { + "name": "journal-updated", + "value": "relay-basis", + "sent": 1 + }, + "d433a326314e": { + "name": "candidate-closed", + "value": "relay", + "sent": 2 + }, + "e0d0c16b34cc": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 1 + }, "f0723ea3ab16": { "status": "fulfilled", "startedAt": 0, @@ -535,11 +545,11 @@ }, "state": "7a3e4e5413b5", "effects": [ - "178d5cbb5880", - "1da0bf924e75", - "25b377db6629", - "42bd1e4b1fec", - "0193ae4dbb38" + "cf1bfb36f84e", + "e0d0c16b34cc", + "0080ab426cd1", + "6873c5ee509e", + "be67e12f6925" ] } }, @@ -552,7 +562,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -564,7 +574,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -576,7 +586,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -588,7 +598,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -600,7 +610,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -612,7 +622,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -624,7 +634,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -636,7 +646,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -648,7 +658,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -660,7 +670,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -672,7 +682,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -684,7 +694,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -696,7 +706,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -708,7 +718,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -720,7 +730,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -732,7 +742,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -744,7 +754,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -756,7 +766,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } }, { @@ -768,7 +778,7 @@ "recover": "9270aeb7d9c6" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38"] + "effects": ["be67e12f6925"] } }, { @@ -780,7 +790,7 @@ "recover": "c8a7c6e1a485" }, "state": "54c5309cac70", - "effects": ["0193ae4dbb38", "0193ae4dbb38"] + "effects": ["be67e12f6925", "d433a326314e"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-session.content-create-files.createfile-1.json b/mobile/rpc-foundation/goldens/matrix-session.content-create-files.createfile-1.json new file mode 100644 index 00000000000..d153caf18b6 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.content-create-files.createfile-1.json @@ -0,0 +1,745 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "06bf92360e6985770c08a9e53be0f55b6e8ff120d4e6411dacc22e88d08cef32", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "006bbcab150a": { + "name": "toast", + "value": { + "message": "" + }, + "sent": 3 + }, + "085ee12ac483": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 4 + }, + "134529524560": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "134e6545bfe5": { + "createError": "transport failure", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "1e5b32902af7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "37cca55d53d5": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" + }, + "4267c22fd1f9": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "created": true + } + } + } + }, + "57c499bb588a": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "6371ca02b18e": { + "createError": "outer refused", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "6d1fe7f1befc": { + "name": "toast", + "value": { + "message": "outer refused" + }, + "sent": 3 + }, + "6dbcdf95b6b6": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true + } + } + }, + "71b67af3c605": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-3", + "ok": false + } + } + }, + "77c6fe7dd40b": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "858443742ca1": { + "createError": "Failed to create markdown note", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "879466dc0533": { + "name": "toast", + "value": { + "message": "Unknown method" + }, + "sent": 3 + }, + "8bdc2aec524d": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + } + }, + "9199aee60486": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "9692063e7d70": { + "name": "toast", + "value": { + "message": "Failed to create markdown note" + }, + "sent": 3 + }, + "97472d30cdaa": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "a56852d6836b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + } + }, + "a5f927c1b077": { + "name": "toast", + "value": { + "message": "transport failure" + }, + "sent": 3 + }, + "b48dafba8627": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-3", + "ok": false + } + } + }, + "b8e28a0d1137": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "d38c135a5752": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "d3f9329bc046": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-3", + "ok": false + } + } + }, + "d574cdcd4bef": { + "createError": "", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "de7d988ecdc7": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "e344f453f8a0": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + }, + "e6b6cf30c6ee": { + "createError": "Unknown method", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-session.content-create-files.createfile-1", + "checkpoints": [ + { + "id": "session-create-markdown-note.normal:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.result-absent:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "6dbcdf95b6b6", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.result-null:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "77c6fe7dd40b", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.inner-ok-missing:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "97472d30cdaa", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.inner-false-string-error:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "b8e28a0d1137", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.inner-false-object-error:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "134529524560", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.outer-refused:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "71b67af3c605"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "6371ca02b18e", + "effects": ["6d1fe7f1befc"] + } + }, + { + "id": "session-create-markdown-note.outer-refused-no-message:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "d3f9329bc046"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "858443742ca1", + "effects": ["9692063e7d70"] + } + }, + { + "id": "session-create-markdown-note.method-not-found:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "b48dafba8627"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "e6b6cf30c6ee", + "effects": ["879466dc0533"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "57c499bb588a"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "134e6545bfe5", + "effects": ["a5f927c1b077"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection-no-message:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "de7d988ecdc7"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["006bbcab150a"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.content-create-files.open-1.json b/mobile/rpc-foundation/goldens/matrix-session.content-create-files.open-1.json new file mode 100644 index 00000000000..55db656b887 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.content-create-files.open-1.json @@ -0,0 +1,720 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "17f87233352ff8e452f061f4558d58b44643efe49313162d4aad140343a1ead9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "085ee12ac483": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 4 + }, + "0c347b60646f": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "134e6545bfe5": { + "createError": "transport failure", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "1992078b76bc": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "1e5b32902af7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "22f35b5356ec": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-4", + "ok": false + } + } + }, + "307d0ae6d2d4": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "37cca55d53d5": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" + }, + "388514fefdfe": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true + } + } + }, + "3fd5c61b35b3": { + "name": "toast", + "value": { + "message": "transport failure" + }, + "sent": 4 + }, + "4267c22fd1f9": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "created": true + } + } + } + }, + "58c8c82aa603": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-4", + "ok": false + } + } + }, + "6371ca02b18e": { + "createError": "outer refused", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "6d38c61f400a": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "76cf096ee3b3": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "8bdc2aec524d": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + } + }, + "9199aee60486": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "95dfbae14c1c": { + "name": "toast", + "value": { + "message": "Unknown method" + }, + "sent": 4 + }, + "9b692e87f70b": { + "name": "toast", + "value": { + "message": "outer refused" + }, + "sent": 4 + }, + "a565992e03ed": { + "name": "toast", + "value": { + "message": "" + }, + "sent": 4 + }, + "a56852d6836b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + } + }, + "d38c135a5752": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "d574cdcd4bef": { + "createError": "", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "e344f453f8a0": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + }, + "e6b6cf30c6ee": { + "createError": "Unknown method", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ee24e2e55136": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "fd7e611b3d86": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-4", + "ok": false + } + } + } + }, + "recording": { + "scenario": "matrix-session.content-create-files.open-1", + "checkpoints": [ + { + "id": "session-create-markdown-note.normal:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.result-absent:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "388514fefdfe"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.result-null:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "ee24e2e55136"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.inner-ok-missing:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "0c347b60646f"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.inner-false-string-error:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "6d38c61f400a"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.inner-false-object-error:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "307d0ae6d2d4"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.outer-refused:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "58c8c82aa603"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "6371ca02b18e", + "effects": ["9b692e87f70b"] + } + }, + { + "id": "session-create-markdown-note.outer-refused-no-message:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "22f35b5356ec"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["a565992e03ed"] + } + }, + { + "id": "session-create-markdown-note.method-not-found:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "fd7e611b3d86"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "e6b6cf30c6ee", + "effects": ["95dfbae14c1c"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "76cf096ee3b3"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "134e6545bfe5", + "effects": ["3fd5c61b35b3"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection-no-message:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "1992078b76bc"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["a565992e03ed"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.content-create-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-session.content-create-status.get-1.json new file mode 100644 index 00000000000..564285af2e5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.content-create-status.get-1.json @@ -0,0 +1,755 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "5100bd674509d1d83b1e2594eee036af21ea14b12226185b44070555d1d43060", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "085ee12ac483": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 4 + }, + "0b7588536afb": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "0d163aa89099": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "134e6545bfe5": { + "createError": "transport failure", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "1e5b32902af7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "1fe9fbe7d375": { + "createError": "Cannot read properties of undefined (reading 'capabilities')", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "37cca55d53d5": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" + }, + "39cfe991f857": { + "name": "toast", + "value": { + "message": "Cannot read properties of null (reading 'capabilities')" + }, + "sent": 1 + }, + "4267c22fd1f9": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "created": true + } + } + } + }, + "48e2bdc38094": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "4b0fb2833d76": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "5216935e6a30": { + "name": "toast", + "value": { + "message": "Cannot read properties of undefined (reading 'capabilities')" + }, + "sent": 1 + }, + "573973431b35": { + "name": "toast", + "value": { + "message": "outer refused" + }, + "sent": 1 + }, + "6371ca02b18e": { + "createError": "outer refused", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "67e91d4ad9ea": { + "name": "toast", + "value": { + "message": "" + }, + "sent": 1 + }, + "74a9cdb3c227": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "753f8f2aac3b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7799ca596f0c": { + "createError": "Remote file changes require a newer Orca server. Update the HUB and try again.", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "8bdc2aec524d": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + } + }, + "90817e8c47cb": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "9199aee60486": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "a56852d6836b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + } + }, + "a7bdf95d4886": { + "name": "toast", + "value": { + "message": "Remote file changes require a newer Orca server. Update the HUB and try again." + }, + "sent": 1 + }, + "a8d9f204690e": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "c09254b8373a": { + "name": "toast", + "value": { + "message": "Unknown method" + }, + "sent": 1 + }, + "d38c135a5752": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "d574cdcd4bef": { + "createError": "", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "e1f916d49745": { + "createError": "Cannot read properties of null (reading 'capabilities')", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "e344f453f8a0": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + }, + "e6b6cf30c6ee": { + "createError": "Unknown method", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ef64e4eaa635": { + "name": "toast", + "value": { + "message": "transport failure" + }, + "sent": 1 + }, + "f2a2b92aa73c": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "f68f9c806fb2": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + } + }, + "recording": { + "scenario": "matrix-session.content-create-status.get-1", + "checkpoints": [ + { + "id": "session-create-markdown-note.normal:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.result-absent:created", + "observation": { + "sender": ["90817e8c47cb"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "1fe9fbe7d375", + "effects": ["5216935e6a30"] + } + }, + { + "id": "session-create-markdown-note.result-null:created", + "observation": { + "sender": ["0d163aa89099"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "e1f916d49745", + "effects": ["39cfe991f857"] + } + }, + { + "id": "session-create-markdown-note.inner-ok-missing:created", + "observation": { + "sender": ["48e2bdc38094"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "7799ca596f0c", + "effects": ["a7bdf95d4886"] + } + }, + { + "id": "session-create-markdown-note.inner-false-string-error:created", + "observation": { + "sender": ["f2a2b92aa73c"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "7799ca596f0c", + "effects": ["a7bdf95d4886"] + } + }, + { + "id": "session-create-markdown-note.inner-false-object-error:created", + "observation": { + "sender": ["f68f9c806fb2"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "7799ca596f0c", + "effects": ["a7bdf95d4886"] + } + }, + { + "id": "session-create-markdown-note.outer-refused:created", + "observation": { + "sender": ["0b7588536afb"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "6371ca02b18e", + "effects": ["573973431b35"] + } + }, + { + "id": "session-create-markdown-note.outer-refused-no-message:created", + "observation": { + "sender": ["a8d9f204690e"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["67e91d4ad9ea"] + } + }, + { + "id": "session-create-markdown-note.method-not-found:created", + "observation": { + "sender": ["753f8f2aac3b"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "e6b6cf30c6ee", + "effects": ["c09254b8373a"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection:created", + "observation": { + "sender": ["4b0fb2833d76"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "134e6545bfe5", + "effects": ["ef64e4eaa635"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection-no-message:created", + "observation": { + "sender": ["74a9cdb3c227"], + "payloads": ["1e5b32902af7"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["67e91d4ad9ea"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.content-create-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-session.content-create-worktree.show-1.json new file mode 100644 index 00000000000..50f1d132ae9 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.content-create-worktree.show-1.json @@ -0,0 +1,755 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "b9ca49e401df8710924f200f92a071bac2e120ed43df7be2cfb8a325ab1cd9cb", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "04daff40433c": { + "name": "toast", + "value": { + "message": "Cannot read properties of undefined (reading 'worktree')" + }, + "sent": 2 + }, + "06cbb9a1b167": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "085ee12ac483": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 4 + }, + "0b4d42954d52": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "0f19e340663d": { + "createError": "Couldn't verify the SSH connection. Reconnect the host and try again.", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "134e6545bfe5": { + "createError": "transport failure", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "18c7d85a52ed": { + "name": "toast", + "value": { + "message": "outer refused" + }, + "sent": 2 + }, + "1e5b32902af7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "2fa02ab5402f": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "37cca55d53d5": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" + }, + "39a0b3c0e319": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "4267c22fd1f9": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "created": true + } + } + } + }, + "478f94a2bcc8": { + "name": "toast", + "value": { + "message": "" + }, + "sent": 2 + }, + "533d020d6123": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "5ba3f7c5f6d9": { + "name": "toast", + "value": { + "message": "transport failure" + }, + "sent": 2 + }, + "6371ca02b18e": { + "createError": "outer refused", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "7822fc8c989d": { + "createError": "Cannot read properties of undefined (reading 'worktree')", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "8845bcbdc51b": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "8bdc2aec524d": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + } + }, + "9199aee60486": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "a139e9a165cd": { + "name": "toast", + "value": { + "message": "Cannot read properties of null (reading 'worktree')" + }, + "sent": 2 + }, + "a232b2091bac": { + "name": "toast", + "value": { + "message": "Couldn't verify the SSH connection. Reconnect the host and try again." + }, + "sent": 2 + }, + "a56852d6836b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + } + }, + "abce4dddd0aa": { + "name": "toast", + "value": { + "message": "Unknown method" + }, + "sent": 2 + }, + "c6aa5c0a7bd1": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "cff8b7a5e7ce": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "d38c135a5752": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "d574cdcd4bef": { + "createError": "", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "d7217a17cb5c": { + "createError": "Cannot read properties of null (reading 'worktree')", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "e344f453f8a0": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + }, + "e6b6cf30c6ee": { + "createError": "Unknown method", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "fc05e7103b6c": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "fd50303f30ce": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.content-create-worktree.show-1", + "checkpoints": [ + { + "id": "session-create-markdown-note.normal:created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + }, + { + "id": "session-create-markdown-note.result-absent:created", + "observation": { + "sender": ["a56852d6836b", "533d020d6123"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "7822fc8c989d", + "effects": ["04daff40433c"] + } + }, + { + "id": "session-create-markdown-note.result-null:created", + "observation": { + "sender": ["a56852d6836b", "39a0b3c0e319"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d7217a17cb5c", + "effects": ["a139e9a165cd"] + } + }, + { + "id": "session-create-markdown-note.inner-ok-missing:created", + "observation": { + "sender": ["a56852d6836b", "06cbb9a1b167"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "0f19e340663d", + "effects": ["a232b2091bac"] + } + }, + { + "id": "session-create-markdown-note.inner-false-string-error:created", + "observation": { + "sender": ["a56852d6836b", "8845bcbdc51b"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "0f19e340663d", + "effects": ["a232b2091bac"] + } + }, + { + "id": "session-create-markdown-note.inner-false-object-error:created", + "observation": { + "sender": ["a56852d6836b", "2fa02ab5402f"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "0f19e340663d", + "effects": ["a232b2091bac"] + } + }, + { + "id": "session-create-markdown-note.outer-refused:created", + "observation": { + "sender": ["a56852d6836b", "cff8b7a5e7ce"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "6371ca02b18e", + "effects": ["18c7d85a52ed"] + } + }, + { + "id": "session-create-markdown-note.outer-refused-no-message:created", + "observation": { + "sender": ["a56852d6836b", "0b4d42954d52"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["478f94a2bcc8"] + } + }, + { + "id": "session-create-markdown-note.method-not-found:created", + "observation": { + "sender": ["a56852d6836b", "c6aa5c0a7bd1"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "e6b6cf30c6ee", + "effects": ["abce4dddd0aa"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection:created", + "observation": { + "sender": ["a56852d6836b", "fd50303f30ce"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "134e6545bfe5", + "effects": ["5ba3f7c5f6d9"] + } + }, + { + "id": "session-create-markdown-note.transport-rejection-no-message:created", + "observation": { + "sender": ["a56852d6836b", "fc05e7103b6c"], + "payloads": ["1e5b32902af7", "9199aee60486"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["478f94a2bcc8"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.diff-notes-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-session.diff-notes-worktree.show-1.json new file mode 100644 index 00000000000..db68b5c931a --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-notes-worktree.show-1.json @@ -0,0 +1,622 @@ +{ + "operation": "session.diff-notes", + "family": "session.diff-notes", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "e54684bad13aa8b8b4794e06351c709053b1c4c6d87776ecdbb1dd1b4406a694", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "03647b94e7bf": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "061e626847d1": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "2aee81f6fe31": { + "name": "unhandled-rejection", + "value": { + "category": "TypeError", + "isRpcDeliveryUnknown": false, + "message": "Cannot read properties of undefined (reading 'worktree')" + }, + "sent": 1 + }, + "39356bf6300e": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "3c47b5f5f31b": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "432aeb4f1709": { + "busy": false, + "diffComments": [], + "pendingDelivery": { + "$rpc": "null" + } + }, + "4b75b3dd3b11": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "787e19388f6a": { + "name": "unhandled-rejection", + "value": { + "category": "Error", + "isRpcDeliveryUnknown": true, + "message": "" + }, + "sent": 1 + }, + "789b682a36a9": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "877275dff6d5": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "aca7af380492": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "worktree": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "worktreeId": "workspace-1" + } + ] + } + } + } + } + }, + "b80f8c3fa354": { + "name": "unhandled-rejection", + "value": { + "category": "Error", + "isRpcDeliveryUnknown": true, + "message": "transport failure" + }, + "sent": 1 + }, + "bcfad643c288": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "ccfb4b1d3cd2": { + "name": "unhandled-rejection", + "value": { + "category": "TypeError", + "isRpcDeliveryUnknown": false, + "message": "Cannot read properties of null (reading 'worktree')" + }, + "sent": 1 + }, + "d122d6f393f0": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "e28b1ad79121": { + "busy": false, + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "diffIdentity": { + "$rpc": "undefined" + }, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "oldPath": { + "$rpc": "undefined" + }, + "scope": { + "$rpc": "undefined" + }, + "selectedText": { + "$rpc": "undefined" + }, + "sentAt": { + "$rpc": "undefined" + }, + "side": "modified", + "source": "diff", + "startLine": { + "$rpc": "undefined" + }, + "updatedAt": { + "$rpc": "undefined" + }, + "worktreeId": "workspace-1" + } + ], + "pendingDelivery": { + "$rpc": "null" + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ebacf8186f13": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "ee0229ca88e4": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "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-session.diff-notes-worktree.show-1", + "checkpoints": [ + { + "id": "session-diff-notes-loaded.normal:loaded", + "observation": { + "sender": ["aca7af380492"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "e28b1ad79121", + "effects": [] + } + }, + { + "id": "session-diff-notes-loaded.result-absent:loaded", + "observation": { + "sender": ["4b75b3dd3b11"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": ["2aee81f6fe31"] + } + }, + { + "id": "session-diff-notes-loaded.result-null:loaded", + "observation": { + "sender": ["061e626847d1"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": ["ccfb4b1d3cd2"] + } + }, + { + "id": "session-diff-notes-loaded.inner-ok-missing:loaded", + "observation": { + "sender": ["789b682a36a9"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": [] + } + }, + { + "id": "session-diff-notes-loaded.inner-false-string-error:loaded", + "observation": { + "sender": ["ee0229ca88e4"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": [] + } + }, + { + "id": "session-diff-notes-loaded.inner-false-object-error:loaded", + "observation": { + "sender": ["bcfad643c288"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": [] + } + }, + { + "id": "session-diff-notes-loaded.outer-refused:loaded", + "observation": { + "sender": ["39356bf6300e"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": [] + } + }, + { + "id": "session-diff-notes-loaded.outer-refused-no-message:loaded", + "observation": { + "sender": ["d122d6f393f0"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": [] + } + }, + { + "id": "session-diff-notes-loaded.method-not-found:loaded", + "observation": { + "sender": ["877275dff6d5"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": [] + } + }, + { + "id": "session-diff-notes-loaded.transport-rejection:loaded", + "observation": { + "sender": ["ebacf8186f13"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": ["b80f8c3fa354"] + } + }, + { + "id": "session-diff-notes-loaded.transport-rejection-no-message:loaded", + "observation": { + "sender": ["3c47b5f5f31b"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": ["787e19388f6a"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.diff-review-actions-worktree.set-1.json b/mobile/rpc-foundation/goldens/matrix-session.diff-review-actions-worktree.set-1.json new file mode 100644 index 00000000000..4ea5e596611 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-actions-worktree.set-1.json @@ -0,0 +1,1148 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "c583058382c949e977b7a1287895ed9ccb8cb408b684aef186b629976ff1da4d", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "02c4a9358dee": { + "actionError": { + "$rpc": "null" + }, + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "1a3792526461": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "1c6a13b5a4b5": { + "actionError": "", + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "1cb44c350a93": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "21c2e336c1b2": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "523a4ad730f7": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "63639602640e": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Failed to save review state", + "isRpcDeliveryUnknown": false + } + }, + "73f7bfbf2ed4": { + "actionError": "Unknown method", + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "78219a737d4d": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "updated": true + } + } + } + }, + "93ea0539ca0a": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "9a5a5e546290": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}" + }, + "9e0132f8d584": { + "actionError": "outer refused", + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b948e8307e81": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Unknown method", + "isRpcDeliveryUnknown": false + } + }, + "c3779b733809": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "d98361dedc14": { + "actionError": "Failed to save review state", + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "e229d12c47d9": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f5093e949364": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "fa4af2435d85": { + "actionError": "transport failure", + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "fcb8d424e616": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "fd440bc24ecc": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + } + }, + "recording": { + "scenario": "matrix-session.diff-review-actions-worktree.set-1", + "checkpoints": [ + { + "id": "review-mark-reviewed-persists.normal:persisted", + "observation": { + "sender": ["78219a737d4d"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "eb79a9b3682a" + }, + "state": "02c4a9358dee", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.result-absent:persisted", + "observation": { + "sender": ["1a3792526461"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "eb79a9b3682a" + }, + "state": "02c4a9358dee", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.result-null:persisted", + "observation": { + "sender": ["e229d12c47d9"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "eb79a9b3682a" + }, + "state": "02c4a9358dee", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.inner-ok-missing:persisted", + "observation": { + "sender": ["fd440bc24ecc"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "eb79a9b3682a" + }, + "state": "02c4a9358dee", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.inner-false-string-error:persisted", + "observation": { + "sender": ["93ea0539ca0a"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "eb79a9b3682a" + }, + "state": "02c4a9358dee", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.inner-false-object-error:persisted", + "observation": { + "sender": ["f5093e949364"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "eb79a9b3682a" + }, + "state": "02c4a9358dee", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.outer-refused:persisted", + "observation": { + "sender": ["c3779b733809"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "32a7c0ae7918" + }, + "state": "9e0132f8d584", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.outer-refused-no-message:persisted", + "observation": { + "sender": ["fcb8d424e616"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "63639602640e" + }, + "state": "d98361dedc14", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.method-not-found:persisted", + "observation": { + "sender": ["1cb44c350a93"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "b948e8307e81" + }, + "state": "73f7bfbf2ed4", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.transport-rejection:persisted", + "observation": { + "sender": ["523a4ad730f7"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "a947768bc0ed" + }, + "state": "fa4af2435d85", + "effects": [] + } + }, + { + "id": "review-mark-reviewed-persists.transport-rejection-no-message:persisted", + "observation": { + "sender": ["21c2e336c1b2"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "c7584e82c72f" + }, + "state": "1c6a13b5a4b5", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.diff-review-base-ref-show.json b/mobile/rpc-foundation/goldens/matrix-session.diff-review-base-ref-show.json index f51d2098050..698d0a44a2e 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-base-ref-show.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-base-ref-show.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "17e2b30594a2b37e82ff1976377722c2f1c3ae7f01857e50e010a2dd2e89da3a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.branchcompare-1.json b/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.branchcompare-1.json index 696ef8c15d3..bd4e7205630 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.branchcompare-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.branchcompare-1.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "b99f51a5527e42a32ea9203ad75b16f9dd3cdcdc2a3ed235f6467ac1c7e3a4f3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.status-1.json b/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.status-1.json index 3338cd3a14f..557a36823b8 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.status-1.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "b4627f9ac9bc090a2b48fd35f32d5dc3d66fefe0fb65abab75597ef2c73510ec", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.diff-review-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.diff-review-repo.list-1.json index c095a186fe5..0802ec771a1 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-repo.list-1.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "c9f720134506b6db71b742c219abe736fca1f90070403d7c96df9396fd048b6f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.diff-review-review-show.json b/mobile/rpc-foundation/goldens/matrix-session.diff-review-review-show.json index a707a2927fa..2ef37281202 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-review-show.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-review-show.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "f17bb817f9a172e776f1814920d58abc7db122da9c49cfe3bbeaf217f82d70d7", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.markdown-save-markdown.savetab-1.json b/mobile/rpc-foundation/goldens/matrix-session.markdown-save-markdown.savetab-1.json new file mode 100644 index 00000000000..2fc04460012 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.markdown-save-markdown.savetab-1.json @@ -0,0 +1,685 @@ +{ + "operation": "session.markdown-save", + "family": "session.markdown-save", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "389c6118f3137b78e88af6b901554b0331c652063a00d8ba3119e0883ce82f25", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "13f8c99bcf0e": { + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": true, + "localContent": "# b", + "saveError": "outer refused", + "saving": false, + "status": "ready" + } + } + }, + "20d209219e76": { + "markdown": { + "tab-md": { + "baseVersion": { + "$rpc": "undefined" + }, + "content": { + "$rpc": "undefined" + }, + "editable": true, + "isDirty": false, + "localContent": { + "$rpc": "undefined" + }, + "status": "ready" + } + } + }, + "2853dae4d5f0": { + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": true, + "localContent": "# b", + "saveError": "Cannot read properties of undefined (reading 'content')", + "saving": false, + "status": "ready" + } + } + }, + "2a1476024127": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "36de5fd645a3": { + "markdown": { + "tab-md": { + "baseVersion": "v2", + "content": "# b", + "editable": true, + "isDirty": false, + "localContent": "# b", + "status": "ready" + } + } + }, + "3cab53956ec5": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "6808229bc6b9": { + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": true, + "localContent": "# b", + "saveError": "Cannot read properties of null (reading 'content')", + "saving": false, + "status": "ready" + } + } + }, + "7afacfd8853f": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "976e04874a1e": { + "name": "toast", + "value": { + "message": "Saved" + }, + "sent": 1 + }, + "a06e17cbe383": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "content": "# b", + "isDirty": false, + "version": "v2" + } + } + } + }, + "ae15e570e49e": { + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": true, + "localContent": "# b", + "saveError": "Save failed", + "saving": false, + "status": "ready" + } + } + }, + "b7782c6305b8": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "bd0650cd45fe": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "be35c536a20e": { + "name": "markdown.saveTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}" + }, + "c1e52e8ff7d9": { + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": true, + "localContent": "# b", + "saveError": "Unknown method", + "saving": false, + "status": "ready" + } + } + }, + "cb2fb2a37dbd": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "cb4014f2aac3": { + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": true, + "localContent": "# b", + "saveError": "transport failure", + "saving": false, + "status": "ready" + } + } + }, + "d4147861284a": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "db1a22f5197e": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "dec169f24f21": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "e167231dab00": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-session.markdown-save-markdown.savetab-1", + "checkpoints": [ + { + "id": "session-markdown-saved.normal:saved", + "observation": { + "sender": ["a06e17cbe383"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "36de5fd645a3", + "effects": ["976e04874a1e"] + } + }, + { + "id": "session-markdown-saved.result-absent:saved", + "observation": { + "sender": ["e167231dab00"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "2853dae4d5f0", + "effects": [] + } + }, + { + "id": "session-markdown-saved.result-null:saved", + "observation": { + "sender": ["b7782c6305b8"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "6808229bc6b9", + "effects": [] + } + }, + { + "id": "session-markdown-saved.inner-ok-missing:saved", + "observation": { + "sender": ["dec169f24f21"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "20d209219e76", + "effects": ["976e04874a1e"] + } + }, + { + "id": "session-markdown-saved.inner-false-string-error:saved", + "observation": { + "sender": ["2a1476024127"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "20d209219e76", + "effects": ["976e04874a1e"] + } + }, + { + "id": "session-markdown-saved.inner-false-object-error:saved", + "observation": { + "sender": ["3cab53956ec5"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "20d209219e76", + "effects": ["976e04874a1e"] + } + }, + { + "id": "session-markdown-saved.outer-refused:saved", + "observation": { + "sender": ["db1a22f5197e"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "13f8c99bcf0e", + "effects": [] + } + }, + { + "id": "session-markdown-saved.outer-refused-no-message:saved", + "observation": { + "sender": ["d4147861284a"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "ae15e570e49e", + "effects": [] + } + }, + { + "id": "session-markdown-saved.method-not-found:saved", + "observation": { + "sender": ["bd0650cd45fe"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "c1e52e8ff7d9", + "effects": [] + } + }, + { + "id": "session-markdown-saved.transport-rejection:saved", + "observation": { + "sender": ["cb2fb2a37dbd"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "cb4014f2aac3", + "effects": [] + } + }, + { + "id": "session-markdown-saved.transport-rejection-no-message:saved", + "observation": { + "sender": ["7afacfd8853f"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "ae15e570e49e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.native-chat-readability-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.native-chat-readability-repo.list-1.json new file mode 100644 index 00000000000..d3e3ccf19ac --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.native-chat-readability-repo.list-1.json @@ -0,0 +1,544 @@ +{ + "operation": "session.native-chat-readability", + "family": "session.native-chat-readability", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "d6a0472f274d55aab584b58b67018d042ee1ba6799f42072a8a5986f45554bfc", + "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 + } + } + }, + "0b8777edb86c": { + "readable": false, + "worktreeId": "repo-1::/w" + }, + "0f1ed2b7a695": { + "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": [ + { + "connectionId": { + "$rpc": "null" + }, + "id": "repo-1" + } + ] + } + } + } + }, + "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 + } + } + }, + "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" + } + } + } + }, + "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 + } + } + }, + "dcf89ce6b4ca": { + "readable": true, + "worktreeId": "repo-1::/w" + }, + "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 + } + } + }, + "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-session.native-chat-readability-repo.list-1", + "checkpoints": [ + { + "id": "native-chat-readability-local-repo.normal:readable", + "observation": { + "sender": ["0f1ed2b7a695"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcf89ce6b4ca", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.result-absent:readable", + "observation": { + "sender": ["2ebe4d776f9b"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.result-null:readable", + "observation": { + "sender": ["38e790fd9e9c"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.inner-ok-missing:readable", + "observation": { + "sender": ["06b63e0d9986"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.inner-false-string-error:readable", + "observation": { + "sender": ["f96e83d33565"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.inner-false-object-error:readable", + "observation": { + "sender": ["9d3fa0db2665"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.outer-refused:readable", + "observation": { + "sender": ["b9f0f1e94cd9"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.outer-refused-no-message:readable", + "observation": { + "sender": ["06fc8e7b85d5"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.method-not-found:readable", + "observation": { + "sender": ["e341bd05e614"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.transport-rejection:readable", + "observation": { + "sender": ["6e5c6593dad8"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + }, + { + "id": "native-chat-readability-local-repo.transport-rejection-no-message:readable", + "observation": { + "sender": ["cc1facdf008c"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-orchestration.workerterminaluserinput-1.json b/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-orchestration.workerterminaluserinput-1.json new file mode 100644 index 00000000000..bcec1ca3fa4 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-orchestration.workerterminaluserinput-1.json @@ -0,0 +1,781 @@ +{ + "operation": "session.native-chat-stop", + "family": "session.native-chat-stop", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "a60de7b496f8149593a6e89cd2d29e20fdf75d26536592fec6b0100b43322d3b", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0203262b5432": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "1a91fe5e4856": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "1d3e6369460d": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "34a453846d11": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "4f58026b7877": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "538133eba781": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "60fbbfd9bd11": { + "name": "cancel-pending", + "value": {}, + "sent": 0 + }, + "6aad8cc2e655": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "84777d7d765a": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "86ab67d60a77": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "ad01b4d8b4de": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "bca437e23d8a": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "cb9a9683ab1e": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "d642e739823d": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "dc19ad107e96": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "debf84af8d66": { + "errors": [] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-session.native-chat-stop-orchestration.workerterminaluserinput-1", + "checkpoints": [ + { + "id": "native-chat-stop-accepted.normal:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.normal:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-absent:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "bca437e23d8a"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-absent:settled", + "observation": { + "sender": ["1d3e6369460d", "bca437e23d8a", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-null:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "d642e739823d"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-null:settled", + "observation": { + "sender": ["1d3e6369460d", "d642e739823d", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-ok-missing:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "6aad8cc2e655"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-ok-missing:settled", + "observation": { + "sender": ["1d3e6369460d", "6aad8cc2e655", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-string-error:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "cb9a9683ab1e"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-string-error:settled", + "observation": { + "sender": ["1d3e6369460d", "cb9a9683ab1e", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-object-error:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "34a453846d11"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-object-error:settled", + "observation": { + "sender": ["1d3e6369460d", "34a453846d11", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "84777d7d765a"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused:settled", + "observation": { + "sender": ["1d3e6369460d", "84777d7d765a", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused-no-message:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "dc19ad107e96"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused-no-message:settled", + "observation": { + "sender": ["1d3e6369460d", "dc19ad107e96", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.method-not-found:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "ad01b4d8b4de"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.method-not-found:settled", + "observation": { + "sender": ["1d3e6369460d", "ad01b4d8b4de", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "0203262b5432"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection:settled", + "observation": { + "sender": ["1d3e6369460d", "0203262b5432", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection-no-message:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "4f58026b7877"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection-no-message:settled", + "observation": { + "sender": ["1d3e6369460d", "4f58026b7877", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-terminal.send-1.json new file mode 100644 index 00000000000..72ae6357f80 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-terminal.send-1.json @@ -0,0 +1,897 @@ +{ + "operation": "session.native-chat-stop", + "family": "session.native-chat-stop", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "96499f352af2ff884bfa94996659609fdbd228e1d071ad462400b978ab8e239b", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "161bbe9b0076": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "1a91fe5e4856": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "1d3e6369460d": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "3c04f6d0878f": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "3e35736d8479": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "492866c0c9e1": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "538133eba781": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "6042c9b66ea6": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "60fbbfd9bd11": { + "name": "cancel-pending", + "value": {}, + "sent": 0 + }, + "63ceb8bb55e0": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "6d0a95c36d38": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "862750fdf5df": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 120 + } + }, + "86ab67d60a77": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "99589ad65e33": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "afbfdc05c156": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "c285187dc5a0": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "ceb10c5df8a0": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "cf7a58e6ca1e": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "debf84af8d66": { + "errors": [] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "feec2910cb8d": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + } + }, + "recording": { + "scenario": "matrix-session.native-chat-stop-terminal.send-1", + "checkpoints": [ + { + "id": "native-chat-stop-accepted.normal:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.normal:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-absent:first-accepted", + "observation": { + "sender": ["492866c0c9e1"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-absent:settled", + "observation": { + "sender": ["492866c0c9e1", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-null:first-accepted", + "observation": { + "sender": ["99589ad65e33"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-null:settled", + "observation": { + "sender": ["99589ad65e33", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-ok-missing:first-accepted", + "observation": { + "sender": ["6042c9b66ea6"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-ok-missing:settled", + "observation": { + "sender": ["6042c9b66ea6", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-string-error:first-accepted", + "observation": { + "sender": ["ceb10c5df8a0"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-string-error:settled", + "observation": { + "sender": ["ceb10c5df8a0", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-object-error:first-accepted", + "observation": { + "sender": ["feec2910cb8d"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-object-error:settled", + "observation": { + "sender": ["feec2910cb8d", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused:first-accepted", + "observation": { + "sender": ["afbfdc05c156"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused:settled", + "observation": { + "sender": ["afbfdc05c156", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused-no-message:first-accepted", + "observation": { + "sender": ["c285187dc5a0"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused-no-message:settled", + "observation": { + "sender": ["c285187dc5a0", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.method-not-found:first-accepted", + "observation": { + "sender": ["3e35736d8479"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.method-not-found:settled", + "observation": { + "sender": ["3e35736d8479", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection:first-accepted", + "observation": { + "sender": ["6d0a95c36d38"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection:settled", + "observation": { + "sender": ["6d0a95c36d38", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection-no-message:first-accepted", + "observation": { + "sender": ["cf7a58e6ca1e"], + "payloads": ["1a91fe5e4856"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection-no-message:settled", + "observation": { + "sender": ["cf7a58e6ca1e", "3c04f6d0878f", "862750fdf5df"], + "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-terminal.send-2.json b/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-terminal.send-2.json new file mode 100644 index 00000000000..c5627d1d6a2 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.native-chat-stop-terminal.send-2.json @@ -0,0 +1,701 @@ +{ + "operation": "session.native-chat-stop", + "family": "session.native-chat-stop", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "c28251d769ca9788952ed4fb29d8665c870fb85f2c5a4f32f8af33baf44498af", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "1a91fe5e4856": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "1d3e6369460d": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "25c18cb06628": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "304c613c8e0a": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "4799bb18ef3a": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "538133eba781": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "60fbbfd9bd11": { + "name": "cancel-pending", + "value": {}, + "sent": 0 + }, + "704e2e7084db": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 80, + "settledAt": 120, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "830b50854dbe": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-3", + "ok": false + } + } + }, + "86ab67d60a77": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "90321ca143d3": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-3", + "ok": false + } + } + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "a192a9818f72": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "c55d03869941": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 80, + "settledAt": 120, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "c7c4d50d3486": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-3", + "ok": false + } + } + }, + "debf84af8d66": { + "errors": [] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f23509c16ec5": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.native-chat-stop-terminal.send-2", + "checkpoints": [ + { + "id": "native-chat-stop-accepted.prelude:first-accepted", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.normal:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-absent:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "f23509c16ec5"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.result-null:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "a192a9818f72"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-ok-missing:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "304c613c8e0a"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-string-error:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "25c18cb06628"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.inner-false-object-error:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "4799bb18ef3a"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "90321ca143d3"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.outer-refused-no-message:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "c7c4d50d3486"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.method-not-found:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "830b50854dbe"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "704e2e7084db"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "native-chat-stop-accepted.transport-rejection-no-message:settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "c55d03869941"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.branchcompare-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.branchcompare-1.json index 92216d94aec..5b4d1a43c3b 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.branchcompare-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.branchcompare-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "af78542ad2c449b629f8705b940ec92fd16f879a9bcc81ff6ae3a192f804fa2c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.status-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.status-1.json index 3d7e81ba662..526a45ba468 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.status-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "1e7cad00f4dfcda65a3830b0b2468020816b940611af1b68600de33cd8c1d7c2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-repo.list-1.json index e47ad5b8408..6f8fec1d185 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-repo.list-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "d456ec18056eb9663e99d4991784bd802422256d81ddd7509720814da06915f4", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-worktree.show-1.json index cd12b4336aa..b78a2f27694 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "039f26cc90d2239028d6ad1d9ecae9cc976d48f386f2d29fbfa425afc702657d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-triage-session.tabs.createterminal-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-triage-session.tabs.createterminal-1.json index 099e93dc57d..fee7c280f8e 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-triage-session.tabs.createterminal-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-triage-session.tabs.createterminal-1.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "0d06d27000a8f6ad66480a16c7b84e8464f4b6e1d775326aeae005926e134cb4", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-triage-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-triage-terminal.send-1.json index 6f8beb62c8d..6ba3af4e568 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-triage-terminal.send-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-triage-terminal.send-1.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "a288e105a0af6dbbd9657b84f7c4860826184fb7f50dabc6e31b114a70d7ca44", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-activation-session.tabs.activate-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-activation-session.tabs.activate-1.json new file mode 100644 index 00000000000..c39ff7d933c --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-activation-session.tabs.activate-1.json @@ -0,0 +1,953 @@ +{ + "operation": "session.tab-activation", + "family": "session.tab-activation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "d25fc19d4e3e9b12f2a60a076ea10741e13fc45dcd9a76bd3a9d88432c3e6fbe", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "02648396b3a2": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "0442e34fbb3f": { + "name": "terminal.focus#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" + }, + "12726a31e046": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "204d99558abd": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "23857f5f3255": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + }, + "2a882f2e8b6b": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "3b8731983e55": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "43044100d546": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + }, + "45c1af849de7": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + }, + "4e4394afbcef": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "5134763ef050": { + "activate": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "5a867a59d359": { + "failure": "", + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "5f3ba1cd76e0": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + }, + "6edda552e76b": { + "activate": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "7118e8aeaaae": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + } + }, + "799e842efb06": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "79d93399ca0a": { + "failure": "transport failure", + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "7d4b7965217b": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + }, + "84d74a6de2ca": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + } + }, + "86832c8db827": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + }, + "8a96ab8caedf": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "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 + } + }, + "aa61e32f6fc2": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "b7d3873d1f62": { + "activate": { + "id": "frame-2", + "ok": true + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "bb654f2bdea7": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "c9c16f3b6d6f": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" + }, + "c9ffa22c6b1c": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "ccf7770577df": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + }, + "d53e4b22b23e": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "e300d58f5c29": { + "activate": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "e495a9a84cf0": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + } + } + }, + "e972c0a27347": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "ea28b62907bf": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "ecc5d1639f16": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "eec55f34d6d8": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "f626e8d2889c": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.tab-activation-session.tabs.activate-1", + "checkpoints": [ + { + "id": "session-tab-activation-focus-and-activate.normal:activated", + "observation": { + "sender": ["7118e8aeaaae", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "84d74a6de2ca" + }, + "state": "4e4394afbcef", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.result-absent:activated", + "observation": { + "sender": ["7118e8aeaaae", "c9ffa22c6b1c"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "86832c8db827" + }, + "state": "b7d3873d1f62", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.result-null:activated", + "observation": { + "sender": ["7118e8aeaaae", "02648396b3a2"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "bb654f2bdea7" + }, + "state": "204d99558abd", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.inner-ok-missing:activated", + "observation": { + "sender": ["7118e8aeaaae", "12726a31e046"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "7d4b7965217b" + }, + "state": "f626e8d2889c", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.inner-false-string-error:activated", + "observation": { + "sender": ["7118e8aeaaae", "2a882f2e8b6b"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "5f3ba1cd76e0" + }, + "state": "ea28b62907bf", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.inner-false-object-error:activated", + "observation": { + "sender": ["7118e8aeaaae", "aa61e32f6fc2"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "23857f5f3255" + }, + "state": "eec55f34d6d8", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.outer-refused:activated", + "observation": { + "sender": ["7118e8aeaaae", "3b8731983e55"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "ccf7770577df" + }, + "state": "5134763ef050", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.outer-refused-no-message:activated", + "observation": { + "sender": ["7118e8aeaaae", "799e842efb06"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "43044100d546" + }, + "state": "e300d58f5c29", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.method-not-found:activated", + "observation": { + "sender": ["7118e8aeaaae", "d53e4b22b23e"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "45c1af849de7" + }, + "state": "6edda552e76b", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.transport-rejection:activated", + "observation": { + "sender": ["7118e8aeaaae", "8a96ab8caedf"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "a947768bc0ed" + }, + "state": "79d93399ca0a", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.transport-rejection-no-message:activated", + "observation": { + "sender": ["7118e8aeaaae", "e972c0a27347"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "c7584e82c72f" + }, + "state": "5a867a59d359", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-activation-terminal.focus-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-activation-terminal.focus-1.json new file mode 100644 index 00000000000..4076b11734b --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-activation-terminal.focus-1.json @@ -0,0 +1,923 @@ +{ + "operation": "session.tab-activation", + "family": "session.tab-activation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "5b050af6f02aa90f66340838cb5cc53c8fc0d5693d313b653c23881150384874", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0442e34fbb3f": { + "name": "terminal.focus#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" + }, + "0590b758ddc1": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + }, + "159084d9517c": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "1fe60797f615": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": "" + }, + "2502744f8808": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + }, + "25e79f9d5740": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "266e5da2cd10": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + }, + "36ee2d642745": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "484fd4423b44": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + }, + "4e4394afbcef": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "57ccbda9fde1": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + }, + "5f1a9d73474f": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + }, + "62fdb01f5b5c": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true + } + }, + "7118e8aeaaae": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + } + }, + "84d74a6de2ca": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + } + }, + "893f5a2f4823": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "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 + } + } + }, + "97219c38288c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + }, + "9e6f70ca7163": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + }, + "a0e45ce9a66b": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "a8af1cd1c301": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b2c03b71f10a": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": "transport failure" + }, + "b5031b4cc6e6": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "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 + } + } + } + }, + "b8115959f9d6": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + }, + "ba98adc95c80": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "bbb05c902ae9": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + }, + "bbc6fbe00a97": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "c43f43ee2e4c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "c76b51daf336": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + }, + "c9c16f3b6d6f": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" + }, + "d563a507f706": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "e495a9a84cf0": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + } + } + }, + "ecc5d1639f16": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "efc5111f9e33": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + }, + "fdc16c91d99d": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + }, + "fe7233635ac5": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "recording": { + "scenario": "matrix-session.tab-activation-terminal.focus-1", + "checkpoints": [ + { + "id": "session-tab-activation-focus-and-activate.normal:activated", + "observation": { + "sender": ["7118e8aeaaae", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "84d74a6de2ca" + }, + "state": "4e4394afbcef", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.result-absent:activated", + "observation": { + "sender": ["25e79f9d5740", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "fdc16c91d99d", + "activate": "84d74a6de2ca" + }, + "state": "62fdb01f5b5c", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.result-null:activated", + "observation": { + "sender": ["a8af1cd1c301", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "c76b51daf336", + "activate": "84d74a6de2ca" + }, + "state": "9e6f70ca7163", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.inner-ok-missing:activated", + "observation": { + "sender": ["a0e45ce9a66b", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "2502744f8808", + "activate": "84d74a6de2ca" + }, + "state": "efc5111f9e33", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.inner-false-string-error:activated", + "observation": { + "sender": ["d563a507f706", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "57ccbda9fde1", + "activate": "84d74a6de2ca" + }, + "state": "0590b758ddc1", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.inner-false-object-error:activated", + "observation": { + "sender": ["b5031b4cc6e6", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "97219c38288c", + "activate": "84d74a6de2ca" + }, + "state": "b8115959f9d6", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.outer-refused:activated", + "observation": { + "sender": ["bbc6fbe00a97", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "c43f43ee2e4c", + "activate": "84d74a6de2ca" + }, + "state": "bbb05c902ae9", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.outer-refused-no-message:activated", + "observation": { + "sender": ["ba98adc95c80", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "fe7233635ac5", + "activate": "84d74a6de2ca" + }, + "state": "266e5da2cd10", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.method-not-found:activated", + "observation": { + "sender": ["893f5a2f4823", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "484fd4423b44", + "activate": "84d74a6de2ca" + }, + "state": "5f1a9d73474f", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.transport-rejection:activated", + "observation": { + "sender": ["159084d9517c", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "a947768bc0ed", + "activate": "84d74a6de2ca" + }, + "state": "b2c03b71f10a", + "effects": [] + } + }, + { + "id": "session-tab-activation-focus-and-activate.transport-rejection-no-message:activated", + "observation": { + "sender": ["36ee2d642745", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "c7584e82c72f", + "activate": "84d74a6de2ca" + }, + "state": "1fe60797f615", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-close-terminal.close-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-close-terminal.close-1.json new file mode 100644 index 00000000000..4dfdfee9414 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-close-terminal.close-1.json @@ -0,0 +1,577 @@ +{ + "operation": "session.tab-close", + "family": "session.tab-close", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "89141e3e400feea78460ede72d5269bdc885f6d3de75388542b4b7d6dff2840d", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1ae2d1fe0b13": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "2c418d165266": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "2d697fe0c9bf": { + "name": "terminal.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "3c8f3199915d": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "3e15def58214": { + "activeHandle": "terminal-1", + "sessionTabs": [ + { + "id": "tab-1", + "isActive": true, + "terminal": "terminal-1", + "title": "Terminal", + "type": "terminal" + } + ], + "terminals": [ + { + "handle": "terminal-1", + "isActive": true, + "title": "Terminal" + } + ] + }, + "65deed7773ff": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "6c7772079255": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "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 + } + } + } + }, + "7e31b0a0202e": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "closed": true + } + } + } + }, + "952c4e3cc256": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "a1c0c7168922": { + "name": "unsubscribe-terminal", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "c965e2e20176": { + "name": "clear-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "d141f04cb173": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "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 + } + } + }, + "d863d1a239d3": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "de039f500462": { + "activeHandle": { + "$rpc": "null" + }, + "sessionTabs": [ + { + "id": "tab-1", + "isActive": true, + "terminal": "terminal-1", + "title": "Terminal", + "type": "terminal" + } + ], + "terminals": [] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f2dc4d1788f4": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "ff73917214a8": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.tab-close-terminal.close-1", + "checkpoints": [ + { + "id": "session-tab-close-terminal.normal:closed", + "observation": { + "sender": ["7e31b0a0202e"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "de039f500462", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + }, + { + "id": "session-tab-close-terminal.result-absent:closed", + "observation": { + "sender": ["ff73917214a8"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "de039f500462", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + }, + { + "id": "session-tab-close-terminal.result-null:closed", + "observation": { + "sender": ["1ae2d1fe0b13"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "de039f500462", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + }, + { + "id": "session-tab-close-terminal.inner-ok-missing:closed", + "observation": { + "sender": ["65deed7773ff"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "de039f500462", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + }, + { + "id": "session-tab-close-terminal.inner-false-string-error:closed", + "observation": { + "sender": ["f2dc4d1788f4"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "de039f500462", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + }, + { + "id": "session-tab-close-terminal.inner-false-object-error:closed", + "observation": { + "sender": ["6c7772079255"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "de039f500462", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + }, + { + "id": "session-tab-close-terminal.outer-refused:closed", + "observation": { + "sender": ["952c4e3cc256"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "3e15def58214", + "effects": [] + } + }, + { + "id": "session-tab-close-terminal.outer-refused-no-message:closed", + "observation": { + "sender": ["d863d1a239d3"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "3e15def58214", + "effects": [] + } + }, + { + "id": "session-tab-close-terminal.method-not-found:closed", + "observation": { + "sender": ["d141f04cb173"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "3e15def58214", + "effects": [] + } + }, + { + "id": "session-tab-close-terminal.transport-rejection:closed", + "observation": { + "sender": ["3c8f3199915d"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "3e15def58214", + "effects": [] + } + }, + { + "id": "session-tab-close-terminal.transport-rejection-no-message:closed", + "observation": { + "sender": ["2c418d165266"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "3e15def58214", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-documents-markdown.readtab-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-documents-markdown.readtab-1.json new file mode 100644 index 00000000000..1eb88e8f8d0 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-documents-markdown.readtab-1.json @@ -0,0 +1,594 @@ +{ + "operation": "session.tab-documents", + "family": "session.tab-documents", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "c97d925b63253e87ada0777e95a24ccf4e4e1682eda048800b44e335767df648", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "04c0c8bada07": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "0f062a4c61ef": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "15b3e337fb90": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "38b08634cae3": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "content": "# a", + "editable": true, + "isDirty": false, + "version": "v1" + } + } + } + }, + "4145feef3760": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "475bab247189": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "4a63a1a50d4c": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "4d2966bef600": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "877720375363": { + "file": {}, + "markdown": { + "tab-md": { + "message": "Couldn't load markdown", + "status": "error" + } + } + }, + "999d7e43d33c": { + "file": {}, + "markdown": { + "tab-md": { + "baseVersion": { + "$rpc": "undefined" + }, + "content": { + "$rpc": "undefined" + }, + "editable": false, + "isDirty": false, + "localContent": { + "$rpc": "undefined" + }, + "readOnlyReason": { + "$rpc": "undefined" + }, + "stale": { + "$rpc": "undefined" + }, + "status": "ready" + } + } + }, + "b084676e5f8f": { + "name": "markdown.readTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + }, + "cdeef4a961fe": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "d07653bfda9f": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "d4cf305b17f8": { + "file": {}, + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": false, + "localContent": "# a", + "readOnlyReason": { + "$rpc": "undefined" + }, + "stale": false, + "status": "ready" + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3f0693c7791": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.tab-documents-markdown.readtab-1", + "checkpoints": [ + { + "id": "session-markdown-tab-read.normal:read", + "observation": { + "sender": ["38b08634cae3"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d4cf305b17f8", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.result-absent:read", + "observation": { + "sender": ["f3f0693c7791"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.result-null:read", + "observation": { + "sender": ["0f062a4c61ef"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.inner-ok-missing:read", + "observation": { + "sender": ["4d2966bef600"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "999d7e43d33c", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.inner-false-string-error:read", + "observation": { + "sender": ["cdeef4a961fe"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "999d7e43d33c", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.inner-false-object-error:read", + "observation": { + "sender": ["4a63a1a50d4c"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "999d7e43d33c", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.outer-refused:read", + "observation": { + "sender": ["15b3e337fb90"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.outer-refused-no-message:read", + "observation": { + "sender": ["d07653bfda9f"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.method-not-found:read", + "observation": { + "sender": ["475bab247189"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.transport-rejection:read", + "observation": { + "sender": ["04c0c8bada07"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + }, + { + "id": "session-markdown-tab-read.transport-rejection-no-message:read", + "observation": { + "sender": ["4145feef3760"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.activate-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.activate-1.json index dfb37c67eb5..eed1b81dc28 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.activate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.activate-1.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "73366226aeaec1581aeeb47219fc703917143cfd7f6a2eb01d7bd703a7c7612d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.list-1.json index b17da3a591b..17bf80bfdb6 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.list-1.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "c38f2bc5c9faca0774dfe202137877bada9deba165c5e9c955cbe67eae0cbdd9", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.tabs-stream-health-session.tabs.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.tabs-stream-health-session.tabs.list-1.json new file mode 100644 index 00000000000..20af0cdebd7 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.tabs-stream-health-session.tabs.list-1.json @@ -0,0 +1,671 @@ +{ + "operation": "session.tabs-stream-health", + "family": "session.tabs-stream-health", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "fab12524a09049d976da752cbe1b837a0aee04ce6e1eef75cbf517c862cb0d4a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "13a8f05b6027": { + "name": "fetch-errored", + "value": "transport failure", + "sent": 1 + }, + "17e92af0f44e": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "2eae38db7631": { + "name": "fetch-errored", + "value": "", + "sent": 1 + }, + "30425281a407": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "32f791db34da": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "42599e959a49": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "442e980f817f": { + "name": "fetch-failed", + "value": { + "code": "refused", + "message": "outer refused" + }, + "sent": 1 + }, + "49a2260ea0e7": { + "accepted": "unapplied", + "applicationRevision": 0 + }, + "4fb2d760b54b": { + "name": "fetch-succeeded", + "value": { + "$rpc": "undefined" + }, + "sent": 1 + }, + "5a7cc7a45078": { + "name": "fetch-started", + "value": {}, + "sent": 0 + }, + "5a9d6a1160e9": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "67009efe57d4": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "95ecf909b622": { + "name": "fetch-failed", + "value": { + "code": "refused", + "message": "" + }, + "sent": 1 + }, + "96129665cfbc": { + "name": "fetch-succeeded", + "value": { + "error": "inner refused", + "ok": false + }, + "sent": 1 + }, + "9653864fb896": { + "name": "fetch-succeeded", + "value": { + "tabs": [ + { + "id": "tab-1" + } + ] + }, + "sent": 1 + }, + "a9ecd3aba46a": { + "name": "fetch-succeeded", + "value": { + "error": "refused" + }, + "sent": 1 + }, + "b6ed47ca5ea3": { + "accepted": { + "source": "list", + "tabs": [] + }, + "applicationRevision": 0 + }, + "b77d683ee6ee": { + "name": "fetch-failed", + "value": { + "code": "method_not_found", + "message": "Unknown method" + }, + "sent": 1 + }, + "c5969ebad6b7": { + "name": "fetch-succeeded", + "value": { + "error": { + "message": "inner refused" + }, + "ok": false + }, + "sent": 1 + }, + "d46815b7ac09": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tabs": [ + { + "id": "tab-1" + } + ] + } + } + } + }, + "d65a3b8025b0": { + "name": "fetch-errored", + "value": "Cannot read properties of null (reading 'tabs')", + "sent": 1 + }, + "dea35a8e61e3": { + "name": "fetch-succeeded", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "df60619a0815": { + "name": "fetch-errored", + "value": "Cannot read properties of undefined (reading 'tabs')", + "sent": 1 + }, + "e29309cc10af": { + "accepted": { + "source": "list", + "tabs": [ + { + "id": "tab-1" + } + ] + }, + "applicationRevision": 0 + }, + "e4b0c74e48f9": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "e582528e16b2": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "eb7e045cfdd3": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "f65bb5453d98": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "fafc7ede7ef6": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.tabs-stream-health-session.tabs.list-1", + "checkpoints": [ + { + "id": "session-tabs-health-reconciled.normal:reconciled", + "observation": { + "sender": ["d46815b7ac09"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "e29309cc10af", + "effects": ["5a7cc7a45078", "9653864fb896"] + } + }, + { + "id": "session-tabs-health-reconciled.result-absent:reconciled", + "observation": { + "sender": ["e4b0c74e48f9"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "4fb2d760b54b", "df60619a0815"] + } + }, + { + "id": "session-tabs-health-reconciled.result-null:reconciled", + "observation": { + "sender": ["32f791db34da"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "dea35a8e61e3", "d65a3b8025b0"] + } + }, + { + "id": "session-tabs-health-reconciled.inner-ok-missing:reconciled", + "observation": { + "sender": ["42599e959a49"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "b6ed47ca5ea3", + "effects": ["5a7cc7a45078", "a9ecd3aba46a"] + } + }, + { + "id": "session-tabs-health-reconciled.inner-false-string-error:reconciled", + "observation": { + "sender": ["e582528e16b2"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "b6ed47ca5ea3", + "effects": ["5a7cc7a45078", "96129665cfbc"] + } + }, + { + "id": "session-tabs-health-reconciled.inner-false-object-error:reconciled", + "observation": { + "sender": ["17e92af0f44e"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "b6ed47ca5ea3", + "effects": ["5a7cc7a45078", "c5969ebad6b7"] + } + }, + { + "id": "session-tabs-health-reconciled.outer-refused:reconciled", + "observation": { + "sender": ["5a9d6a1160e9"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "442e980f817f"] + } + }, + { + "id": "session-tabs-health-reconciled.outer-refused-no-message:reconciled", + "observation": { + "sender": ["67009efe57d4"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "95ecf909b622"] + } + }, + { + "id": "session-tabs-health-reconciled.method-not-found:reconciled", + "observation": { + "sender": ["f65bb5453d98"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "b77d683ee6ee"] + } + }, + { + "id": "session-tabs-health-reconciled.transport-rejection:reconciled", + "observation": { + "sender": ["fafc7ede7ef6"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "13a8f05b6027"] + } + }, + { + "id": "session-tabs-health-reconciled.transport-rejection-no-message:reconciled", + "observation": { + "sender": ["eb7e045cfdd3"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "2eae38db7631"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-inventory-terminal.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-inventory-terminal.list-1.json new file mode 100644 index 00000000000..8f964b6ad01 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-inventory-terminal.list-1.json @@ -0,0 +1,601 @@ +{ + "operation": "session.terminal-inventory", + "family": "session.terminal-inventory", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "12f1006d704e362552317a3afcb4db4366146da3a863a1c55b524c6fc1b9757a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "04a21fb366ae": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "3cd6cd315c56": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "4e9902faac20": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "5cd2b97372d8": { + "name": "prune-live-input", + "value": ["terminal-1", "terminal-2"], + "sent": 1 + }, + "5eea50c700fd": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" + }, + "6a8e7504d43b": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "6aa9d70c1c82": { + "known": [], + "terminals": [] + }, + "70acf7d1b267": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "727166f3bc25": { + "known": [ + { + "handle": "terminal-1", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "one" + }, + { + "handle": "terminal-2", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "two" + } + ], + "terminals": [ + { + "handle": "terminal-1", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "one" + }, + { + "handle": "terminal-2", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "two" + } + ] + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "9d8ce13428ab": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "bc87546461f3": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "bdf04e5ac57b": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "c2ee5279a532": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminals": [ + { + "handle": "terminal-1", + "title": "one" + }, + { + "handle": "terminal-2", + "title": "two" + } + ] + } + } + } + }, + "ce7002e0ac64": { + "name": "default-live-input", + "value": ["terminal-1", "terminal-2"], + "sent": 1 + }, + "d717363e37dc": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + } + }, + "e187b80ff917": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.terminal-inventory-terminal.list-1", + "checkpoints": [ + { + "id": "session-terminal-list-merged.normal:listed", + "observation": { + "sender": ["c2ee5279a532"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "84e5ca07cb7a" + }, + "state": "727166f3bc25", + "effects": ["5cd2b97372d8", "ce7002e0ac64"] + } + }, + { + "id": "session-terminal-list-merged.result-absent:listed", + "observation": { + "sender": ["6a8e7504d43b"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.result-null:listed", + "observation": { + "sender": ["9d8ce13428ab"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.inner-ok-missing:listed", + "observation": { + "sender": ["bdf04e5ac57b"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.inner-false-string-error:listed", + "observation": { + "sender": ["04a21fb366ae"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.inner-false-object-error:listed", + "observation": { + "sender": ["d717363e37dc"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.outer-refused:listed", + "observation": { + "sender": ["4e9902faac20"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.outer-refused-no-message:listed", + "observation": { + "sender": ["bc87546461f3"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.method-not-found:listed", + "observation": { + "sender": ["70acf7d1b267"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.transport-rejection:listed", + "observation": { + "sender": ["e187b80ff917"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + }, + { + "id": "session-terminal-list-merged.transport-rejection-no-message:listed", + "observation": { + "sender": ["3cd6cd315c56"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-preflight.detectremoteagents-1.json b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-preflight.detectremoteagents-1.json index 4847a92aa9d..60bf8aff3e9 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-preflight.detectremoteagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-preflight.detectremoteagents-1.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "a0effc9a0be519ccd18c1b1abfc8b497cd3858b89ea8d345ac0f8bd6d195cf21", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-repo.list-1.json index 6af71bb865c..5f36424bdb6 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-repo.list-1.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "c21b2e0e97fab86664f634cc99d77dd587df4af4d02e6286c8380e09844096b2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-settings.get-1.json index 04a7e62f0e7..48b598b9b35 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "46c4e32a921612c736c8cf45ff72ed513431c917ed3dd03f289c0ba4c28d6adb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings-best-effort-settings.update-1.json b/mobile/rpc-foundation/goldens/matrix-settings-best-effort-settings.update-1.json index 886efed679e..52efe27a621 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-best-effort-settings.update-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-best-effort-settings.update-1.json @@ -3,9 +3,9 @@ "family": "settings-best-effort", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "cf671da175d50a4c2e1336f4e8338c24c4752db111e1eafd226bee6ff3582b1d", "platform": "darwin", @@ -276,6 +276,11 @@ } } }, + "8bdf90b8099a": { + "name": "defaultGitHubPreset", + "value": "assigned", + "sent": 0 + }, "9b81c7f38dcf": { "name": "settings.update#1", "args": [ @@ -343,10 +348,6 @@ } } }, - "b2897d5daa49": { - "name": "defaultGitHubPreset", - "value": "assigned" - }, "d26aa345f588": { "name": "settings.update#1", "args": [ @@ -434,7 +435,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -447,7 +448,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -460,7 +461,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -473,7 +474,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -486,7 +487,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -499,7 +500,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -512,7 +513,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -525,7 +526,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -538,7 +539,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -551,7 +552,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -564,7 +565,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -577,7 +578,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-settings.bot-overrides-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.bot-overrides-settings.get-1.json index 8a03f5bf51d..07e56873f82 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.bot-overrides-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.bot-overrides-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "01408cebcc193f8e30119381c8acf494fa5e29850fe010809deb330c2f9bcb36", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-linear.status-1.json b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-linear.status-1.json index 2651cc6478f..33276a63fe5 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-linear.status-1.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "19b445b39da98d28bcbcdab6f70e47ce208ca68f165e7b62c5fe9762eee67c8d", "platform": "darwin", @@ -47,12 +47,6 @@ } } }, - "24054d93a95f": { - "name": "providers", - "value": { - "host-1": ["github"] - } - }, "27e92f99be15": { "name": "linear.status#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" @@ -356,6 +350,13 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "8f4c679a09be": { "name": "linear.status#1", "args": [ @@ -580,7 +581,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -592,7 +593,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -604,7 +605,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -616,7 +617,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -628,7 +629,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -640,7 +641,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -652,7 +653,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -664,7 +665,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -676,7 +677,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -688,7 +689,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -700,7 +701,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-preflight.check-1.json b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-preflight.check-1.json index 8129f42a3a2..2bcdf501dde 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-preflight.check-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-preflight.check-1.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4953dd0de509ce620b9840d7f460e472dc74f54d53636694d12cba2e3bb51da8", "platform": "darwin", @@ -46,12 +46,6 @@ } } }, - "24054d93a95f": { - "name": "providers", - "value": { - "host-1": ["github"] - } - }, "27e92f99be15": { "name": "linear.status#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" @@ -291,6 +285,13 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "a3c30fa6fdda": { "name": "linear.status#1", "args": [ @@ -580,7 +581,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -592,7 +593,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -604,7 +605,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -616,7 +617,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -628,7 +629,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -640,7 +641,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -652,7 +653,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -664,7 +665,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -676,7 +677,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -688,7 +689,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -700,7 +701,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-settings.get-1.json index 5b3e7f77d38..729a24f03f9 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "70f601caeaee957bd3b172fc0fc12e85d6e2d6bed7683c86869559c6c9f25834", "platform": "darwin", @@ -47,12 +47,6 @@ } } }, - "24054d93a95f": { - "name": "providers", - "value": { - "host-1": ["github"] - } - }, "272a1c90c400": { "name": "settings.get#1", "args": [ @@ -423,6 +417,13 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "a3c30fa6fdda": { "name": "linear.status#1", "args": [ @@ -580,7 +581,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -592,7 +593,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -604,7 +605,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -616,7 +617,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -628,7 +629,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -640,7 +641,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -652,7 +653,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -664,7 +665,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -676,7 +677,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -688,7 +689,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -700,7 +701,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-settings.quick-commands-settings.getterminalquickcommands-1.json b/mobile/rpc-foundation/goldens/matrix-settings.quick-commands-settings.getterminalquickcommands-1.json new file mode 100644 index 00000000000..dfdcae6df03 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-settings.quick-commands-settings.getterminalquickcommands-1.json @@ -0,0 +1,640 @@ +{ + "operation": "settings.quick-commands", + "family": "settings.quick-commands", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "c6d5040d0fd1e6b852625561aa67d11f555f5adb12303b6f8d0176183026a6b1", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "04f6dbaf09c1": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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 + } + } + } + }, + "1ce4c013ba3d": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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 + } + } + }, + "21ccc919b368": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "21ee979928e9": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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" + } + } + } + }, + "3436bd0afc4e": { + "commands": [], + "error": "outer refused", + "loading": false, + "persisted": [false], + "ready": false + }, + "39ce53b18223": { + "commands": [], + "error": "Failed to load quick commands", + "loading": false, + "persisted": [false], + "ready": false + }, + "51361d7747a6": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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 + } + } + }, + "55a0abce3ee8": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "57653dce9e88": { + "commands": [], + "error": "", + "loading": false, + "persisted": [false], + "ready": false + }, + "6802e9327771": { + "commands": [], + "error": "Unknown method", + "loading": false, + "persisted": [false], + "ready": false + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "8215dc36bdfb": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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" + } + } + } + }, + "ae75d9a09c8f": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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 + } + } + }, + "b0069ba7e0a2": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "terminalQuickCommands": [ + { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + } + ] + } + } + } + }, + "d4b326e9a5d1": { + "commands": [], + "error": "transport failure", + "loading": false, + "persisted": [false], + "ready": false + }, + "d766ce9ee125": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminalQuickCommands": [] + } + } + } + }, + "e1663c7c38e3": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" + }, + "e3cf3d452fcf": { + "name": "settings.updateTerminalQuickCommands#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" + }, + "e7d45eb699d8": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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 + } + } + }, + "e9c308be6dea": { + "commands": [], + "error": "Failed to save quick command", + "loading": false, + "persisted": [false], + "ready": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f555436e2b82": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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-settings.quick-commands-settings.getterminalquickcommands-1", + "checkpoints": [ + { + "id": "quick-commands-loaded-and-saved.normal:saved", + "observation": { + "sender": ["d766ce9ee125", "b0069ba7e0a2"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.result-absent:saved", + "observation": { + "sender": ["21ccc919b368"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "39ce53b18223", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.result-null:saved", + "observation": { + "sender": ["21ee979928e9"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "39ce53b18223", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.inner-ok-missing:saved", + "observation": { + "sender": ["8215dc36bdfb"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "39ce53b18223", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.inner-false-string-error:saved", + "observation": { + "sender": ["f555436e2b82"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "39ce53b18223", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.inner-false-object-error:saved", + "observation": { + "sender": ["04f6dbaf09c1"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "39ce53b18223", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.outer-refused:saved", + "observation": { + "sender": ["1ce4c013ba3d"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "3436bd0afc4e", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.outer-refused-no-message:saved", + "observation": { + "sender": ["51361d7747a6"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "39ce53b18223", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.method-not-found:saved", + "observation": { + "sender": ["ae75d9a09c8f"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "6802e9327771", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.transport-rejection:saved", + "observation": { + "sender": ["e7d45eb699d8"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "d4b326e9a5d1", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.transport-rejection-no-message:saved", + "observation": { + "sender": ["55a0abce3ee8"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "57653dce9e88", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-settings.quick-commands-settings.updateterminalquickcommands-1.json b/mobile/rpc-foundation/goldens/matrix-settings.quick-commands-settings.updateterminalquickcommands-1.json new file mode 100644 index 00000000000..e153d047de0 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-settings.quick-commands-settings.updateterminalquickcommands-1.json @@ -0,0 +1,713 @@ +{ + "operation": "settings.quick-commands", + "family": "settings.quick-commands", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "b9edb5c27852d4e1e968f85668f1ea7afde3ed1c6e5c6582d6607f9fa5643356", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "35b74155a70e": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "4d6187982484": { + "commands": [], + "error": "transport failure", + "loading": false, + "persisted": [false], + "ready": true + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "90d68a1db07c": { + "commands": [], + "error": "Unknown method", + "loading": false, + "persisted": [false], + "ready": true + }, + "aa6cb2d59de0": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "b0069ba7e0a2": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "terminalQuickCommands": [ + { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + } + ] + } + } + } + }, + "b5abe986e17a": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "b8ac830eaf5f": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "bea1533ac9d4": { + "commands": [], + "error": "outer refused", + "loading": false, + "persisted": [false], + "ready": true + }, + "c321b3e8e439": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "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 + } + } + }, + "cd5b13bf9061": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "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 + } + } + } + }, + "d02852b743c2": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "d766ce9ee125": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminalQuickCommands": [] + } + } + } + }, + "da090221e587": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "e1603b0c081f": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "e1663c7c38e3": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" + }, + "e1a6101399e1": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "e3cf3d452fcf": { + "name": "settings.updateTerminalQuickCommands#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" + }, + "e481e68c74c9": { + "commands": [], + "error": "", + "loading": false, + "persisted": [false], + "ready": true + }, + "e9c308be6dea": { + "commands": [], + "error": "Failed to save quick command", + "loading": false, + "persisted": [false], + "ready": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-settings.quick-commands-settings.updateterminalquickcommands-1", + "checkpoints": [ + { + "id": "quick-commands-loaded-and-saved.normal:saved", + "observation": { + "sender": ["d766ce9ee125", "b0069ba7e0a2"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.result-absent:saved", + "observation": { + "sender": ["d766ce9ee125", "aa6cb2d59de0"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.result-null:saved", + "observation": { + "sender": ["d766ce9ee125", "b8ac830eaf5f"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.inner-ok-missing:saved", + "observation": { + "sender": ["d766ce9ee125", "da090221e587"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.inner-false-string-error:saved", + "observation": { + "sender": ["d766ce9ee125", "e1603b0c081f"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.inner-false-object-error:saved", + "observation": { + "sender": ["d766ce9ee125", "cd5b13bf9061"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.outer-refused:saved", + "observation": { + "sender": ["d766ce9ee125", "e1a6101399e1"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "bea1533ac9d4", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.outer-refused-no-message:saved", + "observation": { + "sender": ["d766ce9ee125", "d02852b743c2"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.method-not-found:saved", + "observation": { + "sender": ["d766ce9ee125", "c321b3e8e439"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "90d68a1db07c", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.transport-rejection:saved", + "observation": { + "sender": ["d766ce9ee125", "35b74155a70e"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "4d6187982484", + "effects": [] + } + }, + { + "id": "quick-commands-loaded-and-saved.transport-rejection-no-message:saved", + "observation": { + "sender": ["d766ce9ee125", "b5abe986e17a"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e481e68c74c9", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-host.platform-1.json b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-host.platform-1.json index 2c1bba2f854..b717ca19054 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-host.platform-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-host.platform-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "687b109bd2bcc0c85b7c858d553e68e2fc4cb5b281d9f8b32836dbacc4bdc8f2", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -38,6 +46,13 @@ "startedAt": 0 } }, + "04741fa0bd91": { + "name": "hostPlatform", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, "071880b671a1": { "hostLabelById": [["ssh:ssh-1", "SSH"]], "hostPlatform": "linux", @@ -170,10 +185,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4335d4b6568f": { "name": "settings.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -293,13 +304,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7ddd37ed8da5": { "name": "host.platform#1", "args": [ @@ -472,10 +476,28 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 + }, + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, "9acf4d7a0ba1": { "name": "host.platform#1", "args": [ @@ -507,9 +529,10 @@ } } }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 }, "a6443e8b2129": { "name": "host.platform#1", @@ -544,13 +567,6 @@ } } }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] - }, "b40605df86b7": { "name": "repo.list#1", "args": [ @@ -631,27 +647,10 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" }, - "e24ce14b72e9": { - "name": "hostPlatform", - "value": { - "$rpc": "null" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -660,6 +659,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -712,7 +719,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -726,12 +733,12 @@ }, "state": "6134b73f18d0", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -746,12 +753,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -766,12 +773,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -786,12 +793,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -806,12 +813,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -826,12 +833,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -846,12 +853,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -866,12 +873,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -886,12 +893,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -906,12 +913,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -926,12 +933,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -946,12 +953,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-repo.list-1.json index 6e419e84fbe..dfc1517cf1c 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-repo.list-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3199c745e22973b432b0a36c34bb0bdda994334a4a0cd7ad2daf8b172625ce8d", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -181,10 +189,6 @@ } } }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "38e790fd9e9c": { "name": "repo.list#1", "args": [ @@ -273,13 +277,6 @@ } } }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -352,10 +349,33 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 + }, + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 + }, "9d3fa0db2665": { "name": "repo.list#1", "args": [ @@ -392,17 +412,6 @@ } } }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] - }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] - }, "b40605df86b7": { "name": "repo.list#1", "args": [ @@ -514,17 +523,6 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" @@ -571,6 +569,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -657,7 +663,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -671,12 +677,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, diff --git a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-settings.get-1.json index 6ec635565ac..f00d98cff93 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "5e9c3ff57cf432b24a17ee046636b61b94116a687cfa506cd79dee464542b76b", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -38,6 +46,13 @@ "startedAt": 0 } }, + "04741fa0bd91": { + "name": "hostPlatform", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, "071880b671a1": { "hostLabelById": [["ssh:ssh-1", "SSH"]], "hostPlatform": "linux", @@ -215,10 +230,6 @@ } } }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4043cd1b2634": { "name": "settings.get#1", "args": [ @@ -276,13 +287,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -355,6 +359,14 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -390,6 +402,16 @@ "status": "pending", "startedAt": 0 }, + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 + }, + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, "9582447b1277": { "name": "settings.get#1", "args": [ @@ -488,16 +510,10 @@ } } }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] - }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 }, "b40605df86b7": { "name": "repo.list#1", @@ -545,10 +561,6 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, "d3eea0a00315": { "name": "settings.get#1", "args": [ @@ -583,23 +595,10 @@ } } }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" }, - "e24ce14b72e9": { - "name": "hostPlatform", - "value": { - "$rpc": "null" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -608,6 +607,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -724,7 +731,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -738,12 +745,12 @@ }, "state": "6134b73f18d0", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -758,12 +765,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -778,12 +785,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -798,12 +805,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -818,12 +825,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -838,12 +845,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -858,12 +865,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -878,12 +885,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -898,12 +905,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -918,12 +925,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -938,12 +945,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -958,12 +965,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-ssh.listtargetsummaries-1.json b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-ssh.listtargetsummaries-1.json index fc51b5273b3..2a44ab1b7f2 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-ssh.listtargetsummaries-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-ssh.listtargetsummaries-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a88061d3d1f03074b0ed2b663b523f1602362bc317ba614106f1f646d037d6e3", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -153,10 +161,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4335d4b6568f": { "name": "settings.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -214,10 +218,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "700210d17d9e": { - "name": "hostLabelById", - "value": [] - }, "70f9ee89a1da": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -248,13 +248,6 @@ } } }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -327,6 +320,14 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "900068047f8a": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -362,6 +363,21 @@ "status": "pending", "startedAt": 0 }, + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 + }, + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 + }, "9fdaf48cf9b6": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -395,17 +411,6 @@ } } }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] - }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] - }, "b40605df86b7": { "name": "repo.list#1", "args": [ @@ -483,10 +488,6 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, "d589c372905b": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -521,13 +522,6 @@ } } }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "dcd949b896ed": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -566,6 +560,11 @@ "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" }, + "eabc0f0fcd85": { + "name": "hostLabelById", + "value": [], + "sent": 4 + }, "eb68427ac627": { "hostLabelById": [], "hostPlatform": "linux", @@ -591,6 +590,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -677,7 +684,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -691,12 +698,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -710,7 +717,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -724,12 +731,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -743,7 +750,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -757,12 +764,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -776,7 +783,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -790,12 +797,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -809,7 +816,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -823,12 +830,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -842,7 +849,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -856,12 +863,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -875,7 +882,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -889,12 +896,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -908,7 +915,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -922,12 +929,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -941,7 +948,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -955,12 +962,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -974,7 +981,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -988,12 +995,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } }, @@ -1007,7 +1014,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -1021,12 +1028,12 @@ }, "state": "eb68427ac627", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "700210d17d9e", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "eabc0f0fcd85", + "93f4efbf2bd5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-folderworkspace.list-1.json b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-folderworkspace.list-1.json index 8a1871774cc..c742bd94be8 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-folderworkspace.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-folderworkspace.list-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "50ba7c7963cb494e4b3d484eb334977d21cc69018da57d75a7b6fd0c92860bd2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-projectgroup.list-1.json b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-projectgroup.list-1.json index b939df158ca..440a7d3bdd8 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-projectgroup.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-projectgroup.list-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "8dfd4550b39f0cfcb9aaa72fab0631b11f9e776ed389b206b326359d7f4c2d6e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-repo.list-1.json index c56b09b927f..2a6cf2742b0 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-repo.list-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "85dc526201f66409dd6a411c5e14615b82389791ec210efb9889078f5d580373", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-settings.get-1.json index db1ef0c259b..220bf410f4a 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "080e10ae774ef097082267da0c8b6d0ebacae582d57b04a189c123258d0e5131", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-worktree.ps-1.json b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-worktree.ps-1.json index 6169afef3c4..8e71dad5235 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-worktree.ps-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-worktree.ps-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "5988fa5ce0bf6b8585f7ec66918123ee086d5cdf1185a4eeff2e88904985064c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-linear.status-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-linear.status-1.json index d69ca571208..3039e53f0fd 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-linear.status-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "f5033a7a3567cc9e016bf09ac8bcd8ff381c3054c041dbccc773f7011918bf1d", "platform": "darwin", @@ -13,9 +13,12 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "0188d88101b8": { "name": "linear.status#1", @@ -51,17 +54,17 @@ } } }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -88,15 +91,10 @@ "startedAt": 0 } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } - }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, "158449a16852": { "name": "linear.status#1", @@ -129,13 +127,20 @@ } } }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 + }, + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -174,9 +179,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -203,51 +209,71 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", + "28fa1cba5d1a": { + "name": "githubProjectSettings", "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { + "2c04c960ee94": { "name": "showLinearTeamPicker", - "value": false + "value": false, + "sent": 0 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 + }, + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "4174675282eb": { + "name": "error", + "value": "transport failure", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "4620b5cc7ae9": { "name": "linear.status#1", @@ -280,39 +306,27 @@ } } }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false + "4976dfca54f0": { + "name": "taskStateHydrated", + "value": false, + "sent": 5 }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", + "546c38d1781a": { + "name": "mergeMethodProjectRow", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false - }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] - }, - "57da83afd125": { - "name": "taskStateHydrated", - "value": true + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -324,12 +338,13 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -356,6 +371,19 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, + "6ba526833af0": { + "name": "error", + "value": "", + "sent": 5 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -389,15 +417,24 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", + "758b8c1db523": { + "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, "79d765c34258": { "name": "linear.status#1", @@ -433,33 +470,44 @@ } } }, - "7d341b2cb946": { - "name": "detailPayload", + "85beb8cfde14": { + "name": "mergeMethodTaskItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "7f2e001f13e7": { - "name": "projectRepoNotInOrca", - "value": { - "$rpc": "null" - } - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" - }, - "888c93f6f346": { + "86a763922cd7": { "name": "appliedQuery", - "value": "is:issue is:open" + "value": "is:issue is:open", + "sent": 5 }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "9203cee5313f": { "name": "linear.status#1", @@ -494,29 +542,56 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, - "977e1de1ac2f": { - "name": "mergeMethodTaskItem", + "921e10a277e7": { + "name": "pendingHostedMerge", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", - "value": { - "$rpc": "null" - } + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 }, - "9a0f810232ef": { - "name": "provider", - "value": "github" - }, - "a211e64f0900": { + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -543,9 +618,15 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 }, "a9b0412f8019": { "name": "linear.status#1", @@ -581,6 +662,17 @@ } } }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 + }, "aa624b10c314": { "name": "linear.status#1", "args": [ @@ -618,56 +710,22 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false - }, - "bfd6af371d88": { - "name": "githubProjectSettings", - "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, "c0659c6ea513": { "name": "linear.status#1", @@ -705,15 +763,19 @@ } } }, + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 + }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, "c9e80e33c0bf": { "name": "linear.status#1", @@ -745,12 +807,10 @@ } } }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, "d04b03f317eb": { "name": "linear.status#1", @@ -786,9 +846,20 @@ } } }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "d705fce957e8": { "name": "settings.get#1", @@ -829,14 +900,6 @@ } } }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false - }, "e5662efa8968": { "name": "preflight.check#1", "args": [ @@ -876,14 +939,22 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -929,21 +1000,20 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -971,46 +1041,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1036,65 +1106,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1120,65 +1190,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1204,65 +1274,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1288,65 +1358,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1372,65 +1442,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1456,65 +1526,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1540,65 +1610,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1624,65 +1694,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1708,65 +1778,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1792,48 +1862,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "945ea389c1ef", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4174675282eb", + "4976dfca54f0" ] } }, @@ -1859,48 +1929,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "6ba526833af0", + "4976dfca54f0" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-preflight.check-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-preflight.check-1.json index b4ffb4b0616..1e957ad7ea6 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-preflight.check-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-preflight.check-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "0931b3d35868e5452cb550962f2408b6ce7cd6c89e90a9cf2897425edbb4b42d", "platform": "darwin", @@ -13,21 +13,24 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -54,23 +57,25 @@ "startedAt": 0 } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -109,9 +114,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -138,19 +144,39 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", + "28fa1cba5d1a": { + "name": "githubProjectSettings", "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 + }, + "2c04c960ee94": { + "name": "showLinearTeamPicker", + "value": false, + "sent": 0 + }, + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "3432b49304a5": { "name": "preflight.check#1", @@ -186,45 +212,42 @@ } } }, - "347cc433c473": { - "name": "projectRowDetail", + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 + }, + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "4174675282eb": { + "name": "error", + "value": "transport failure", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { - "name": "showLinearTeamPicker", - "value": false - }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", - "value": { - "$rpc": "null" - } - }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" - }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} + "4976dfca54f0": { + "name": "taskStateHydrated", + "value": false, + "sent": 5 }, "4cc1b000bcfc": { "name": "preflight.check#1", @@ -260,20 +283,6 @@ } } }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", - "value": { - "$rpc": "null" - } - }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false - }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, "535a11fdd274": { "name": "preflight.check#1", "args": [ @@ -341,17 +350,22 @@ } } }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 }, - "57da83afd125": { - "name": "taskStateHydrated", - "value": true + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -363,13 +377,6 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "supported" - } - }, "5daecca27f06": { "name": "preflight.check#1", "args": [ @@ -406,6 +413,14 @@ } } }, + "5e05b4814013": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "supported" + }, + "sent": 1 + }, "5fbdd64c75bc": { "name": "ui.get#1", "args": [ @@ -431,6 +446,19 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, + "6ba526833af0": { + "name": "error", + "value": "", + "sent": 5 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -464,16 +492,6 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, "753d67797760": { "name": "preflight.check#1", "args": [ @@ -507,53 +525,102 @@ } } }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, - "888c93f6f346": { - "name": "appliedQuery", - "value": "is:issue is:open" - }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, - "977e1de1ac2f": { + "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", + "86a763922cd7": { + "name": "appliedQuery", + "value": "is:issue is:open", + "sent": 5 + }, + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "9a0f810232ef": { - "name": "provider", - "value": "github" + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 + }, + "9b1d9febbcf6": { + "name": "showLinearGroupPicker", + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 }, "a042b29c0044": { "name": "preflight.check#1", @@ -586,9 +653,17 @@ } } }, - "a211e64f0900": { - "name": "showLinearGroupPicker", - "value": false + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -615,9 +690,26 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -656,56 +748,27 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, - "bfd6af371d88": { - "name": "githubProjectSettings", - "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, @@ -745,11 +808,10 @@ } } }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, "ca8f5459b39f": { "name": "preflight.check#1", @@ -812,16 +874,25 @@ } } }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "d705fce957e8": { "name": "settings.get#1", @@ -862,14 +933,6 @@ } } }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false - }, "e5662efa8968": { "name": "preflight.check#1", "args": [ @@ -909,14 +972,22 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -929,21 +1000,20 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -971,46 +1041,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1036,65 +1106,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1120,65 +1190,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1204,65 +1274,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1288,65 +1358,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1372,65 +1442,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1456,65 +1526,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1540,65 +1610,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1624,65 +1694,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1708,65 +1778,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1792,48 +1862,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "945ea389c1ef", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4174675282eb", + "4976dfca54f0" ] } }, @@ -1859,48 +1929,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "6ba526833af0", + "4976dfca54f0" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-settings.get-1.json index e5155ff4704..26b6bf8cc67 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d0f8d9bfe0e1469af3b0dab8b5c9799d91cc2234e72f0e031d6872059654077d", "platform": "darwin", @@ -13,21 +13,24 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -54,23 +57,25 @@ "startedAt": 0 } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -143,9 +148,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -172,6 +178,18 @@ "startedAt": 0 } }, + "28fa1cba5d1a": { + "name": "githubProjectSettings", + "value": { + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 + }, "2ae8bb906793": { "name": "settings.get#1", "args": [ @@ -237,25 +255,37 @@ } } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false + "2c04c960ee94": { + "name": "showLinearTeamPicker", + "value": false, + "sent": 0 }, - "326e3f8f7e0b": { + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "2fc20c1f9a22": { "name": "runtimeTaskSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } + "value": {}, + "sent": 5 }, - "347cc433c473": { - "name": "projectRowDetail", + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", "value": { "$rpc": "null" - } + }, + "sent": 0 + }, + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 }, "35584987e88e": { "name": "settings.get#1", @@ -290,65 +320,54 @@ } } }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 }, - "3e9fac4d6c32": { - "name": "showLinearTeamPicker", - "value": false + "4174675282eb": { + "name": "error", + "value": "transport failure", + "sent": 5 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "41be2620a06b": { + "name": "reset-workspace", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" - }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", - "value": { - "$rpc": "null" - } - }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false - }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false - }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] - }, - "57da83afd125": { + "4976dfca54f0": { "name": "taskStateHydrated", - "value": true + "value": false, + "sent": 5 + }, + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 + }, + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -360,12 +379,13 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -392,6 +412,19 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, + "6ba526833af0": { + "name": "error", + "value": "", + "sent": 5 + }, "6d584492e802": { "name": "settings.get#1", "args": [ @@ -493,43 +526,66 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 + }, + "7ad8359f6226": { "name": "error", - "value": "" + "value": "Cannot read properties of undefined (reading 'settings')", + "sent": 5 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "81ea51ff9d26": { + "name": "error", + "value": "Cannot read properties of null (reading 'settings')", + "sent": 5 }, - "888c93f6f346": { + "85beb8cfde14": { + "name": "mergeMethodTaskItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "86a763922cd7": { "name": "appliedQuery", - "value": "is:issue is:open" + "value": "is:issue is:open", + "sent": 5 }, - "8ac078069a5d": { - "name": "error", - "value": "Cannot read properties of null (reading 'settings')" + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 }, "8b77098df0c3": { "name": "settings.get#1", @@ -598,9 +654,19 @@ } } }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" + "8e5298b22c5f": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "924e33dd1165": { "name": "settings.get#1", @@ -635,33 +701,53 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 }, "963a91c532c8": { "hydrated": true, "settings": {} }, - "977e1de1ac2f": { - "name": "mergeMethodTaskItem", - "value": { - "$rpc": "null" - } - }, - "991081048cc2": { - "name": "reset-workspace", - "value": { - "$rpc": "null" - } - }, - "9a0f810232ef": { - "name": "provider", - "value": "github" - }, - "a211e64f0900": { + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -688,9 +774,26 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -729,77 +832,56 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, - "bfd6af371d88": { - "name": "githubProjectSettings", - "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "d705fce957e8": { "name": "settings.get#1", @@ -840,18 +922,6 @@ } } }, - "dae7907f03cc": { - "name": "runtimeTaskSettings", - "value": {} - }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false - }, "e5662efa8968": { "name": "preflight.check#1", "args": [ @@ -891,14 +961,22 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -941,25 +1019,20 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "eef5e6921665": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'settings')" + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } - }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -987,46 +1060,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1052,65 +1125,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1136,48 +1209,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "eef5e6921665", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "7ad8359f6226", + "4976dfca54f0" ] } }, @@ -1203,48 +1276,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "8ac078069a5d", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "81ea51ff9d26", + "4976dfca54f0" ] } }, @@ -1270,65 +1343,65 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "2fc20c1f9a22", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1354,65 +1427,65 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "2fc20c1f9a22", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1438,65 +1511,65 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "2fc20c1f9a22", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1522,65 +1595,65 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "2fc20c1f9a22", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1606,65 +1679,65 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "2fc20c1f9a22", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1690,65 +1763,65 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "2fc20c1f9a22", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1774,48 +1847,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "945ea389c1ef", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4174675282eb", + "4976dfca54f0" ] } }, @@ -1841,48 +1914,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "6ba526833af0", + "4976dfca54f0" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-status.get-1.json index ed80b073cad..78229b529a3 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-status.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3f448feff463b59c3927dae020ecd8d4931bb4a6036df6d6af080de2ec5fcf2b", "platform": "darwin", @@ -13,21 +13,34 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false + "0615c6d05b2d": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'capabilities')", + "sent": 1 }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "06f545abab55": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 1 + }, + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -54,21 +67,37 @@ "startedAt": 0 } }, - "11b132a242c1": { - "name": "githubProjectTable", + "10e7a35ba71e": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 1 + }, + "11128d5b58e9": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 1 + }, + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 + }, + "12e77f23ea9f": { + "name": "error", + "value": "Update Orca desktop to use Tasks on mobile.", + "sent": 1 + }, + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 + }, + "16c42f14f090": { + "name": "pendingHostedStateChange", "value": { "$rpc": "null" - } - }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } - }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + }, + "sent": 1 }, "16cd464bf664": { "name": "status.get#1", @@ -104,17 +133,27 @@ } } }, - "16f398d67267": { - "name": "linearConnected", - "value": false - }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1c2a67aac7e4": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 + }, + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -153,9 +192,17 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 + }, + "20a77be9acef": { + "name": "projectRowItem", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "234fabe27913": { "name": "preflight.check#1", @@ -213,58 +260,105 @@ } } }, - "2c295738907d": { - "name": "tasksSupportState", + "28fa1cba5d1a": { + "name": "githubProjectSettings", "value": { - "client": "logical-client", - "kind": "unsupported" - } + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } - }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { + "2c04c960ee94": { "name": "showLinearTeamPicker", - "value": false + "value": false, + "sent": 0 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "442bdfe26748": { - "name": "error", - "value": "Update Orca desktop to use Tasks on mobile." + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 + }, + "357b179933f9": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 1 + }, + "3805b36f637f": { + "name": "showSortPicker", + "value": false, + "sent": 1 + }, + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 + }, + "3b43c0d657fb": { + "name": "showGitLabViewPicker", + "value": false, + "sent": 1 + }, + "3c5ba1b0a5d7": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "3fe6070e65e7": { + "name": "showLinearViewPicker", + "value": false, + "sent": 1 + }, + "407d3b639517": { + "name": "projectRepoNotInOrca", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "411208403e0a": { + "name": "taskStateHydrated", + "value": false, + "sent": 1 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "4451bb95a76e": { "name": "status.get#1", @@ -299,43 +393,39 @@ } } }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" + "49f844d1a89f": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 1 }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", + "52e9c7685310": { + "name": "pendingHostedMerge", "value": { "$rpc": "null" - } + }, + "sent": 1 }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false + "583933e9a7b6": { + "name": "showLinearTeamPicker", + "value": false, + "sent": 1 }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] - }, - "57da83afd125": { - "name": "taskStateHydrated", - "value": true + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -347,12 +437,18 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { + "5be691f20ef4": { + "name": "showRepoPicker", + "value": false, + "sent": 1 + }, + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -379,6 +475,14 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -412,21 +516,29 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", + "758b8c1db523": { + "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, - "7d341b2cb946": { - "name": "detailPayload", + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", "value": { "$rpc": "null" - } + }, + "sent": 5 + }, + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 + }, + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, "7d3dd7f9381b": { "name": "status.get#1", @@ -458,23 +570,32 @@ } } }, - "7f2e001f13e7": { - "name": "projectRepoNotInOrca", + "84465663f388": { + "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 1 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "85beb8cfde14": { + "name": "mergeMethodTaskItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "86a763922cd7": { + "name": "appliedQuery", + "value": "is:issue is:open", + "sent": 5 }, - "85338c16b05b": { - "name": "error", - "value": "Cannot read properties of null (reading 'capabilities')" + "86bbfb818134": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unsupported" + }, + "sent": 1 }, "88200d49083c": { "name": "status.get#1", @@ -509,9 +630,15 @@ } } }, - "888c93f6f346": { - "name": "appliedQuery", - "value": "is:issue is:open" + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 }, "89236e432861": { "name": "status.get#1", @@ -549,13 +676,34 @@ } } }, - "8936cd17eb1c": { - "name": "items", - "value": [] + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "93fc17341354": { + "name": "error", + "value": "Cannot read properties of null (reading 'capabilities')", + "sent": 1 }, "944bf432f199": { "name": "status.get#1", @@ -591,25 +739,27 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 }, - "977e1de1ac2f": { - "name": "mergeMethodTaskItem", + "9b1d9febbcf6": { + "name": "showLinearGroupPicker", + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", - "value": { - "$rpc": "null" - } - }, - "9a0f810232ef": { - "name": "provider", - "value": "github" + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 }, "9cdf3c107e7b": { "name": "status.get#1", @@ -645,9 +795,34 @@ } } }, - "a211e64f0900": { - "name": "showLinearGroupPicker", - "value": false + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f4dbc22df3d": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -674,9 +849,36 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a6fb391b4526": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 1 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "a974df37ebab": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 1 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -711,64 +913,65 @@ } } }, + "aaf6f09a8b32": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 1 + }, "aba4413b55bb": { "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "ae0c3d3070af": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 1 + }, + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", + "b40e60a6d611": { + "name": "pendingGitHubProjectViewSelection", "value": { "$rpc": "null" - } + }, + "sent": 1 }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "ba65a7abe43b": { + "b53c339a3854": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "bcade3a63a76": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 1 }, - "bfd6af371d88": { - "name": "githubProjectSettings", + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 + }, + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 + }, + "c4a4dcb1bf28": { + "name": "linearStatusPickerItem", "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "$rpc": "null" + }, + "sent": 1 }, "c6178e6a0f4e": { "hydrated": false, @@ -808,26 +1011,56 @@ } } }, - "c78894b47bfd": { + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 + }, + "ca02a7cacc5e": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 + }, + "cc2e3b9c5338": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 1 + }, + "cd86c8b5ab41": { "name": "mergeMethodProjectRow", "value": { "$rpc": "null" - } + }, + "sent": 1 }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 }, - "cffae499abea": { + "d48d5c49486c": { "name": "error", - "value": "Cannot read properties of undefined (reading 'capabilities')" + "value": "", + "sent": 1 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 + }, + "d6364fa47ecc": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "d705fce957e8": { "name": "settings.get#1", @@ -868,6 +1101,11 @@ } } }, + "dadc0af5cf1e": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 1 + }, "de87f6266897": { "name": "status.get#1", "args": [ @@ -899,13 +1137,17 @@ } } }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false + "e14451e7d576": { + "name": "items", + "value": [], + "sent": 1 }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "e406aef763e4": { + "name": "reset-items", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "e5662efa8968": { "name": "preflight.check#1", @@ -946,14 +1188,27 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e7892a9d2423": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 1 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -962,31 +1217,56 @@ "$rpc": "undefined" } }, - "ebedcb7a3ad7": { - "name": "reset-items", - "value": { - "$rpc": "null" - } + "ecdc82ebbbe8": { + "name": "showLinearGroupPicker", + "value": false, + "sent": 1 }, "ee444fb637a3": { "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { + "f1905d689cd8": { "name": "showGitLabFilterPicker", - "value": false + "value": false, + "sent": 1 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 + }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, + "f87bbdb0b363": { + "name": "mergeMethodTaskItem", "value": { "$rpc": "null" - } + }, + "sent": 1 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 + }, + "fd45f6189165": { + "name": "showProviderPicker", + "value": false, + "sent": 1 + }, + "fe581ce5541b": { + "name": "showLinearConnect", + "value": false, + "sent": 1 + }, + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -1014,46 +1294,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1079,65 +1359,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1151,46 +1431,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "cffae499abea", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "0615c6d05b2d", + "411208403e0a" ] } }, @@ -1204,46 +1484,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "cffae499abea", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "0615c6d05b2d", + "411208403e0a" ] } }, @@ -1257,46 +1537,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "85338c16b05b", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "93fc17341354", + "411208403e0a" ] } }, @@ -1310,46 +1590,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "85338c16b05b", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "93fc17341354", + "411208403e0a" ] } }, @@ -1363,86 +1643,86 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "2c295738907d", - "8936cd17eb1c", - "ebedcb7a3ad7", - "11b132a242c1", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "442bdfe26748", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "86bbfb818134", + "e14451e7d576", + "e406aef763e4", + "9f4dbc22df3d", + "a6fb391b4526", + "583933e9a7b6", + "3fe6070e65e7", + "ecdc82ebbbe8", + "dadc0af5cf1e", + "10e7a35ba71e", + "fe581ce5541b", + "fd45f6189165", + "a974df37ebab", + "11128d5b58e9", + "3b43c0d657fb", + "f1905d689cd8", + "357b179933f9", + "3805b36f637f", + "5be691f20ef4", + "06f545abab55", + "aaf6f09a8b32", + "bcade3a63a76", + "49f844d1a89f", + "ae0c3d3070af", + "e7892a9d2423", + "b40e60a6d611", + "84465663f388", + "20a77be9acef", + "407d3b639517", + "d6364fa47ecc", + "1c2a67aac7e4", + "781721955405", + "cc2e3b9c5338", + "c4a4dcb1bf28", + "52e9c7685310", + "ca02a7cacc5e", + "16c42f14f090", + "f87bbdb0b363", + "cd86c8b5ab41", + "3c5ba1b0a5d7", + "12e77f23ea9f", + "411208403e0a" ] } }, @@ -1456,86 +1736,86 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "2c295738907d", - "8936cd17eb1c", - "ebedcb7a3ad7", - "11b132a242c1", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "442bdfe26748", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "86bbfb818134", + "e14451e7d576", + "e406aef763e4", + "9f4dbc22df3d", + "a6fb391b4526", + "583933e9a7b6", + "3fe6070e65e7", + "ecdc82ebbbe8", + "dadc0af5cf1e", + "10e7a35ba71e", + "fe581ce5541b", + "fd45f6189165", + "a974df37ebab", + "11128d5b58e9", + "3b43c0d657fb", + "f1905d689cd8", + "357b179933f9", + "3805b36f637f", + "5be691f20ef4", + "06f545abab55", + "aaf6f09a8b32", + "bcade3a63a76", + "49f844d1a89f", + "ae0c3d3070af", + "e7892a9d2423", + "b40e60a6d611", + "84465663f388", + "20a77be9acef", + "407d3b639517", + "d6364fa47ecc", + "1c2a67aac7e4", + "781721955405", + "cc2e3b9c5338", + "c4a4dcb1bf28", + "52e9c7685310", + "ca02a7cacc5e", + "16c42f14f090", + "f87bbdb0b363", + "cd86c8b5ab41", + "3c5ba1b0a5d7", + "12e77f23ea9f", + "411208403e0a" ] } }, @@ -1549,86 +1829,86 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "2c295738907d", - "8936cd17eb1c", - "ebedcb7a3ad7", - "11b132a242c1", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "442bdfe26748", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "86bbfb818134", + "e14451e7d576", + "e406aef763e4", + "9f4dbc22df3d", + "a6fb391b4526", + "583933e9a7b6", + "3fe6070e65e7", + "ecdc82ebbbe8", + "dadc0af5cf1e", + "10e7a35ba71e", + "fe581ce5541b", + "fd45f6189165", + "a974df37ebab", + "11128d5b58e9", + "3b43c0d657fb", + "f1905d689cd8", + "357b179933f9", + "3805b36f637f", + "5be691f20ef4", + "06f545abab55", + "aaf6f09a8b32", + "bcade3a63a76", + "49f844d1a89f", + "ae0c3d3070af", + "e7892a9d2423", + "b40e60a6d611", + "84465663f388", + "20a77be9acef", + "407d3b639517", + "d6364fa47ecc", + "1c2a67aac7e4", + "781721955405", + "cc2e3b9c5338", + "c4a4dcb1bf28", + "52e9c7685310", + "ca02a7cacc5e", + "16c42f14f090", + "f87bbdb0b363", + "cd86c8b5ab41", + "3c5ba1b0a5d7", + "12e77f23ea9f", + "411208403e0a" ] } }, @@ -1642,86 +1922,86 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "2c295738907d", - "8936cd17eb1c", - "ebedcb7a3ad7", - "11b132a242c1", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "442bdfe26748", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "86bbfb818134", + "e14451e7d576", + "e406aef763e4", + "9f4dbc22df3d", + "a6fb391b4526", + "583933e9a7b6", + "3fe6070e65e7", + "ecdc82ebbbe8", + "dadc0af5cf1e", + "10e7a35ba71e", + "fe581ce5541b", + "fd45f6189165", + "a974df37ebab", + "11128d5b58e9", + "3b43c0d657fb", + "f1905d689cd8", + "357b179933f9", + "3805b36f637f", + "5be691f20ef4", + "06f545abab55", + "aaf6f09a8b32", + "bcade3a63a76", + "49f844d1a89f", + "ae0c3d3070af", + "e7892a9d2423", + "b40e60a6d611", + "84465663f388", + "20a77be9acef", + "407d3b639517", + "d6364fa47ecc", + "1c2a67aac7e4", + "781721955405", + "cc2e3b9c5338", + "c4a4dcb1bf28", + "52e9c7685310", + "ca02a7cacc5e", + "16c42f14f090", + "f87bbdb0b363", + "cd86c8b5ab41", + "3c5ba1b0a5d7", + "12e77f23ea9f", + "411208403e0a" ] } }, @@ -1735,86 +2015,86 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "2c295738907d", - "8936cd17eb1c", - "ebedcb7a3ad7", - "11b132a242c1", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "442bdfe26748", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "86bbfb818134", + "e14451e7d576", + "e406aef763e4", + "9f4dbc22df3d", + "a6fb391b4526", + "583933e9a7b6", + "3fe6070e65e7", + "ecdc82ebbbe8", + "dadc0af5cf1e", + "10e7a35ba71e", + "fe581ce5541b", + "fd45f6189165", + "a974df37ebab", + "11128d5b58e9", + "3b43c0d657fb", + "f1905d689cd8", + "357b179933f9", + "3805b36f637f", + "5be691f20ef4", + "06f545abab55", + "aaf6f09a8b32", + "bcade3a63a76", + "49f844d1a89f", + "ae0c3d3070af", + "e7892a9d2423", + "b40e60a6d611", + "84465663f388", + "20a77be9acef", + "407d3b639517", + "d6364fa47ecc", + "1c2a67aac7e4", + "781721955405", + "cc2e3b9c5338", + "c4a4dcb1bf28", + "52e9c7685310", + "ca02a7cacc5e", + "16c42f14f090", + "f87bbdb0b363", + "cd86c8b5ab41", + "3c5ba1b0a5d7", + "12e77f23ea9f", + "411208403e0a" ] } }, @@ -1828,86 +2108,86 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "2c295738907d", - "8936cd17eb1c", - "ebedcb7a3ad7", - "11b132a242c1", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "442bdfe26748", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "86bbfb818134", + "e14451e7d576", + "e406aef763e4", + "9f4dbc22df3d", + "a6fb391b4526", + "583933e9a7b6", + "3fe6070e65e7", + "ecdc82ebbbe8", + "dadc0af5cf1e", + "10e7a35ba71e", + "fe581ce5541b", + "fd45f6189165", + "a974df37ebab", + "11128d5b58e9", + "3b43c0d657fb", + "f1905d689cd8", + "357b179933f9", + "3805b36f637f", + "5be691f20ef4", + "06f545abab55", + "aaf6f09a8b32", + "bcade3a63a76", + "49f844d1a89f", + "ae0c3d3070af", + "e7892a9d2423", + "b40e60a6d611", + "84465663f388", + "20a77be9acef", + "407d3b639517", + "d6364fa47ecc", + "1c2a67aac7e4", + "781721955405", + "cc2e3b9c5338", + "c4a4dcb1bf28", + "52e9c7685310", + "ca02a7cacc5e", + "16c42f14f090", + "f87bbdb0b363", + "cd86c8b5ab41", + "3c5ba1b0a5d7", + "12e77f23ea9f", + "411208403e0a" ] } }, @@ -1921,46 +2201,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "ba65a7abe43b", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "f791567b212f", + "411208403e0a" ] } }, @@ -1974,46 +2254,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "ba65a7abe43b", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "f791567b212f", + "411208403e0a" ] } }, @@ -2027,46 +2307,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "d48d5c49486c", + "411208403e0a" ] } }, @@ -2080,46 +2360,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "d48d5c49486c", + "411208403e0a" ] } }, @@ -2133,46 +2413,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "186f44bc465a", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "b53c339a3854", + "411208403e0a" ] } }, @@ -2186,46 +2466,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "186f44bc465a", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "b53c339a3854", + "411208403e0a" ] } }, @@ -2239,46 +2519,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "945ea389c1ef", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "198ac889ae28", + "411208403e0a" ] } }, @@ -2292,46 +2572,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "945ea389c1ef", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "198ac889ae28", + "411208403e0a" ] } }, @@ -2345,46 +2625,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "d48d5c49486c", + "411208403e0a" ] } }, @@ -2398,46 +2678,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "d48d5c49486c", + "411208403e0a" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-ui.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-ui.get-1.json index c323a8d8aa1..a4eca7c36ee 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-ui.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-ui.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4438f9fd62876333bb980157612aaf457c5a9b9115659c8c941c3b373ad071dd", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false - }, "0039f2221403": { "name": "ui.get#1", "args": [ @@ -48,17 +44,24 @@ } } }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -85,19 +88,15 @@ "startedAt": 0 } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] - }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, "1825a87a7ca8": { "hydrated": false, @@ -109,9 +108,15 @@ "visibleTaskProviders": ["github", "linear"] } }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 + }, + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -150,9 +155,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -179,33 +185,44 @@ "startedAt": 0 } }, - "29b675c48636": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ui')" - }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", + "28fa1cba5d1a": { + "name": "githubProjectSettings", "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "32d752320864": { - "name": "error", - "value": "Cannot read properties of null (reading 'ui')" + "2c04c960ee94": { + "name": "showLinearTeamPicker", + "value": false, + "sent": 0 }, - "347cc433c473": { - "name": "projectRowDetail", + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", "value": { "$rpc": "null" - } + }, + "sent": 0 + }, + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 }, "3567f6da3a57": { "name": "ui.get#1", @@ -240,13 +257,10 @@ } } }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 }, "3d09c833d11e": { "name": "ui.get#1", @@ -282,57 +296,49 @@ } } }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 }, - "3e9fac4d6c32": { - "name": "showLinearTeamPicker", - "value": false + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "4174675282eb": { + "name": "error", + "value": "transport failure", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" - }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", - "value": { - "$rpc": "null" - } - }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false - }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false - }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] - }, - "57da83afd125": { + "4976dfca54f0": { "name": "taskStateHydrated", - "value": true + "value": false, + "sent": 5 + }, + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 + }, + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -380,12 +386,13 @@ } } }, - "5b1145eb3832": { + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -412,6 +419,19 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, + "6ba526833af0": { + "name": "error", + "value": "", + "sent": 5 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -479,16 +499,6 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, "757d36f7d7c1": { "name": "ui.get#1", "args": [ @@ -520,29 +530,61 @@ } } }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, - "888c93f6f346": { + "85beb8cfde14": { + "name": "mergeMethodTaskItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "86a763922cd7": { "name": "appliedQuery", - "value": "is:issue is:open" + "value": "is:issue is:open", + "sent": 5 + }, + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8bffd530660b": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ui')", + "sent": 5 }, "8c5d1428d987": { "name": "ui.get#1", @@ -577,6 +619,11 @@ } } }, + "8cbbbcca9b6e": { + "name": "error", + "value": "Cannot read properties of null (reading 'ui')", + "sent": 5 + }, "8e434f3798db": { "name": "ui.get#1", "args": [ @@ -611,33 +658,63 @@ } } }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, - "977e1de1ac2f": { - "name": "mergeMethodTaskItem", + "8e5298b22c5f": { + "name": "projectRowDetail", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", + "921e10a277e7": { + "name": "pendingHostedMerge", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "9a0f810232ef": { - "name": "provider", - "value": "github" + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 }, - "a211e64f0900": { + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -664,9 +741,26 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -735,77 +829,56 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, - "bfd6af371d88": { - "name": "githubProjectSettings", - "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "d705fce957e8": { "name": "settings.get#1", @@ -846,14 +919,6 @@ } } }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false - }, "e5662efa8968": { "name": "preflight.check#1", "args": [ @@ -893,14 +958,22 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -913,10 +986,6 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false - }, "f2b6195abacc": { "name": "ui.get#1", "args": [ @@ -951,17 +1020,20 @@ } } }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 + }, + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -989,46 +1061,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1054,65 +1126,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1138,49 +1210,49 @@ }, "state": "1825a87a7ca8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "29b675c48636", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8bffd530660b", + "4976dfca54f0" ] } }, @@ -1206,49 +1278,49 @@ }, "state": "1825a87a7ca8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "32d752320864", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8cbbbcca9b6e", + "4976dfca54f0" ] } }, @@ -1274,65 +1346,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1358,65 +1430,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1442,65 +1514,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1526,65 +1598,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1610,65 +1682,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1694,65 +1766,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1778,48 +1850,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "945ea389c1ef", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "4174675282eb", + "4976dfca54f0" ] } }, @@ -1845,48 +1917,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "82cd71d524c8", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "6ba526833af0", + "4976dfca54f0" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-settings.get-1.json index 5a195d3bde6..73f4aba43ec 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "7e4c5bb29e0f630cda8a09233575b9295e485f3d3e315ebdc0458c69515fcfc7", "platform": "darwin", @@ -13,12 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "067cef118d9f": { - "name": "runtimeTaskSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": [] - } + "01533f698bc3": { + "name": "workspaceAgent", + "value": "codex", + "sent": 1 + }, + "05ed43b996fb": { + "name": "navigation", + "value": "/h/host-1/session/wt-1?name=ORC-1+Recorded+issue&created=1", + "sent": 2 }, "090c88478661": { "name": "settings.get#1", @@ -158,11 +161,12 @@ } } }, - "180125f5d1a6": { + "1847f1d16cc3": { "name": "workspaceCreateDraft", "value": { "$rpc": "null" - } + }, + "sent": 2 }, "2473f12c7cdd": { "name": "settings.get#1", @@ -200,6 +204,11 @@ } } }, + "2a3409305e35": { + "name": "creatingKey", + "value": "linear:1", + "sent": 0 + }, "2b3aa0da0852": { "name": "settings.get#1", "args": [ @@ -241,13 +250,12 @@ "disabledTuiAgents": [] } }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." - }, - "3f453dd79b03": { - "name": "workspaceAgent", - "value": "codex" + "3542b2dc7cf4": { + "name": "creatingKey", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "6a98511b6371": { "name": "settings.get#1", @@ -283,16 +291,6 @@ } } }, - "6eb4e79ad99a": { - "name": "setupPrompt", - "value": { - "$rpc": "null" - } - }, - "730f92993963": { - "name": "creatingKey", - "value": "linear:1" - }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -304,14 +302,6 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "7ee99993a895": { - "name": "navigation", - "value": "/h/host-1/session/wt-1?name=ORC-1+Recorded+issue&created=1" - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -381,11 +371,29 @@ "status": "pending", "startedAt": 0 }, - "ac9996319e05": { - "name": "actionItem", + "94d10e7369a8": { + "name": "setupPrompt", "value": { "$rpc": "null" - } + }, + "sent": 2 + }, + "98260d6be053": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "a1c21422795e": { + "name": "creatingKey", + "value": { + "$rpc": "null" + }, + "sent": 2 }, "adec34c2065c": { "creating": { @@ -394,6 +402,13 @@ "error": "", "settings": {} }, + "b3786fd78eba": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, "b759ab27e4dd": { "name": "settings.get#1", "args": [ @@ -432,12 +447,6 @@ "name": "worktree.create#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}" }, - "c9cb32059b8d": { - "name": "creatingKey", - "value": { - "$rpc": "null" - } - }, "d27ce798af34": { "name": "settings.get#1", "args": [ @@ -481,9 +490,13 @@ "disabledTuiAgents": ["claude"] } }, - "dae7907f03cc": { + "d78d24fff8fb": { "name": "runtimeTaskSettings", - "value": {} + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": [] + }, + "sent": 1 }, "e0cf1af55a54": { "name": "settings.get#1", @@ -548,9 +561,10 @@ } } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -560,6 +574,11 @@ "$rpc": "undefined" } }, + "f80ac8877eab": { + "name": "runtimeTaskSettings", + "value": {}, + "sent": 1 + }, "f84a8688af61": { "name": "settings.get#1", "args": [ @@ -605,7 +624,7 @@ "submit": "9270aeb7d9c6" }, "state": "7abdfe20af50", - "effects": ["730f92993963", "82cd71d524c8"] + "effects": ["2a3409305e35", "9e263f5e91be"] } }, { @@ -619,12 +638,12 @@ }, "state": "7abdfe20af50", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -639,14 +658,14 @@ }, "state": "33e3b949d4c5", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "7ee99993a895", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "05ed43b996fb", + "a1c21422795e" ] } }, @@ -661,12 +680,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -681,12 +700,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -701,14 +720,14 @@ }, "state": "adec34c2065c", "effects": [ - "730f92993963", - "82cd71d524c8", - "dae7907f03cc", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "7ee99993a895", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "f80ac8877eab", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "05ed43b996fb", + "a1c21422795e" ] } }, @@ -723,14 +742,14 @@ }, "state": "adec34c2065c", "effects": [ - "730f92993963", - "82cd71d524c8", - "dae7907f03cc", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "7ee99993a895", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "f80ac8877eab", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "05ed43b996fb", + "a1c21422795e" ] } }, @@ -745,14 +764,14 @@ }, "state": "adec34c2065c", "effects": [ - "730f92993963", - "82cd71d524c8", - "dae7907f03cc", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "7ee99993a895", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "f80ac8877eab", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "05ed43b996fb", + "a1c21422795e" ] } }, @@ -767,12 +786,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -787,12 +806,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -807,12 +826,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -827,12 +846,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -847,12 +866,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-worktree.create-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-worktree.create-1.json index 91975671469..cce5f4724f9 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-worktree.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-worktree.create-1.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "1d7713cf4c23d053105c2abb02340d81d5eb689f4311a0984932d8ebd031b4ce", "platform": "darwin", @@ -13,12 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "067cef118d9f": { - "name": "runtimeTaskSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": [] - } + "000516aa083b": { + "name": "error", + "value": "outer refused", + "sent": 2 + }, + "05ed43b996fb": { + "name": "navigation", + "value": "/h/host-1/session/wt-1?name=ORC-1+Recorded+issue&created=1", + "sent": 2 }, "090c88478661": { "name": "settings.get#1", @@ -130,19 +133,12 @@ } } }, - "12b9d0436b8a": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'displayName')" - }, - "180125f5d1a6": { + "1847f1d16cc3": { "name": "workspaceCreateDraft", "value": { "$rpc": "null" - } - }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" + }, + "sent": 2 }, "1bb065c2a768": { "creating": { @@ -190,9 +186,10 @@ } } }, - "2e80de97dd3b": { - "name": "error", - "value": "Cannot read properties of null (reading 'worktree')" + "2a3409305e35": { + "name": "creatingKey", + "value": "linear:1", + "sent": 0 }, "2f13b6f74cc6": { "name": "worktree.create#1", @@ -334,9 +331,15 @@ } } }, - "5b8e61be1638": { + "52d25e1f3035": { "name": "error", - "value": "Cannot read properties of undefined (reading 'worktree')" + "value": "Connection closed", + "sent": 2 + }, + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 }, "67b44e804cc9": { "creating": { @@ -348,16 +351,6 @@ "disabledTuiAgents": [] } }, - "6eb4e79ad99a": { - "name": "setupPrompt", - "value": { - "$rpc": "null" - } - }, - "730f92993963": { - "name": "creatingKey", - "value": "linear:1" - }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -379,14 +372,6 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "7ee99993a895": { - "name": "navigation", - "value": "/h/host-1/session/wt-1?name=ORC-1+Recorded+issue&created=1" - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "841ba02855c9": { "name": "worktree.create#1", "args": [ @@ -471,9 +456,12 @@ "status": "pending", "startedAt": 0 }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "94d10e7369a8": { + "name": "setupPrompt", + "value": { + "$rpc": "null" + }, + "sent": 2 }, "97348f3fe285": { "creating": { @@ -495,15 +483,22 @@ "disabledTuiAgents": [] } }, - "9f82f10075a3": { + "9c1c52015127": { "name": "error", - "value": "Connection closed" + "value": "Cannot read properties of undefined (reading 'displayName')", + "sent": 2 }, - "ac9996319e05": { - "name": "actionItem", + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "a1c21422795e": { + "name": "creatingKey", "value": { "$rpc": "null" - } + }, + "sent": 2 }, "adfc4e9a82be": { "name": "worktree.create#1", @@ -547,9 +542,22 @@ } } }, - "ba65a7abe43b": { + "b3786fd78eba": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, + "b3a953a16323": { "name": "error", - "value": "outer refused" + "value": "Cannot read properties of undefined (reading 'worktree')", + "sent": 2 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 }, "baa74a0ec378": { "name": "worktree.create#1", @@ -597,11 +605,18 @@ } } }, - "c9cb32059b8d": { - "name": "creatingKey", + "d78d24fff8fb": { + "name": "runtimeTaskSettings", "value": { - "$rpc": "null" - } + "defaultTuiAgent": "codex", + "disabledTuiAgents": [] + }, + "sent": 1 + }, + "de6ba73b810c": { + "name": "error", + "value": "Cannot read properties of null (reading 'worktree')", + "sent": 2 }, "eb44ca9ac41f": { "name": "worktree.create#1", @@ -658,6 +673,11 @@ "disabledTuiAgents": [] } }, + "f1cfc2d1bcc1": { + "name": "error", + "value": "Unknown method", + "sent": 2 + }, "f73b6faeedba": { "name": "worktree.create#1", "args": [ @@ -757,7 +777,7 @@ "submit": "9270aeb7d9c6" }, "state": "7abdfe20af50", - "effects": ["730f92993963", "82cd71d524c8"] + "effects": ["2a3409305e35", "9e263f5e91be"] } }, { @@ -771,11 +791,11 @@ }, "state": "eecc0c1b6490", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "9f82f10075a3", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "52d25e1f3035", + "a1c21422795e" ] } }, @@ -790,14 +810,14 @@ }, "state": "33e3b949d4c5", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "7ee99993a895", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "05ed43b996fb", + "a1c21422795e" ] } }, @@ -812,14 +832,14 @@ }, "state": "97348f3fe285", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "5b8e61be1638", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "b3a953a16323", + "a1c21422795e" ] } }, @@ -834,14 +854,14 @@ }, "state": "67b44e804cc9", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "2e80de97dd3b", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "de6ba73b810c", + "a1c21422795e" ] } }, @@ -856,14 +876,14 @@ }, "state": "97dc8fc98386", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "12b9d0436b8a", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "9c1c52015127", + "a1c21422795e" ] } }, @@ -878,14 +898,14 @@ }, "state": "97dc8fc98386", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "12b9d0436b8a", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "9c1c52015127", + "a1c21422795e" ] } }, @@ -900,14 +920,14 @@ }, "state": "97dc8fc98386", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "12b9d0436b8a", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "9c1c52015127", + "a1c21422795e" ] } }, @@ -922,11 +942,11 @@ }, "state": "7b27297e7f2d", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ba65a7abe43b", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "000516aa083b", + "a1c21422795e" ] } }, @@ -941,11 +961,11 @@ }, "state": "33e3b949d4c5", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "82cd71d524c8", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b57ded8a3ea3", + "a1c21422795e" ] } }, @@ -960,11 +980,11 @@ }, "state": "1bb065c2a768", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "186f44bc465a", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "f1cfc2d1bcc1", + "a1c21422795e" ] } }, @@ -979,11 +999,11 @@ }, "state": "2fac0da15fae", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "945ea389c1ef", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "5c2874ad80bc", + "a1c21422795e" ] } }, @@ -998,11 +1018,11 @@ }, "state": "33e3b949d4c5", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "82cd71d524c8", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b57ded8a3ea3", + "a1c21422795e" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-settings.get-1.json index f880aa64da0..900ee5c2c3c 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "994ea8b4ddb05774a8c2d5902bb68bf5e8f25399a787262b8f23f458f2790698", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01533f698bc3": { + "name": "workspaceAgent", + "value": "codex", + "sent": 1 + }, "090c88478661": { "name": "settings.get#1", "args": [ @@ -107,6 +112,28 @@ } } }, + "2a3409305e35": { + "name": "creatingKey", + "value": "linear:1", + "sent": 0 + }, + "2a5e2689bf37": { + "name": "setupPrompt", + "value": { + "agentOverride": "claude", + "command": "setup", + "item": { + "key": "linear:1", + "provider": "linear", + "source": { + "id": "issue-1" + } + }, + "repoName": "Repo", + "source": "repo" + }, + "sent": 1 + }, "2b3aa0da0852": { "name": "settings.get#1", "args": [ @@ -138,7 +165,7 @@ } } }, - "326e3f8f7e0b": { + "2d957a8af6b3": { "name": "runtimeTaskSettings", "value": { "defaultTuiAgent": "codex", @@ -146,15 +173,15 @@ "hostSettingOverrides": {}, "prBotAuthorOverrides": ["bot-user"], "visibleTaskProviders": ["github", "linear"] - } + }, + "sent": 1 }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." - }, - "3f453dd79b03": { - "name": "workspaceAgent", - "value": "codex" + "3542b2dc7cf4": { + "name": "creatingKey", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "6a98511b6371": { "name": "settings.get#1", @@ -190,10 +217,6 @@ } } }, - "730f92993963": { - "name": "creatingKey", - "value": "linear:1" - }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -244,10 +267,6 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -330,6 +349,16 @@ "status": "pending", "startedAt": 0 }, + "98260d6be053": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, "adec34c2065c": { "creating": { "$rpc": "null" @@ -337,22 +366,6 @@ "error": "", "settings": {} }, - "b4aa36380c40": { - "name": "setupPrompt", - "value": { - "agentOverride": "claude", - "command": "setup", - "item": { - "key": "linear:1", - "provider": "linear", - "source": { - "id": "issue-1" - } - }, - "repoName": "Repo", - "source": "repo" - } - }, "b759ab27e4dd": { "name": "settings.get#1", "args": [ @@ -387,12 +400,6 @@ } } }, - "c9cb32059b8d": { - "name": "creatingKey", - "value": { - "$rpc": "null" - } - }, "d27ce798af34": { "name": "settings.get#1", "args": [ @@ -436,10 +443,6 @@ "disabledTuiAgents": ["claude"] } }, - "dae7907f03cc": { - "name": "runtimeTaskSettings", - "value": {} - }, "e0cf1af55a54": { "name": "settings.get#1", "args": [ @@ -503,9 +506,10 @@ } } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -515,6 +519,11 @@ "$rpc": "undefined" } }, + "f80ac8877eab": { + "name": "runtimeTaskSettings", + "value": {}, + "sent": 1 + }, "f84a8688af61": { "name": "settings.get#1", "args": [ @@ -560,7 +569,7 @@ "submit": "9270aeb7d9c6" }, "state": "7abdfe20af50", - "effects": ["730f92993963", "82cd71d524c8"] + "effects": ["2a3409305e35", "9e263f5e91be"] } }, { @@ -574,12 +583,12 @@ }, "state": "7abdfe20af50", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -594,13 +603,13 @@ }, "state": "8b8197eed660", "effects": [ - "730f92993963", - "82cd71d524c8", - "326e3f8f7e0b", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "2d957a8af6b3", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -615,12 +624,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -635,12 +644,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -655,11 +664,11 @@ }, "state": "adec34c2065c", "effects": [ - "730f92993963", - "82cd71d524c8", - "dae7907f03cc", - "b4aa36380c40", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "f80ac8877eab", + "2a5e2689bf37", + "3542b2dc7cf4" ] } }, @@ -674,11 +683,11 @@ }, "state": "adec34c2065c", "effects": [ - "730f92993963", - "82cd71d524c8", - "dae7907f03cc", - "b4aa36380c40", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "f80ac8877eab", + "2a5e2689bf37", + "3542b2dc7cf4" ] } }, @@ -693,11 +702,11 @@ }, "state": "adec34c2065c", "effects": [ - "730f92993963", - "82cd71d524c8", - "dae7907f03cc", - "b4aa36380c40", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "f80ac8877eab", + "2a5e2689bf37", + "3542b2dc7cf4" ] } }, @@ -712,12 +721,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -732,12 +741,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -752,12 +761,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -772,12 +781,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } }, @@ -792,12 +801,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-linear.status-1.json b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-linear.status-1.json index f63aca5b8be..77b9d2f1c37 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-linear.status-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "30b3f8d79589e9fb3d7ef804233554fa231f68ab88e5130ddfa78e79221e3c78", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-preflight.check-1.json b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-preflight.check-1.json index 6b233402ff2..afdcd412917 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-preflight.check-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-preflight.check-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a5366cbd31d899feeb7e1901edd0c78191c2c8c8179ad5d5b24b7ca22bd538f8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-settings.get-1.json index 6454ad2dae5..b7b9127de9d 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "797ea410af6536410335ebe93b8bc354cd633cf980eb95efbb10bc46f5516cb7", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-ui.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-ui.get-1.json index d0f87961125..0b758c48c60 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-ui.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-ui.get-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3cd29e7b6a1cdfd99796a58cf6ad6f9aa3dbac75dd6e989ea99ba6027c210028", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.workspace-submit-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.workspace-submit-settings.get-1.json index adde05f7e2e..c5c80b59588 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-submit-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-submit-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "a89bdf93df71a958810aba72c80e42f663644781a29e934898e2ddf86c5dd5d5", "platform": "darwin", @@ -152,9 +152,23 @@ "disabledTuiAgents": ["claude"] } }, - "3405a06dce84": { + "3af6dc91992c": { + "name": "agentOverridden", + "value": false, + "sent": 1 + }, + "4c38e416e041": { + "name": "selectedAgent", + "value": { + "id": "codex", + "label": "Codex" + }, + "sent": 1 + }, + "52d25e1f3035": { "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." + "value": "Connection closed", + "sent": 2 }, "588949297c83": { "name": "worktree.create#1", @@ -238,22 +252,6 @@ } } }, - "6c2789ab0e4b": { - "name": "runtimeSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } - }, - "6f447a389087": { - "name": "runtimeSettings", - "value": { - "$rpc": "undefined" - } - }, "7b1c9637063f": { "creating": true, "error": "", @@ -304,10 +302,6 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -377,13 +371,10 @@ "status": "pending", "startedAt": 0 }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" - }, - "ae291b5dba88": { - "name": "agentOverridden", - "value": false + "value": "", + "sent": 0 }, "b759ab27e4dd": { "name": "settings.get#1", @@ -419,6 +410,13 @@ } } }, + "bc17a88609c2": { + "name": "runtimeSettings", + "value": { + "$rpc": "undefined" + }, + "sent": 1 + }, "d27ce798af34": { "name": "settings.get#1", "args": [ @@ -516,12 +514,21 @@ } } }, - "eb6f7a9c5bf1": { - "name": "selectedAgent", + "ea718cd95024": { + "name": "runtimeSettings", "value": { - "id": "codex", - "label": "Codex" - } + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 1 + }, + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -611,7 +618,7 @@ "submit": "9270aeb7d9c6" }, "state": "13c996e4ec2b", - "effects": ["82cd71d524c8"] + "effects": ["9e263f5e91be"] } }, { @@ -624,7 +631,7 @@ "submit": "eb79a9b3682a" }, "state": "13c996e4ec2b", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } }, { @@ -638,11 +645,11 @@ }, "state": "5efbd884ea5a", "effects": [ - "82cd71d524c8", - "6c2789ab0e4b", - "eb6f7a9c5bf1", - "ae291b5dba88", - "3405a06dce84" + "9e263f5e91be", + "ea718cd95024", + "4c38e416e041", + "3af6dc91992c", + "eaf6fe088c19" ] } }, @@ -656,7 +663,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } }, { @@ -669,7 +676,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } }, { @@ -682,7 +689,7 @@ "submit": "9270aeb7d9c6" }, "state": "7b1c9637063f", - "effects": ["82cd71d524c8", "6f447a389087"] + "effects": ["9e263f5e91be", "bc17a88609c2"] } }, { @@ -695,7 +702,7 @@ "submit": "eb79a9b3682a" }, "state": "7b1c9637063f", - "effects": ["82cd71d524c8", "6f447a389087", "9f82f10075a3"] + "effects": ["9e263f5e91be", "bc17a88609c2", "52d25e1f3035"] } }, { @@ -708,7 +715,7 @@ "submit": "9270aeb7d9c6" }, "state": "7b1c9637063f", - "effects": ["82cd71d524c8", "6f447a389087"] + "effects": ["9e263f5e91be", "bc17a88609c2"] } }, { @@ -721,7 +728,7 @@ "submit": "eb79a9b3682a" }, "state": "7b1c9637063f", - "effects": ["82cd71d524c8", "6f447a389087", "9f82f10075a3"] + "effects": ["9e263f5e91be", "bc17a88609c2", "52d25e1f3035"] } }, { @@ -734,7 +741,7 @@ "submit": "9270aeb7d9c6" }, "state": "7b1c9637063f", - "effects": ["82cd71d524c8", "6f447a389087"] + "effects": ["9e263f5e91be", "bc17a88609c2"] } }, { @@ -747,7 +754,7 @@ "submit": "eb79a9b3682a" }, "state": "7b1c9637063f", - "effects": ["82cd71d524c8", "6f447a389087", "9f82f10075a3"] + "effects": ["9e263f5e91be", "bc17a88609c2", "52d25e1f3035"] } }, { @@ -760,7 +767,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } }, { @@ -773,7 +780,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } }, { @@ -786,7 +793,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } }, { @@ -799,7 +806,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } }, { @@ -812,7 +819,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-speech.dictation-chunk-speech.dictation.chunk-1.json b/mobile/rpc-foundation/goldens/matrix-speech.dictation-chunk-speech.dictation.chunk-1.json index ba90d08263f..ca8295f4c07 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-chunk-speech.dictation.chunk-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-chunk-speech.dictation.chunk-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-chunk", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "cfc84498c2ed080ca2be50725c8ad4fac84eaf2e64ecad1445997949737da11d", "platform": "darwin", @@ -403,11 +403,12 @@ } } }, - "dfe8f61693de": { + "dd747eb6f20e": { "name": "dictation-failed", "value": { "id": "dictation-1" - } + }, + "sent": 1 }, "fad94b386878": { "name": "speech.dictation.chunk#1", @@ -526,7 +527,7 @@ "chunk": "bc459c132276" }, "state": "a2f842e44f38", - "effects": ["dfe8f61693de"] + "effects": ["dd747eb6f20e"] } }, { @@ -538,7 +539,7 @@ "chunk": "bc459c132276" }, "state": "b5157118341f", - "effects": ["dfe8f61693de"] + "effects": ["dd747eb6f20e"] } }, { @@ -550,7 +551,7 @@ "chunk": "bc459c132276" }, "state": "2762d465637e", - "effects": ["dfe8f61693de"] + "effects": ["dd747eb6f20e"] } }, { @@ -562,7 +563,7 @@ "chunk": "bc459c132276" }, "state": "28366801162a", - "effects": ["dfe8f61693de"] + "effects": ["dd747eb6f20e"] } }, { @@ -574,7 +575,7 @@ "chunk": "bc459c132276" }, "state": "b5157118341f", - "effects": ["dfe8f61693de"] + "effects": ["dd747eb6f20e"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.finish-1.json b/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.finish-1.json index 612d8df2a4d..df21a35185b 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.finish-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.finish-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "f3b57e7a3d46f7ee2761ecced03e74019758172fe0a040ef5df0612c8ac18358", "platform": "darwin", @@ -18,22 +18,24 @@ "status": "error", "transcripts": [] }, + "0c93805fbea9": { + "name": "dictation-error", + "value": { + "message": "Cannot read properties of null (reading 'text')" + }, + "sent": 3 + }, "11c21b92d88c": { "error": "No speech detected.", "status": "error", "transcripts": [] }, - "2b7284dee8d1": { + "1206006b26c1": { "name": "dictation-error", "value": { - "message": "Cannot read properties of null (reading 'text')" - } - }, - "365f4ccecdd2": { - "name": "dictation-error", - "value": { - "message": "Unknown method" - } + "message": "outer refused" + }, + "sent": 3 }, "3c7368349e13": { "name": "speech.dictation.finish#1", @@ -69,27 +71,29 @@ } } }, + "3d2304bd31a6": { + "name": "dictation-error", + "value": { + "message": "transport failure" + }, + "sent": 3 + }, "3fe14b61ba9c": { "name": "speech.dictation.start#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" }, - "4315cd2cbdec": { + "4a8791bf23bb": { "name": "dictation-error", "value": { - "message": "outer refused" - } + "message": "Unknown method" + }, + "sent": 3 }, "4d21a93db98f": { "error": "", "status": "error", "transcripts": [] }, - "55a69398fac0": { - "name": "dictation-error", - "value": { - "message": "No speech detected." - } - }, "5c21b9ecd037": { "name": "speech.dictation.cancel#1", "args": [ @@ -220,6 +224,13 @@ } } }, + "74834b7e4b3b": { + "name": "dictation-error", + "value": { + "message": "" + }, + "sent": 3 + }, "7e57b271644a": { "name": "speech.dictation.finish#1", "args": [ @@ -281,6 +292,20 @@ } } }, + "8e2a70085ca7": { + "name": "dictation-error", + "value": { + "message": "No speech detected." + }, + "sent": 2 + }, + "8e4d6eba76de": { + "name": "dictation-error", + "value": { + "message": "Cannot read properties of undefined (reading 'text')" + }, + "sent": 3 + }, "93e894a59a4e": { "name": "speech.dictation.finish#1", "args": [ @@ -312,18 +337,6 @@ } } }, - "94d135e55d53": { - "name": "dictation-error", - "value": { - "message": "" - } - }, - "9f3fe89125d8": { - "name": "dictation-error", - "value": { - "message": "Cannot read properties of undefined (reading 'text')" - } - }, "a19279fc9c65": { "error": { "$rpc": "null" @@ -531,12 +544,6 @@ "value": { "$rpc": "undefined" } - }, - "f1f80ac760bc": { - "name": "dictation-error", - "value": { - "message": "transport failure" - } } }, "recording": { @@ -567,7 +574,7 @@ "stop": "eb79a9b3682a" }, "state": "b432c878c8da", - "effects": ["9f3fe89125d8"] + "effects": ["8e4d6eba76de"] } }, { @@ -581,7 +588,7 @@ "stop": "eb79a9b3682a" }, "state": "073a32801a55", - "effects": ["2b7284dee8d1"] + "effects": ["0c93805fbea9"] } }, { @@ -595,7 +602,7 @@ "stop": "eb79a9b3682a" }, "state": "11c21b92d88c", - "effects": ["55a69398fac0"] + "effects": ["8e2a70085ca7"] } }, { @@ -609,7 +616,7 @@ "stop": "eb79a9b3682a" }, "state": "11c21b92d88c", - "effects": ["55a69398fac0"] + "effects": ["8e2a70085ca7"] } }, { @@ -623,7 +630,7 @@ "stop": "eb79a9b3682a" }, "state": "11c21b92d88c", - "effects": ["55a69398fac0"] + "effects": ["8e2a70085ca7"] } }, { @@ -637,7 +644,7 @@ "stop": "eb79a9b3682a" }, "state": "6bf21bf88103", - "effects": ["4315cd2cbdec"] + "effects": ["1206006b26c1"] } }, { @@ -651,7 +658,7 @@ "stop": "eb79a9b3682a" }, "state": "4d21a93db98f", - "effects": ["94d135e55d53"] + "effects": ["74834b7e4b3b"] } }, { @@ -665,7 +672,7 @@ "stop": "eb79a9b3682a" }, "state": "a1c4e9bebdd4", - "effects": ["365f4ccecdd2"] + "effects": ["4a8791bf23bb"] } }, { @@ -679,7 +686,7 @@ "stop": "eb79a9b3682a" }, "state": "dd2a6fe5923c", - "effects": ["f1f80ac760bc"] + "effects": ["3d2304bd31a6"] } }, { @@ -693,7 +700,7 @@ "stop": "eb79a9b3682a" }, "state": "4d21a93db98f", - "effects": ["94d135e55d53"] + "effects": ["74834b7e4b3b"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.start-1.json b/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.start-1.json index 1db6173fe46..cba186442b6 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.start-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.start-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "afe7c4d2085b095cac343607db3e9cc157921c2e0b20bae53260cd207ee5e4eb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.cancel-1.json b/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.cancel-1.json index 23cfbc83c9e..1f61027b7e9 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.cancel-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.cancel-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "ef890c668aded545c5423322aeaab0e0715ff80d5f76c6512d6579e277853f6c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.start-1.json b/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.start-1.json index f730341d862..c661dc116cc 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.start-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.start-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "cd65f6b30f92d9542d19ad74cc9437ea33a1ec8fbdf4439ba13c14960f8a1994", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.dictation.setup-1.json b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.dictation.setup-1.json index a468699a5a1..e91be6d92f1 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.dictation.setup-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.dictation.setup-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "407a52b099cbf2fcb261010e4235dae2e5e16e11b386fb6bc99d5a2d237af541", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.delete-1.json b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.delete-1.json index 6809cbf467f..bed1cf7965e 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.delete-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.delete-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "140ede79a9ee0c02bedbfe67551060ef85692b6cb71968a48a1c41fcb4863804", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.download-1.json b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.download-1.json index e71dc531494..8b56f7bb155 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.download-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.download-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "6c0a9d2f2e28acd10c3a1f03888c23961e95bff02af10fe0e703d34fe6d60e8b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.list-1.json b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.list-1.json index 9c8502dc601..0002c2df9b4 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.list-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "d63062b89cc83321f6bcbd05c55dd21c71c6ff8c8026d026b5d94e44278ed3d8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.addprreviewcomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.addprreviewcomment-1.json index b5142fba6d9..9a9578e719b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.addprreviewcomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.addprreviewcomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "751e0446d4cb64f80c997695cadb5d59d9698b4920a8ae16b95cb01e1ff37579", "platform": "darwin", @@ -17,63 +17,22 @@ "name": "github.setPRFileViewed#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, - "0c85499cb425": { + "02b35324051f": { "name": "prFileLoadingPath", "value": { "$rpc": "null" - } + }, + "sent": 4 }, - "1022542acd40": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "02b52513bb0d": { + "name": "mutatingStatus", + "value": true, + "sent": 4 + }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 }, "139752a53264": { "contents": { @@ -265,13 +224,84 @@ "name": "github.addPRReviewComment#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" }, - "186f44bc465a": { + "1e34370849ff": { "name": "error", - "value": "Unknown method" + "value": "", + "sent": 4 }, - "2d711d96f190": { + "2322bd630112": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "2dcc3610aa80": { "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "value": "Cannot read properties of null (reading 'ok')", + "sent": 5 + }, + "2e81adcfbca6": { + "name": "error", + "value": "Unknown method", + "sent": 5 + }, + "30196bc9a973": { + "name": "detailRefreshSeq", + "value": 1, + "sent": 1 + }, + "30f161ec011f": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 5 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "35d0a5aace97": { "contents": { @@ -333,6 +363,11 @@ }, "refreshSeq": 1 }, + "36bcd0cc2219": { + "name": "error", + "value": "[object Object]", + "sent": 5 + }, "38d90ed8a1ee": { "contents": { "src/index.ts": { @@ -399,6 +434,22 @@ }, "refreshSeq": 1 }, + "3d589c54ccdc": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 4 + }, + "4174675282eb": { + "name": "error", + "value": "transport failure", + "sent": 5 + }, "48887ca5265d": { "name": "github.addPRReviewComment#1", "args": [ @@ -489,6 +540,11 @@ }, "refreshSeq": 1 }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "56b95ef32926": { "name": "github.prFileContents#1", "args": [ @@ -532,6 +588,11 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "58deaf3a6563": { "contents": {}, "drafts": { @@ -586,131 +647,10 @@ }, "refreshSeq": 1 }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, - "6bbabf5b71db": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000", - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "6c85e969cc9d": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "6ba526833af0": { + "name": "error", + "value": "", + "sent": 5 }, "719c7f70fd21": { "name": "github.resolveReviewThread#1", @@ -830,9 +770,10 @@ }, "refreshSeq": 1 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, "8920eea8d02d": { "name": "github.addPRReviewComment#1", @@ -875,11 +816,7 @@ } } }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, - "8fd2d4171773": { + "8c3bfdbaf598": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -902,6 +839,14 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" } ], "files": [ @@ -925,11 +870,18 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 5 }, - "945ea389c1ef": { + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, + "9e263f5e91be": { "name": "error", - "value": "transport failure" + "value": "", + "sent": 0 }, "9e745ce96dca": { "name": "github.addPRReviewComment#1", @@ -966,10 +918,6 @@ } } }, - "9f82f10075a3": { - "name": "error", - "value": "Connection closed" - }, "a2e2063acb1e": { "name": "github.addPRReviewComment#1", "args": [ @@ -1055,6 +1003,11 @@ } } }, + "a82a30c9d838": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 3 + }, "a8b3659ce28d": { "name": "github.addPRReviewComment#1", "args": [ @@ -1130,13 +1083,10 @@ } } }, - "ab7ba6b82907": { - "name": "detailRefreshSeq", - "value": 1 - }, - "ae5be7de2632": { + "b57ded8a3ea3": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 2 }, "b76ac293cbde": { "contents": { @@ -1198,10 +1148,6 @@ }, "refreshSeq": 1 }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, "bcb382ff8ccc": { "name": "github.resolveReviewThread#1", "args": [ @@ -1273,14 +1219,6 @@ } } }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" - }, "c3ea578fcb3f": { "contents": { "src/index.ts": { @@ -1454,6 +1392,11 @@ } } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "d1316d48eea4": { "contents": { "src/index.ts": { @@ -1514,6 +1457,11 @@ }, "refreshSeq": 1 }, + "d27db8a11567": { + "name": "error", + "value": "inner refused", + "sent": 5 + }, "d2a2d7255ff4": { "name": "github.addPRReviewComment#1", "args": [ @@ -1550,10 +1498,69 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d530e4061382": { "name": "github.prFileContents#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" }, + "d6639f415773": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e14b632f629a": { "name": "github.setPRFileViewed#1", "args": [ @@ -1631,6 +1638,11 @@ "name": "github.rerunPRChecks#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}" }, + "e87d71fbc115": { + "name": "error", + "value": "Connection closed", + "sent": 5 + }, "ea0b5baf62b3": { "contents": { "src/index.ts": { @@ -1699,13 +1711,15 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" + "f1d782d012f9": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 3 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f28dd4f3c720": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 5 }, "f380145170e4": { "contents": { @@ -1766,6 +1780,68 @@ "reviewRequests": [] }, "refreshSeq": 1 + }, + "f673fac7d1d0": { + "name": "error", + "value": "outer refused", + "sent": 5 + }, + "f7ad057aa897": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000", + "line": 12, + "path": "src/index.ts" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 5 } }, "recording": { @@ -1781,7 +1857,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "58deaf3a6563", - "effects": ["066ce15717c8", "82cd71d524c8", "ab7ba6b82907", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "30196bc9a973", "32a3635e06a4"] } }, { @@ -1796,14 +1872,14 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -1820,18 +1896,18 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -1849,23 +1925,23 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -1896,27 +1972,27 @@ }, "state": "ea0b5baf62b3", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "e87d71fbc115", + "5467502970f1" ] } }, @@ -1947,28 +2023,28 @@ }, "state": "38d90ed8a1ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -1999,27 +2075,27 @@ }, "state": "35d0a5aace97", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "30f161ec011f", + "5467502970f1" ] } }, @@ -2050,27 +2126,27 @@ }, "state": "b76ac293cbde", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "2dcc3610aa80", + "5467502970f1" ] } }, @@ -2101,28 +2177,28 @@ }, "state": "1664dec79a8c", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6bbabf5b71db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "f7ad057aa897", + "5467502970f1" ] } }, @@ -2153,27 +2229,27 @@ }, "state": "80c6be381021", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "d27db8a11567", + "5467502970f1" ] } }, @@ -2204,27 +2280,27 @@ }, "state": "d1316d48eea4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "36bcd0cc2219", + "5467502970f1" ] } }, @@ -2255,27 +2331,27 @@ }, "state": "143835031ae8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f673fac7d1d0", + "5467502970f1" ] } }, @@ -2306,27 +2382,27 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "6ba526833af0", + "5467502970f1" ] } }, @@ -2357,27 +2433,27 @@ }, "state": "139752a53264", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "2e81adcfbca6", + "5467502970f1" ] } }, @@ -2408,27 +2484,27 @@ }, "state": "f380145170e4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "4174675282eb", + "5467502970f1" ] } }, @@ -2459,27 +2535,27 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "6ba526833af0", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.prfilecontents-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.prfilecontents-1.json index 4b530104ea3..7dfba9a7326 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.prfilecontents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.prfilecontents-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "525fc4a694e8d1eaa4dab254c05f6bbdfbff31f9137bf9ba277ed508fd56e30e", "platform": "darwin", @@ -17,9 +17,17 @@ "name": "github.setPRFileViewed#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" }, - "066ce15717c8": { + "02b35324051f": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, + "02b52513bb0d": { "name": "mutatingStatus", - "value": true + "value": true, + "sent": 4 }, "09ab59e7bed7": { "contents": { @@ -79,13 +87,112 @@ }, "refreshSeq": 1 }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 + }, + "169fba726515": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + }, + "1906d3587624": { + "name": "github.prFileContents#1", + "args": [ + { + "name": "method", + "value": "github.prFileContents" + }, + { + "name": "params", + "value": { + "baseSha": "base-sha", + "headSha": "head-sha", + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "prNumber": 12, + "repo": "id:repo-1", + "status": "modified" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "$rpc": "null" + } + } } }, - "1022542acd40": { + "1bc191fab81f": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "$rpc": "undefined" + } + }, + "sent": 4 + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "1e46eab4fde9": { + "name": "github.prFileContents#1", + "args": [ + { + "name": "method", + "value": "github.prFileContents" + }, + { + "name": "params", + "value": { + "baseSha": "base-sha", + "headSha": "head-sha", + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "prNumber": 12, + "repo": "id:repo-1", + "status": "modified" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "2322bd630112": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -131,97 +238,8 @@ "$rpc": "null" }, "reviewRequests": [] - } - }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" - }, - "1906d3587624": { - "name": "github.prFileContents#1", - "args": [ - { - "name": "method", - "value": "github.prFileContents" - }, - { - "name": "params", - "value": { - "baseSha": "base-sha", - "headSha": "head-sha", - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "prNumber": 12, - "repo": "id:repo-1", - "status": "modified" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-4", - "ok": true, - "result": { - "$rpc": "null" - } - } - } - }, - "1e46eab4fde9": { - "name": "github.prFileContents#1", - "args": [ - { - "name": "method", - "value": "github.prFileContents" - }, - { - "name": "params", - "value": { - "baseSha": "base-sha", - "headSha": "head-sha", - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "prNumber": 12, - "repo": "id:repo-1", - "status": "modified" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-4", - "ok": true, - "result": { - "error": "refused" - } - } - } + }, + "sent": 2 }, "2612177ac631": { "contents": {}, @@ -381,6 +399,16 @@ } } }, + "30196bc9a973": { + "name": "detailRefreshSeq", + "value": 1, + "sent": 1 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "38d90ed8a1ee": { "contents": { "src/index.ts": { @@ -447,6 +475,29 @@ }, "refreshSeq": 1 }, + "3b74ca96fbbf": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "error": { + "message": "inner refused" + }, + "ok": false + } + }, + "sent": 4 + }, + "3d589c54ccdc": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 4 + }, "3fa5d59b3bdc": { "contents": {}, "drafts": { @@ -501,14 +552,6 @@ }, "refreshSeq": 1 }, - "41d159823e94": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "error": "refused" - } - } - }, "437650c032c7": { "contents": { "src/index.ts": { @@ -573,6 +616,11 @@ }, "refreshSeq": 1 }, + "4a38f5d5d245": { + "name": "error", + "value": "Connection closed", + "sent": 4 + }, "4b4ca1abe880": { "contents": {}, "drafts": { @@ -719,6 +767,11 @@ }, "refreshSeq": 1 }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "54bc4c012b07": { "name": "github.prFileContents#1", "args": [ @@ -804,6 +857,11 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "58deaf3a6563": { "contents": {}, "drafts": { @@ -858,6 +916,11 @@ }, "refreshSeq": 1 }, + "598d95f891dc": { + "name": "error", + "value": "Unknown method", + "sent": 4 + }, "5a1e66f04e98": { "name": "github.prFileContents#1", "args": [ @@ -900,10 +963,6 @@ } } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, "6255f2d00cb6": { "contents": { "src/index.ts": { @@ -962,89 +1021,6 @@ }, "refreshSeq": 1 }, - "6675a3209313": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "$rpc": "undefined" - } - } - }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, - "6c85e969cc9d": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "6d11036fbd9f": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "error": "inner refused", - "ok": false - } - } - }, "719c7f70fd21": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" @@ -1161,34 +1137,22 @@ }, "refreshSeq": 1 }, - "7aeaf5f9e363": { + "7aa325e6bf84": { "name": "prFileContents", "value": { "src/index.ts": { - "$rpc": "null" - } - } - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "88669240de7c": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "error": { - "message": "inner refused" - }, + "error": "inner refused", "ok": false } - } + }, + "sent": 4 }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, - "8fd2d4171773": { + "8c3bfdbaf598": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -1211,6 +1175,14 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" } ], "files": [ @@ -1234,15 +1206,18 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 5 }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" + "value": "", + "sent": 0 }, "a4977f18017a": { "name": "github.prFileContents#1", @@ -1329,6 +1304,11 @@ } } }, + "a82a30c9d838": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 3 + }, "a94ae672d47d": { "name": "github.rerunPRChecks#1", "args": [ @@ -1365,9 +1345,19 @@ } } }, - "ab7ba6b82907": { - "name": "detailRefreshSeq", - "value": 1 + "ac63ff06c6f0": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "error": "refused" + } + }, + "sent": 4 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 }, "b86cf363fb90": { "name": "github.prFileContents#1", @@ -1411,10 +1401,6 @@ } } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, "bbc7b8125888": { "contents": { "src/index.ts": { @@ -1579,10 +1565,6 @@ }, "refreshSeq": 1 }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" - }, "c3ea578fcb3f": { "contents": { "src/index.ts": { @@ -1697,6 +1679,20 @@ }, "refreshSeq": 1 }, + "cc23a3557d7a": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "$rpc": "null" + } + }, + "sent": 4 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "cd49f254a729": { "contents": { "src/index.ts": { @@ -1800,10 +1796,69 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d530e4061382": { "name": "github.prFileContents#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" }, + "d6639f415773": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e068d3c5d275": { "name": "github.prFileContents#1", "args": [ @@ -1877,6 +1932,16 @@ } } }, + "e57a3f9ecfc9": { + "name": "error", + "value": "outer refused", + "sent": 4 + }, + "e594e65c588c": { + "name": "error", + "value": "transport failure", + "sent": 4 + }, "e6577d375511": { "contents": { "src/index.ts": { @@ -1953,9 +2018,15 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f1d782d012f9": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 3 + }, + "f28dd4f3c720": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 5 }, "f9b4dc062a34": { "name": "github.prFileContents#1", @@ -2080,7 +2151,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "58deaf3a6563", - "effects": ["066ce15717c8", "82cd71d524c8", "ab7ba6b82907", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "30196bc9a973", "32a3635e06a4"] } }, { @@ -2095,14 +2166,14 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -2119,18 +2190,18 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2148,23 +2219,23 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "9f82f10075a3", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "4a38f5d5d245", + "02b35324051f" ] } }, @@ -2182,23 +2253,23 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2229,28 +2300,28 @@ }, "state": "38d90ed8a1ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2268,23 +2339,23 @@ }, "state": "6255f2d00cb6", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "6675a3209313", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "1bc191fab81f", + "02b35324051f" ] } }, @@ -2315,28 +2386,28 @@ }, "state": "437650c032c7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "6675a3209313", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "1bc191fab81f", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2354,23 +2425,23 @@ }, "state": "09ab59e7bed7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "7aeaf5f9e363", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "cc23a3557d7a", + "02b35324051f" ] } }, @@ -2401,28 +2472,28 @@ }, "state": "bbc7b8125888", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "7aeaf5f9e363", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "cc23a3557d7a", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2440,23 +2511,23 @@ }, "state": "7417da4c0d2a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "41d159823e94", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "ac63ff06c6f0", + "02b35324051f" ] } }, @@ -2487,28 +2558,28 @@ }, "state": "e6577d375511", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "41d159823e94", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "ac63ff06c6f0", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2526,23 +2597,23 @@ }, "state": "2b36c236eb98", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "6d11036fbd9f", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "7aa325e6bf84", + "02b35324051f" ] } }, @@ -2573,28 +2644,28 @@ }, "state": "fe0cf00bd588", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "6d11036fbd9f", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "7aa325e6bf84", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2612,23 +2683,23 @@ }, "state": "cd49f254a729", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "88669240de7c", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3b74ca96fbbf", + "02b35324051f" ] } }, @@ -2659,28 +2730,28 @@ }, "state": "bedd28d22093", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "88669240de7c", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3b74ca96fbbf", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2698,23 +2769,23 @@ }, "state": "5427516fa87b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "ba65a7abe43b", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "e57a3f9ecfc9", + "02b35324051f" ] } }, @@ -2745,28 +2816,28 @@ }, "state": "2612177ac631", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "ba65a7abe43b", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "e57a3f9ecfc9", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2784,23 +2855,23 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "82cd71d524c8", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "1e34370849ff", + "02b35324051f" ] } }, @@ -2831,28 +2902,28 @@ }, "state": "2612177ac631", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "82cd71d524c8", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "1e34370849ff", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2870,23 +2941,23 @@ }, "state": "3fa5d59b3bdc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "186f44bc465a", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "598d95f891dc", + "02b35324051f" ] } }, @@ -2917,28 +2988,28 @@ }, "state": "2612177ac631", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "186f44bc465a", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "598d95f891dc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2956,23 +3027,23 @@ }, "state": "c85e2446fc79", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "945ea389c1ef", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "e594e65c588c", + "02b35324051f" ] } }, @@ -3003,28 +3074,28 @@ }, "state": "2612177ac631", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "945ea389c1ef", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "e594e65c588c", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -3042,23 +3113,23 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "82cd71d524c8", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "1e34370849ff", + "02b35324051f" ] } }, @@ -3089,28 +3160,28 @@ }, "state": "2612177ac631", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "82cd71d524c8", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "1e34370849ff", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.rerunprchecks-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.rerunprchecks-1.json index b57a0a64703..a0cc4386ab8 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.rerunprchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.rerunprchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "693c645ebbd13f438f19a8a96d52fa2e72c1c910aa45f04ba7f17c1c90e13169", "platform": "darwin", @@ -56,63 +56,22 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, - "0c85499cb425": { + "02b35324051f": { "name": "prFileLoadingPath", "value": { "$rpc": "null" - } + }, + "sent": 4 }, - "1022542acd40": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "02b52513bb0d": { + "name": "mutatingStatus", + "value": true, + "sent": 4 + }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 }, "11b5f0721ce4": { "contents": { @@ -238,9 +197,10 @@ "name": "github.addPRReviewComment#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "1d6b81659322": { "contents": {}, @@ -296,9 +256,69 @@ }, "refreshSeq": 0 }, - "2d711d96f190": { + "1e34370849ff": { "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "value": "", + "sent": 4 + }, + "2322bd630112": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "30196bc9a973": { + "name": "detailRefreshSeq", + "value": 1, + "sent": 1 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "37f8639648ec": { "contents": { @@ -426,6 +446,17 @@ }, "refreshSeq": 1 }, + "3d589c54ccdc": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 4 + }, "4b4ca1abe880": { "contents": {}, "drafts": { @@ -480,6 +511,11 @@ }, "refreshSeq": 1 }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "56b95ef32926": { "name": "github.prFileContents#1", "args": [ @@ -523,6 +559,11 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "58deaf3a6563": { "contents": {}, "drafts": { @@ -577,10 +618,6 @@ }, "refreshSeq": 1 }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, "5f4b54c12787": { "contents": {}, "drafts": { @@ -671,72 +708,6 @@ } } }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, - "6c85e969cc9d": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "7037a57cc5dc": { "contents": {}, "drafts": { @@ -886,9 +857,15 @@ }, "refreshSeq": 1 }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 1 + }, + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, "839ca552d09d": { "name": "github.rerunPRChecks#1", @@ -1031,11 +1008,7 @@ } } }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, - "8fd2d4171773": { + "8c3bfdbaf598": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -1058,6 +1031,14 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" } ], "files": [ @@ -1081,11 +1062,13 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 5 }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, "99d1c2948a61": { "contents": {}, @@ -1141,6 +1124,11 @@ }, "refreshSeq": 0 }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, "a5b56b388d19": { "name": "github.addPRReviewComment#1", "args": [ @@ -1187,6 +1175,11 @@ } } }, + "a82a30c9d838": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 3 + }, "a94ae672d47d": { "name": "github.rerunPRChecks#1", "args": [ @@ -1331,14 +1324,6 @@ }, "refreshSeq": 0 }, - "ab7ba6b82907": { - "name": "detailRefreshSeq", - "value": 1 - }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "b23acc82fe68": { "contents": {}, "drafts": { @@ -1393,9 +1378,15 @@ }, "refreshSeq": 0 }, - "ba65a7abe43b": { + "b53c339a3854": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 }, "bcb382ff8ccc": { "name": "github.resolveReviewThread#1", @@ -1466,14 +1457,6 @@ } } }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" - }, "c3ea578fcb3f": { "contents": { "src/index.ts": { @@ -1534,6 +1517,16 @@ }, "refreshSeq": 1 }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, "c9c92edf96b7": { "name": "github.rerunPRChecks#1", "args": [ @@ -1571,10 +1564,74 @@ } } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d530e4061382": { "name": "github.prFileContents#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" }, + "d6639f415773": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "dde1a64c282f": { "contents": {}, "drafts": { @@ -1763,13 +1820,25 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" + "f1d782d012f9": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 3 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f28dd4f3c720": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 5 + }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 } }, "recording": { @@ -1785,7 +1854,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "58deaf3a6563", - "effects": ["066ce15717c8", "82cd71d524c8", "ab7ba6b82907", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "30196bc9a973", "32a3635e06a4"] } }, { @@ -1800,14 +1869,14 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -1824,18 +1893,18 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -1853,23 +1922,23 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -1900,28 +1969,28 @@ }, "state": "38d90ed8a1ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -1935,7 +2004,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "dde1a64c282f", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1950,14 +2019,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -1974,18 +2043,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2003,23 +2072,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2050,28 +2119,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2085,7 +2154,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "ab2e67cea960", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -2100,14 +2169,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -2124,18 +2193,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2153,23 +2222,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2200,28 +2269,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2235,7 +2304,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "58deaf3a6563", - "effects": ["066ce15717c8", "82cd71d524c8", "ab7ba6b82907", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "30196bc9a973", "32a3635e06a4"] } }, { @@ -2250,14 +2319,14 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -2274,18 +2343,18 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2303,23 +2372,23 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2350,28 +2419,28 @@ }, "state": "38d90ed8a1ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2385,7 +2454,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "a94f06b0c356", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -2400,14 +2469,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -2424,18 +2493,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2453,23 +2522,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2500,28 +2569,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2535,7 +2604,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "5f4b54c12787", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -2550,14 +2619,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -2574,18 +2643,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2603,23 +2672,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2650,28 +2719,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2685,7 +2754,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "132e05e135de", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -2700,14 +2769,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -2724,18 +2793,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2753,23 +2822,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2800,28 +2869,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2835,7 +2904,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "1d6b81659322", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -2850,14 +2919,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -2874,18 +2943,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -2903,23 +2972,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2950,28 +3019,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -2985,7 +3054,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "e545b93f95c8", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -3000,14 +3069,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -3024,18 +3093,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -3053,23 +3122,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -3100,28 +3169,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -3135,7 +3204,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "b23acc82fe68", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -3150,14 +3219,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -3174,18 +3243,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -3203,23 +3272,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -3250,28 +3319,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -3285,7 +3354,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "1d6b81659322", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -3300,14 +3369,14 @@ }, "state": "7037a57cc5dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -3324,18 +3393,18 @@ }, "state": "99d1c2948a61", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -3353,23 +3422,23 @@ }, "state": "37f8639648ec", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -3400,28 +3469,28 @@ }, "state": "11b5f0721ce4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.resolvereviewthread-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.resolvereviewthread-1.json index 2a47925e80d..113605cc914 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.resolvereviewthread-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.resolvereviewthread-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "aa567e882db4be1bf3c9174e4af8266e1f9a25f8c353d7cb41f6c7e51c4d48b5", "platform": "darwin", @@ -52,17 +52,162 @@ "name": "github.setPRFileViewed#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, - "0c85499cb425": { + "02b35324051f": { "name": "prFileLoadingPath", "value": { "$rpc": "null" + }, + "sent": 4 + }, + "02b52513bb0d": { + "name": "mutatingStatus", + "value": true, + "sent": 4 + }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 + }, + "128457772a2b": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 5 + }, + "148dc3b21af5": { + "name": "github.resolveReviewThread#1", + "args": [ + { + "name": "method", + "value": "github.resolveReviewThread" + }, + { + "name": "params", + "value": { + "repo": "id:repo-1", + "resolve": true, + "threadId": "thread-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true + } } }, - "1022542acd40": { + "169fba726515": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + }, + "18d6aedd20c0": { + "name": "error", + "value": "outer refused", + "sent": 3 + }, + "19017ac9e692": { + "name": "github.resolveReviewThread#1", + "args": [ + { + "name": "method", + "value": "github.resolveReviewThread" + }, + { + "name": "params", + "value": { + "repo": "id:repo-1", + "resolve": true, + "threadId": "thread-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "2322bd630112": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -108,82 +253,13 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 }, - "148dc3b21af5": { - "name": "github.resolveReviewThread#1", - "args": [ - { - "name": "method", - "value": "github.resolveReviewThread" - }, - { - "name": "params", - "value": { - "repo": "id:repo-1", - "resolve": true, - "threadId": "thread-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true - } - } - }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, - "186f44bc465a": { + "26374b8263d6": { "name": "error", - "value": "Unknown method" - }, - "19017ac9e692": { - "name": "github.resolveReviewThread#1", - "args": [ - { - "name": "method", - "value": "github.resolveReviewThread" - }, - { - "name": "params", - "value": { - "repo": "id:repo-1", - "resolve": true, - "threadId": "thread-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "error": "refused" - } - } - } + "value": "transport failure", + "sent": 3 }, "29a4b370d70f": { "name": "github.resolveReviewThread#1", @@ -221,6 +297,16 @@ } } }, + "30196bc9a973": { + "name": "detailRefreshSeq", + "value": 1, + "sent": 1 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "3694dfb6503a": { "name": "github.resolveReviewThread#1", "args": [ @@ -320,9 +406,16 @@ }, "refreshSeq": 1 }, - "4403e56914a3": { - "name": "error", - "value": "Failed to resolve thread" + "3d589c54ccdc": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 4 }, "47e146b9987f": { "contents": {}, @@ -465,6 +558,11 @@ } } }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "56b95ef32926": { "name": "github.prFileContents#1", "args": [ @@ -508,6 +606,11 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "58deaf3a6563": { "contents": {}, "drafts": { @@ -562,20 +665,6 @@ }, "refreshSeq": 1 }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, "691c0f877d73": { "contents": {}, "drafts": { @@ -630,62 +719,6 @@ }, "refreshSeq": 1 }, - "6c85e969cc9d": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "719c7f70fd21": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" @@ -798,9 +831,10 @@ }, "refreshSeq": 1 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, "85d857bb3617": { "contents": { @@ -868,11 +902,7 @@ }, "refreshSeq": 1 }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, - "8fd2d4171773": { + "8c3bfdbaf598": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -895,6 +925,14 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" } ], "files": [ @@ -918,11 +956,13 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 5 }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, "9bc46994c57d": { "contents": {}, @@ -978,9 +1018,10 @@ }, "refreshSeq": 1 }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" + "value": "", + "sent": 0 }, "a5b56b388d19": { "name": "github.addPRReviewComment#1", @@ -1028,6 +1069,11 @@ } } }, + "a82a30c9d838": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 3 + }, "a9130d675f78": { "name": "github.resolveReviewThread#1", "args": [ @@ -1100,13 +1146,10 @@ } } }, - "ab7ba6b82907": { - "name": "detailRefreshSeq", - "value": 1 - }, - "ba65a7abe43b": { + "b57ded8a3ea3": { "name": "error", - "value": "outer refused" + "value": "", + "sent": 2 }, "bcb382ff8ccc": { "name": "github.resolveReviewThread#1", @@ -1174,9 +1217,10 @@ } } }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" + "c1b6a26ccafd": { + "name": "error", + "value": "Failed to resolve thread", + "sent": 3 }, "c3ea578fcb3f": { "contents": { @@ -1298,6 +1342,11 @@ }, "refreshSeq": 1 }, + "c68ce1c1e224": { + "name": "error", + "value": "Unknown method", + "sent": 3 + }, "c81d8dee87a4": { "name": "github.resolveReviewThread#1", "args": [ @@ -1372,7 +1421,21 @@ } } }, - "d3100658f437": { + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d530e4061382": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" + }, + "d6639f415773": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -1385,7 +1448,7 @@ "body": "please fix", "createdAt": "2020-01-01T00:00:00.000Z", "id": 501, - "isResolved": false, + "isResolved": true, "line": 12, "path": "src/index.ts", "threadId": "thread-1" @@ -1395,14 +1458,6 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" } ], "files": [ @@ -1426,11 +1481,18 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 3 }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" + "dabcddbeb1c5": { + "name": "error", + "value": "Connection closed", + "sent": 3 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 }, "e14b632f629a": { "name": "github.setPRFileViewed#1", @@ -1532,9 +1594,15 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f1d782d012f9": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 3 + }, + "f28dd4f3c720": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 5 }, "f62f9a51e15b": { "name": "github.resolveReviewThread#1", @@ -1586,7 +1654,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "58deaf3a6563", - "effects": ["066ce15717c8", "82cd71d524c8", "ab7ba6b82907", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "30196bc9a973", "32a3635e06a4"] } }, { @@ -1601,14 +1669,14 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -1625,18 +1693,18 @@ }, "state": "7df1ee4f121b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dabcddbeb1c5", + "0c0d6ea592d5" ] } }, @@ -1653,18 +1721,18 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -1682,23 +1750,23 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -1729,28 +1797,28 @@ }, "state": "38d90ed8a1ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -1767,18 +1835,18 @@ }, "state": "9bc46994c57d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5" ] } }, @@ -1796,23 +1864,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -1843,28 +1911,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -1881,18 +1949,18 @@ }, "state": "9bc46994c57d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5" ] } }, @@ -1910,23 +1978,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -1957,28 +2025,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -1995,18 +2063,18 @@ }, "state": "9bc46994c57d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5" ] } }, @@ -2024,23 +2092,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2071,28 +2139,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -2109,18 +2177,18 @@ }, "state": "9bc46994c57d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5" ] } }, @@ -2138,23 +2206,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2185,28 +2253,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -2223,18 +2291,18 @@ }, "state": "9bc46994c57d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5" ] } }, @@ -2252,23 +2320,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2299,28 +2367,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "4403e56914a3", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c1b6a26ccafd", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -2337,18 +2405,18 @@ }, "state": "eb645da7e93b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "18d6aedd20c0", + "0c0d6ea592d5" ] } }, @@ -2366,23 +2434,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "18d6aedd20c0", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2413,28 +2481,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "18d6aedd20c0", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -2451,18 +2519,18 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5" ] } }, @@ -2480,23 +2548,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2527,28 +2595,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -2565,18 +2633,18 @@ }, "state": "691c0f877d73", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c68ce1c1e224", + "0c0d6ea592d5" ] } }, @@ -2594,23 +2662,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c68ce1c1e224", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2641,28 +2709,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c68ce1c1e224", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -2679,18 +2747,18 @@ }, "state": "47e146b9987f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "26374b8263d6", + "0c0d6ea592d5" ] } }, @@ -2708,23 +2776,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "26374b8263d6", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2755,28 +2823,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "26374b8263d6", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } }, @@ -2793,18 +2861,18 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5" ] } }, @@ -2822,23 +2890,23 @@ }, "state": "c50c60286c56", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2869,28 +2937,28 @@ }, "state": "85d857bb3617", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "d3100658f437", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "128457772a2b", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.setprfileviewed-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.setprfileviewed-1.json index 6b7865d5bbd..17f28b81081 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.setprfileviewed-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.setprfileviewed-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "eefa7111ee94d5966692fb6f9bed1b3ccd7e1fe40c540438c005731d0cae305c", "platform": "darwin", @@ -13,10 +13,27 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "000516aa083b": { + "name": "error", + "value": "outer refused", + "sent": 2 + }, "023bacc5a99f": { "name": "github.setPRFileViewed#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" }, + "02b35324051f": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, + "02b52513bb0d": { + "name": "mutatingStatus", + "value": true, + "sent": 4 + }, "02bd45162a6b": { "name": "github.setPRFileViewed#1", "args": [ @@ -53,10 +70,6 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0a7337ca2136": { "name": "github.setPRFileViewed#1", "args": [ @@ -90,13 +103,21 @@ } } }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 }, - "1022542acd40": { + "169fba726515": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "2322bd630112": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -142,15 +163,8 @@ "$rpc": "null" }, "reviewRequests": [] - } - }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" + }, + "sent": 2 }, "2334be3be938": { "name": "github.setPRFileViewed#1", @@ -243,6 +257,16 @@ }, "refreshSeq": 1 }, + "30196bc9a973": { + "name": "detailRefreshSeq", + "value": 1, + "sent": 1 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "38d90ed8a1ee": { "contents": { "src/index.ts": { @@ -309,6 +333,17 @@ }, "refreshSeq": 1 }, + "3d589c54ccdc": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 4 + }, "4668891266a8": { "name": "github.setPRFileViewed#1", "args": [ @@ -487,6 +522,16 @@ } } }, + "52d25e1f3035": { + "name": "error", + "value": "Connection closed", + "sent": 2 + }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "56b95ef32926": { "name": "github.prFileContents#1", "args": [ @@ -530,6 +575,11 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "58deaf3a6563": { "contents": {}, "drafts": { @@ -584,9 +634,10 @@ }, "refreshSeq": 1 }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 }, "6399757d62ee": { "contents": {}, @@ -713,72 +764,6 @@ } } }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, - "6c85e969cc9d": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "719c7f70fd21": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" @@ -837,6 +822,11 @@ }, "refreshSeq": 1 }, + "7784692d9175": { + "name": "error", + "value": "Failed to sync viewed state with GitHub.", + "sent": 2 + }, "7c616ddf083d": { "contents": {}, "drafts": { @@ -928,9 +918,10 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, "8a6843ac346a": { "contents": { @@ -998,11 +989,7 @@ }, "refreshSeq": 1 }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, - "8fd2d4171773": { + "8c3bfdbaf598": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -1025,6 +1012,14 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" } ], "files": [ @@ -1048,7 +1043,13 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 5 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, "93e1660aeb33": { "contents": { @@ -1110,13 +1111,10 @@ }, "refreshSeq": 1 }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" - }, - "9f82f10075a3": { - "name": "error", - "value": "Connection closed" + "value": "", + "sent": 0 }, "a5b56b388d19": { "name": "github.addPRReviewComment#1", @@ -1164,6 +1162,11 @@ } } }, + "a82a30c9d838": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 3 + }, "a94ae672d47d": { "name": "github.rerunPRChecks#1", "args": [ @@ -1200,17 +1203,59 @@ } } }, - "ab7ba6b82907": { - "name": "detailRefreshSeq", - "value": 1 + "aced50dc7bb2": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 }, - "b68402b576a7": { + "b57ded8a3ea3": { "name": "error", - "value": "Failed to sync viewed state with GitHub." - }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" + "value": "", + "sent": 2 }, "bcb382ff8ccc": { "name": "github.resolveReviewThread#1", @@ -1299,10 +1344,6 @@ }, "refreshSeq": 1 }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" - }, "c3ea578fcb3f": { "contents": { "src/index.ts": { @@ -1363,6 +1404,68 @@ }, "refreshSeq": 1 }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "cecca3e068aa": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 5 + }, "cf332dfad305": { "contents": {}, "drafts": { @@ -1417,7 +1520,16 @@ }, "refreshSeq": 1 }, - "d0b0dc5f4c30": { + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d530e4061382": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" + }, + "d6639f415773": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -1451,7 +1563,7 @@ }, "path": "src/index.ts", "status": "modified", - "viewerViewedState": "UNVIEWED" + "viewerViewedState": "VIEWED" } ], "headSha": "head-sha", @@ -1463,11 +1575,8 @@ "$rpc": "null" }, "reviewRequests": [] - } - }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" + }, + "sent": 3 }, "d9e1d01cd9c5": { "name": "github.setPRFileViewed#1", @@ -1503,61 +1612,10 @@ } } }, - "dfaaaf2941fc": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 }, "e11cc4c14e30": { "name": "github.setPRFileViewed#1", @@ -1642,9 +1700,20 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f1cfc2d1bcc1": { + "name": "error", + "value": "Unknown method", + "sent": 2 + }, + "f1d782d012f9": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 3 + }, + "f28dd4f3c720": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 5 }, "f3d1bdd6c8c8": { "name": "github.setPRFileViewed#1", @@ -1699,7 +1768,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "58deaf3a6563", - "effects": ["066ce15717c8", "82cd71d524c8", "ab7ba6b82907", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "30196bc9a973", "32a3635e06a4"] } }, { @@ -1714,14 +1783,14 @@ }, "state": "6399757d62ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "52d25e1f3035", + "8cde53a56cdf" ] } }, @@ -1737,14 +1806,14 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -1761,18 +1830,18 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -1790,23 +1859,23 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -1837,28 +1906,28 @@ }, "state": "38d90ed8a1ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } }, @@ -1874,14 +1943,14 @@ }, "state": "7c616ddf083d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf" ] } }, @@ -1898,18 +1967,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -1927,23 +1996,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -1974,28 +2043,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2011,14 +2080,14 @@ }, "state": "7c616ddf083d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf" ] } }, @@ -2035,18 +2104,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -2064,23 +2133,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2111,28 +2180,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2148,14 +2217,14 @@ }, "state": "7c616ddf083d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf" ] } }, @@ -2172,18 +2241,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -2201,23 +2270,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2248,28 +2317,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2285,14 +2354,14 @@ }, "state": "7c616ddf083d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf" ] } }, @@ -2309,18 +2378,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -2338,23 +2407,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2385,28 +2454,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2422,14 +2491,14 @@ }, "state": "7c616ddf083d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf" ] } }, @@ -2446,18 +2515,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -2475,23 +2544,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2522,28 +2591,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "b68402b576a7", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "7784692d9175", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2559,14 +2628,14 @@ }, "state": "2f8b5d95971d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf" ] } }, @@ -2583,18 +2652,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -2612,23 +2681,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2659,28 +2728,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2696,14 +2765,14 @@ }, "state": "58deaf3a6563", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -2720,18 +2789,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -2749,23 +2818,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2796,28 +2865,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2833,14 +2902,14 @@ }, "state": "498104208398", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf" ] } }, @@ -2857,18 +2926,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -2886,23 +2955,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -2933,28 +3002,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -2970,14 +3039,14 @@ }, "state": "cf332dfad305", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf" ] } }, @@ -2994,18 +3063,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -3023,23 +3092,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -3070,28 +3139,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } }, @@ -3107,14 +3176,14 @@ }, "state": "58deaf3a6563", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -3131,18 +3200,18 @@ }, "state": "bfd9f0b65aa7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5" ] } }, @@ -3160,23 +3229,23 @@ }, "state": "93e1660aeb33", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -3207,28 +3276,28 @@ }, "state": "8a6843ac346a", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "d0b0dc5f4c30", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "dfaaaf2941fc", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "aced50dc7bb2", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "cecca3e068aa", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-github-github.addissuecomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-github-github.addissuecomment-1.json index 109de868221..6c9daffaf9e 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-github-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-github-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "1cc7fdf3139e0c5a81cd83987ffedc4f59cd4866fc1b4018b61e35eacc74fc11", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0c5891632462": { "draft": "a comment", "error": "Cannot read properties of null (reading 'ok')", @@ -80,9 +76,10 @@ "reviewRequests": [] } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "2145a24ffb7c": { "name": "github.addIssueComment#1", @@ -118,9 +115,10 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "35cd4f653b4b": { "draft": "", @@ -412,117 +410,10 @@ "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"body\":\"a comment\",\"type\":\"issue\"}}" }, - "81e65eb25119": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" - }, - "851011dc51fa": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "value": "[object Object]", + "sent": 1 }, "93995ce48034": { "draft": "a comment", @@ -587,13 +478,10 @@ "reviewRequests": [] } }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" - }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "value": "", + "sent": 0 }, "a83b7506e207": { "draft": "a comment", @@ -658,9 +546,65 @@ "reviewRequests": [] } }, - "ae5be7de2632": { + "adb96f97611d": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 + }, + "b53c339a3854": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Unknown method", + "sent": 1 }, "b7d0cffab0ca": { "name": "github.addIssueComment#1", @@ -699,10 +643,6 @@ } } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, "befa2eb39911": { "name": "github.addIssueComment#1", "args": [ @@ -737,9 +677,10 @@ } } }, - "c008e85e2d06": { + "c4f585980acf": { "name": "error", - "value": "inner refused" + "value": "inner refused", + "sent": 1 }, "c9035bb9d41a": { "draft": "a comment", @@ -804,6 +745,76 @@ "reviewRequests": [] } }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "df7f09ced6bf": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 + }, "e2f420146015": { "draft": "a comment", "error": "transport failure", @@ -912,10 +923,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, "ee8b117bd788": { "draft": "a comment", "error": "[object Object]", @@ -1015,10 +1022,6 @@ } } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, "f11c380fcc49": { "name": "github.addIssueComment#1", "args": [ @@ -1121,6 +1124,11 @@ "reviewRequests": [] } }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, "faeb3568c88c": { "name": "github.addIssueComment#1", "args": [ @@ -1158,6 +1166,11 @@ } } }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, "fca61a97021e": { "draft": "a comment", "error": "outer refused", @@ -1220,6 +1233,11 @@ }, "reviewRequests": [] } + }, + "ffdb6c1abbef": { + "name": "itemCommentDraft", + "value": "", + "sent": 1 } }, "recording": { @@ -1236,11 +1254,11 @@ }, "state": "35cd4f653b4b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "adb96f97611d", + "32a3635e06a4" ] } }, @@ -1254,7 +1272,7 @@ "comment-0": "eb79a9b3682a" }, "state": "a83b7506e207", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1267,7 +1285,7 @@ "comment-0": "eb79a9b3682a" }, "state": "0c5891632462", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -1281,11 +1299,11 @@ }, "state": "f5f33916a3a6", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "851011dc51fa", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "df7f09ced6bf", + "32a3635e06a4" ] } }, @@ -1299,7 +1317,7 @@ "comment-0": "eb79a9b3682a" }, "state": "93995ce48034", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -1312,7 +1330,7 @@ "comment-0": "eb79a9b3682a" }, "state": "ee8b117bd788", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -1325,7 +1343,7 @@ "comment-0": "eb79a9b3682a" }, "state": "fca61a97021e", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -1338,7 +1356,7 @@ "comment-0": "eb79a9b3682a" }, "state": "74056c9a1ad2", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -1351,7 +1369,7 @@ "comment-0": "eb79a9b3682a" }, "state": "c9035bb9d41a", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1364,7 +1382,7 @@ "comment-0": "eb79a9b3682a" }, "state": "e2f420146015", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1377,7 +1395,7 @@ "comment-0": "eb79a9b3682a" }, "state": "74056c9a1ad2", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-gitlab.addissuecomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-gitlab.addissuecomment-1.json index 87c7ee477e6..b2f3fc13174 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-gitlab.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-gitlab.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "154d91d00db23ea2718a6ee0b6c5cafc7233084532b3d561731b059d58e006f5", "platform": "darwin", @@ -46,10 +46,6 @@ "provider": "gitlab" } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "13cad23ebd19": { "name": "gitlab.addIssueComment#1", "args": [ @@ -87,10 +83,6 @@ } } }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" - }, "18cc1a09cdf1": { "draft": "a comment", "error": "Unknown method", @@ -124,6 +116,11 @@ "provider": "gitlab" } }, + "198ac889ae28": { + "name": "error", + "value": "transport failure", + "sent": 1 + }, "1f27ffccd3c3": { "name": "gitlab.addIssueComment#1", "args": [ @@ -238,10 +235,6 @@ "provider": "gitlab" } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, "2fcb406ea267": { "name": "gitlab.addIssueComment#1", "args": [ @@ -275,6 +268,11 @@ } } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "34aadd6fe168": { "draft": "a comment", "error": "Cannot read properties of null (reading 'ok')", @@ -420,6 +418,31 @@ "provider": "gitlab" } }, + "59727d722699": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 904 + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 + }, "597a2de36c85": { "draft": "", "error": "", @@ -563,37 +586,15 @@ "provider": "gitlab" } }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 1 }, - "92ea6ed9109e": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 904 - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } - }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" + "value": "", + "sent": 0 }, "a0921dd0e496": { "name": "gitlab.addIssueComment#1", @@ -629,13 +630,35 @@ } } }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "a5c1f8783879": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000" + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 }, - "ae5be7de2632": { + "b53c339a3854": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Unknown method", + "sent": 1 }, "b658c69cf462": { "draft": "a comment", @@ -670,10 +693,6 @@ "provider": "gitlab" } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, "bf67cac66565": { "draft": "a comment", "error": "transport failure", @@ -707,9 +726,15 @@ "provider": "gitlab" } }, - "c008e85e2d06": { + "c4f585980acf": { "name": "error", - "value": "inner refused" + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 }, "cb18508bfe06": { "name": "gitlab.addIssueComment#1", @@ -747,6 +772,16 @@ } } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -755,13 +790,10 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { + "f791567b212f": { "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "value": "outer refused", + "sent": 1 }, "f7fdfa8aaddb": { "name": "gitlab.addIssueComment#1", @@ -800,6 +832,11 @@ } } }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, "fe21c61cf6a3": { "name": "gitlab.addIssueComment#1", "args": [ @@ -837,29 +874,10 @@ } } }, - "ffa3e217cfc9": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000" - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } + "ffdb6c1abbef": { + "name": "itemCommentDraft", + "value": "", + "sent": 1 } }, "recording": { @@ -876,11 +894,11 @@ }, "state": "48a9b4deaa5b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "92ea6ed9109e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "59727d722699", + "32a3635e06a4" ] } }, @@ -894,7 +912,7 @@ "comment-0": "eb79a9b3682a" }, "state": "b658c69cf462", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -907,7 +925,7 @@ "comment-0": "eb79a9b3682a" }, "state": "34aadd6fe168", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -921,11 +939,11 @@ }, "state": "597a2de36c85", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "ffa3e217cfc9", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "a5c1f8783879", + "32a3635e06a4" ] } }, @@ -939,7 +957,7 @@ "comment-0": "eb79a9b3682a" }, "state": "62e2ee2207c3", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -952,7 +970,7 @@ "comment-0": "eb79a9b3682a" }, "state": "27e26e9d4ca3", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -965,7 +983,7 @@ "comment-0": "eb79a9b3682a" }, "state": "7a6c84318727", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -978,7 +996,7 @@ "comment-0": "eb79a9b3682a" }, "state": "034e6a1ee295", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -991,7 +1009,7 @@ "comment-0": "eb79a9b3682a" }, "state": "18cc1a09cdf1", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1004,7 +1022,7 @@ "comment-0": "eb79a9b3682a" }, "state": "bf67cac66565", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1017,7 +1035,7 @@ "comment-0": "eb79a9b3682a" }, "state": "034e6a1ee295", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-mr-gitlab.addmrcomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-mr-gitlab.addmrcomment-1.json index 506bfddae3d..20e1a1b396b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-mr-gitlab.addmrcomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-mr-gitlab.addmrcomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "ae07579881829263a2b5590249d4119f5d9f4ef3877149ac3b780ad985413f00", "platform": "darwin", @@ -51,10 +51,6 @@ "name": "gitlab.addMRComment#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addMRComment\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0846de0f949a": { "draft": "a comment", "error": "transport failure", @@ -88,9 +84,35 @@ "provider": "gitlab" } }, - "186f44bc465a": { + "1792a570e51c": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 905 + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 + }, + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "20abdda2b770": { "name": "gitlab.addMRComment#1", @@ -125,9 +147,10 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "3b3dd5281511": { "draft": "a comment", @@ -337,6 +360,11 @@ "provider": "gitlab" } }, + "7d901d60a01a": { + "name": "error", + "value": "[object Object]", + "sent": 1 + }, "7f2697ace03b": { "name": "gitlab.addMRComment#1", "args": [ @@ -374,10 +402,6 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "85f672c0515f": { "draft": "", "error": "", @@ -417,9 +441,10 @@ "provider": "gitlab" } }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" + "value": "", + "sent": 0 }, "9fbb0c0c00a3": { "draft": "a comment", @@ -454,9 +479,30 @@ "provider": "gitlab" } }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "a5c1f8783879": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000" + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 }, "ad694b26e210": { "name": "gitlab.addMRComment#1", @@ -528,13 +574,10 @@ "provider": "gitlab" } }, - "ae5be7de2632": { + "b53c339a3854": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, "bb90b36099bc": { "draft": "a comment", @@ -569,9 +612,10 @@ "provider": "gitlab" } }, - "c008e85e2d06": { + "c4f585980acf": { "name": "error", - "value": "inner refused" + "value": "inner refused", + "sent": 1 }, "c6b7aaa4bd08": { "name": "gitlab.addMRComment#1", @@ -651,6 +695,16 @@ } } }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "d447b467c652": { "name": "gitlab.addMRComment#1", "args": [ @@ -690,6 +744,11 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d8a0bdf0682e": { "name": "gitlab.addMRComment#1", "args": [ @@ -797,30 +856,6 @@ } } }, - "e25faf755127": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 905 - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -829,37 +864,20 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { + "f791567b212f": { "name": "error", - "value": "[object Object]" + "value": "outer refused", + "sent": 1 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 }, - "ffa3e217cfc9": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000" - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } + "ffdb6c1abbef": { + "name": "itemCommentDraft", + "value": "", + "sent": 1 } }, "recording": { @@ -876,11 +894,11 @@ }, "state": "6c49f5e0f2ca", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "e25faf755127", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "1792a570e51c", + "32a3635e06a4" ] } }, @@ -894,7 +912,7 @@ "comment-0": "eb79a9b3682a" }, "state": "4f6907510e35", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -907,7 +925,7 @@ "comment-0": "eb79a9b3682a" }, "state": "9fbb0c0c00a3", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -921,11 +939,11 @@ }, "state": "85f672c0515f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "ffa3e217cfc9", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "a5c1f8783879", + "32a3635e06a4" ] } }, @@ -939,7 +957,7 @@ "comment-0": "eb79a9b3682a" }, "state": "bb90b36099bc", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -952,7 +970,7 @@ "comment-0": "eb79a9b3682a" }, "state": "60cf785513ee", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -965,7 +983,7 @@ "comment-0": "eb79a9b3682a" }, "state": "564d9b281404", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -978,7 +996,7 @@ "comment-0": "eb79a9b3682a" }, "state": "ae5917f96fbd", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -991,7 +1009,7 @@ "comment-0": "eb79a9b3682a" }, "state": "3b3dd5281511", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1004,7 +1022,7 @@ "comment-0": "eb79a9b3682a" }, "state": "0846de0f949a", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1017,7 +1035,7 @@ "comment-0": "eb79a9b3682a" }, "state": "ae5917f96fbd", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-github-github.workitemdetails-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-github-github.workitemdetails-1.json index 40dac58b2bd..e49a5b5377f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-github-github.workitemdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-github-github.workitemdetails-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "955729f9100dce7eeb103f7b4d08ff56ac66853b9ad0d33627c0838011287bca", "platform": "darwin", @@ -13,13 +13,29 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0edfe9d32732": { - "name": "detailError", - "value": "Unknown method" + "026c8cc37792": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [], + "files": [], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": "APPROVED", + "reviewRequests": [] + }, + "sent": 1 }, - "1553e3419a3d": { - "name": "detailError", - "value": "outer refused" + "1867a9df681c": { + "name": "detailLoading", + "value": false, + "sent": 1 }, "1874e6e64ab8": { "error": "", @@ -76,9 +92,32 @@ "reviewRequests": [] } }, - "3b01c25bcd45": { - "name": "detailError", - "value": "" + "2d86e33e1972": { + "name": "detailPayload", + "value": { + "assignees": [], + "baseSha": { + "$rpc": "undefined" + }, + "body": "", + "checks": [], + "comments": [], + "files": [], + "headSha": { + "$rpc": "undefined" + }, + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": { + "$rpc": "undefined" + }, + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 }, "3de07d9166a8": { "error": "outer refused", @@ -123,9 +162,10 @@ "$rpc": "null" } }, - "468cc28b676c": { + "490069b5b08d": { "name": "detailError", - "value": "transport failure" + "value": "Unknown method", + "sent": 1 }, "54ee429ef116": { "name": "github.workItemDetails#1", @@ -175,6 +215,11 @@ } } }, + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, "64e5ae4019a2": { "name": "github.workItemDetails#1", "args": [ @@ -207,6 +252,11 @@ } } }, + "6985c6cf3587": { + "name": "detailError", + "value": "outer refused", + "sent": 1 + }, "6a25e546eff7": { "error": "Details not found", "item": { @@ -288,34 +338,6 @@ } } }, - "7d21147e56c1": { - "name": "detailLoading", - "value": true - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "8104eddfeb38": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [], - "files": [], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": "APPROVED", - "reviewRequests": [] - } - }, "85b9acf85c67": { "name": "github.workItemDetails#1", "args": [ @@ -352,9 +374,10 @@ } } }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false + "8832c17871d2": { + "name": "detailError", + "value": "", + "sent": 1 }, "978c0a45552a": { "name": "github.workItemDetails#1", @@ -422,6 +445,18 @@ } } }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 + }, "a8fceb0dbc5a": { "error": "", "item": { @@ -635,32 +670,6 @@ } } }, - "cd031615485c": { - "name": "detailPayload", - "value": { - "assignees": [], - "baseSha": { - "$rpc": "undefined" - }, - "body": "", - "checks": [], - "comments": [], - "files": [], - "headSha": { - "$rpc": "undefined" - }, - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": { - "$rpc": "undefined" - }, - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "ce4ab5211cfd": { "name": "github.workItemDetails#1", "args": [ @@ -696,14 +705,15 @@ } } }, + "d2190faefc97": { + "name": "detailError", + "value": "Details not found", + "sent": 1 + }, "d46a22dbc133": { "name": "github.workItemDetails#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"type\":\"pr\"}}" }, - "dc8cf3af41bf": { - "name": "detailError", - "value": "Details not found" - }, "eb1f947767b0": { "error": "", "item": { @@ -833,6 +843,11 @@ "payload": { "$rpc": "null" } + }, + "fd373ee8144d": { + "name": "detailError", + "value": "transport failure", + "sent": 1 } }, "recording": { @@ -848,11 +863,11 @@ }, "state": "1874e6e64ab8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "8104eddfeb38", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "026c8cc37792", + "1867a9df681c" ] } }, @@ -866,11 +881,11 @@ }, "state": "6a25e546eff7", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dc8cf3af41bf", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "d2190faefc97", + "1867a9df681c" ] } }, @@ -884,11 +899,11 @@ }, "state": "6a25e546eff7", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dc8cf3af41bf", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "d2190faefc97", + "1867a9df681c" ] } }, @@ -902,11 +917,11 @@ }, "state": "a8fceb0dbc5a", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "cd031615485c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "2d86e33e1972", + "1867a9df681c" ] } }, @@ -920,11 +935,11 @@ }, "state": "a8fceb0dbc5a", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "cd031615485c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "2d86e33e1972", + "1867a9df681c" ] } }, @@ -938,11 +953,11 @@ }, "state": "a8fceb0dbc5a", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "cd031615485c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "2d86e33e1972", + "1867a9df681c" ] } }, @@ -956,11 +971,11 @@ }, "state": "3de07d9166a8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1553e3419a3d", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "6985c6cf3587", + "1867a9df681c" ] } }, @@ -974,11 +989,11 @@ }, "state": "eb1f947767b0", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "8832c17871d2", + "1867a9df681c" ] } }, @@ -992,11 +1007,11 @@ }, "state": "c4c878da84ba", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "0edfe9d32732", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "490069b5b08d", + "1867a9df681c" ] } }, @@ -1010,11 +1025,11 @@ }, "state": "fbedc0789cfe", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "468cc28b676c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "fd373ee8144d", + "1867a9df681c" ] } }, @@ -1028,11 +1043,11 @@ }, "state": "eb1f947767b0", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "8832c17871d2", + "1867a9df681c" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-gitlab-gitlab.workitemdetails-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-gitlab-gitlab.workitemdetails-1.json index c6103602dc5..22d1924157f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-gitlab-gitlab.workitemdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-gitlab-gitlab.workitemdetails-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "d163c6125fa180da7575642ee29f4bb18e3678079b7c30a42934550896d5b3c1", "platform": "darwin", @@ -54,37 +54,10 @@ } } }, - "0edfe9d32732": { - "name": "detailError", - "value": "Unknown method" - }, - "14aea668686d": { - "name": "actionItem", - "value": { - "provider": "gitlab", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 0, - "pending": 0, - "state": "none", - "total": 0 - }, - "id": "gitlab:issue:4", - "labels": ["bug"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - }, - "1553e3419a3d": { - "name": "detailError", - "value": "outer refused" + "1867a9df681c": { + "name": "detailLoading", + "value": false, + "sent": 1 }, "21e97f41ebab": { "name": "gitlab.workItemDetails#1", @@ -170,36 +143,17 @@ } } }, - "3383a335299c": { - "name": "actionItem", + "3b439a0be8e6": { + "name": "detailPayload", "value": { - "provider": "gitlab", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 0, - "pending": 0, - "state": "none", - "total": 0 - }, - "id": "gitlab:issue:4", - "labels": ["bug"], - "mergeable": "MERGEABLE", - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "reviewDecision": "approved", - "reviewerCount": 0, - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - }, - "3b01c25bcd45": { - "name": "detailError", - "value": "" + "assignees": [], + "body": "", + "comments": [], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 }, "407e67708c25": { "name": "gitlab.workItemDetails#1", @@ -234,9 +188,10 @@ } } }, - "468cc28b676c": { + "490069b5b08d": { "name": "detailError", - "value": "transport failure" + "value": "Unknown method", + "sent": 1 }, "5672ba1c0594": { "error": "", @@ -294,6 +249,11 @@ "provider": "gitlab" } }, + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, "58bc89f3db3d": { "name": "gitlab.workItemDetails#1", "args": [ @@ -330,41 +290,10 @@ } } }, - "5e427a730c1a": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 0, - "pending": 0, - "state": "none", - "total": 0 - }, - "id": "gitlab:issue:4", - "labels": ["bug"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - ] - }, - "7d21147e56c1": { - "name": "detailLoading", - "value": true - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } + "6985c6cf3587": { + "name": "detailError", + "value": "outer refused", + "sent": 1 }, "7e6dc074a7c0": { "name": "gitlab.workItemDetails#1", @@ -438,6 +367,38 @@ "$rpc": "null" } }, + "8832c17871d2": { + "name": "detailError", + "value": "", + "sent": 1 + }, + "8c13b62e947f": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 0, + "pending": 0, + "state": "none", + "total": 0 + }, + "id": "gitlab:issue:4", + "labels": ["bug"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + } + ], + "sent": 1 + }, "8fe769a85d76": { "name": "gitlab.workItemDetails#1", "args": [ @@ -477,10 +438,6 @@ } } }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false - }, "9777323a741d": { "name": "gitlab.workItemDetails#1", "args": [ @@ -550,16 +507,29 @@ "$rpc": "null" } }, - "9cc074ee9e5f": { + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 + }, + "a11900db0941": { "name": "detailPayload", "value": { "assignees": [], - "body": "", + "body": "body", "comments": [], "labels": ["bug"], "pipelineJobs": [], "provider": "gitlab" - } + }, + "sent": 1 }, "c305480d6e9b": { "name": "gitlab.workItemDetails#1", @@ -632,6 +602,39 @@ } } }, + "d2190faefc97": { + "name": "detailError", + "value": "Details not found", + "sent": 1 + }, + "d6522427a24c": { + "name": "actionItem", + "value": { + "provider": "gitlab", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 0, + "pending": 0, + "state": "none", + "total": 0 + }, + "id": "gitlab:issue:4", + "labels": ["bug"], + "mergeable": "MERGEABLE", + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "reviewDecision": "approved", + "reviewerCount": 0, + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + }, + "sent": 1 + }, "db0c674d34f9": { "error": "", "item": { @@ -667,9 +670,35 @@ "$rpc": "null" } }, - "dc8cf3af41bf": { - "name": "detailError", - "value": "Details not found" + "e8f33a90ab1d": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 0, + "pending": 0, + "state": "none", + "total": 0 + }, + "id": "gitlab:issue:4", + "labels": ["bug"], + "mergeable": "MERGEABLE", + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "reviewDecision": "approved", + "reviewerCount": 0, + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + } + ], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -714,6 +743,31 @@ "$rpc": "null" } }, + "ee64a84ffbd4": { + "name": "actionItem", + "value": { + "provider": "gitlab", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 0, + "pending": 0, + "state": "none", + "total": 0 + }, + "id": "gitlab:issue:4", + "labels": ["bug"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + }, + "sent": 1 + }, "f09795d68134": { "name": "gitlab.workItemDetails#1", "args": [ @@ -848,45 +902,10 @@ "provider": "gitlab" } }, - "f461061bfc92": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } - }, - "f8c6ce51db00": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 0, - "pending": 0, - "state": "none", - "total": 0 - }, - "id": "gitlab:issue:4", - "labels": ["bug"], - "mergeable": "MERGEABLE", - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "reviewDecision": "approved", - "reviewerCount": 0, - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - ] + "fd373ee8144d": { + "name": "detailError", + "value": "transport failure", + "sent": 1 } }, "recording": { @@ -902,13 +921,13 @@ }, "state": "f2d8814a60b2", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "f461061bfc92", - "3383a335299c", - "f8c6ce51db00", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "a11900db0941", + "d6522427a24c", + "e8f33a90ab1d", + "1867a9df681c" ] } }, @@ -922,11 +941,11 @@ }, "state": "f24316a2872c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dc8cf3af41bf", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "d2190faefc97", + "1867a9df681c" ] } }, @@ -940,11 +959,11 @@ }, "state": "f24316a2872c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dc8cf3af41bf", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "d2190faefc97", + "1867a9df681c" ] } }, @@ -958,13 +977,13 @@ }, "state": "5672ba1c0594", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "9cc074ee9e5f", - "14aea668686d", - "5e427a730c1a", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "3b439a0be8e6", + "ee64a84ffbd4", + "8c13b62e947f", + "1867a9df681c" ] } }, @@ -978,13 +997,13 @@ }, "state": "5672ba1c0594", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "9cc074ee9e5f", - "14aea668686d", - "5e427a730c1a", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "3b439a0be8e6", + "ee64a84ffbd4", + "8c13b62e947f", + "1867a9df681c" ] } }, @@ -998,13 +1017,13 @@ }, "state": "5672ba1c0594", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "9cc074ee9e5f", - "14aea668686d", - "5e427a730c1a", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "3b439a0be8e6", + "ee64a84ffbd4", + "8c13b62e947f", + "1867a9df681c" ] } }, @@ -1018,11 +1037,11 @@ }, "state": "9b89e6739339", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1553e3419a3d", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "6985c6cf3587", + "1867a9df681c" ] } }, @@ -1036,11 +1055,11 @@ }, "state": "db0c674d34f9", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "8832c17871d2", + "1867a9df681c" ] } }, @@ -1054,11 +1073,11 @@ }, "state": "7ed24390e683", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "0edfe9d32732", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "490069b5b08d", + "1867a9df681c" ] } }, @@ -1072,11 +1091,11 @@ }, "state": "ed88b2b061f9", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "468cc28b676c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "fd373ee8144d", + "1867a9df681c" ] } }, @@ -1090,11 +1109,11 @@ }, "state": "db0c674d34f9", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "8832c17871d2", + "1867a9df681c" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.getissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.getissue-1.json index 0b57f86767e..9ada2264a05 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.getissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.getissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "83b30b2a160d162d16c66aa3bf6a633489e86dd4fd1c30828d2d244164b9c95e", "platform": "darwin", @@ -13,7 +13,7 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "078876b4148c": { + "11e204c49d13": { "name": "detailPayload", "value": { "assignee": { @@ -36,15 +36,8 @@ "$rpc": "undefined" }, "provider": "linear" - } - }, - "0edfe9d32732": { - "name": "detailError", - "value": "Unknown method" - }, - "1553e3419a3d": { - "name": "detailError", - "value": "outer refused" + }, + "sent": 2 }, "1736ff39135a": { "name": "linear.getIssue#1", @@ -122,6 +115,11 @@ } } }, + "18bc97912b6a": { + "name": "detailError", + "value": "outer refused", + "sent": 2 + }, "2048f9989c2c": { "error": "Unknown method", "item": { @@ -191,13 +189,15 @@ "$rpc": "null" } }, - "3b01c25bcd45": { + "23205da572cd": { "name": "detailError", - "value": "" + "value": "Unknown method", + "sent": 2 }, - "468cc28b676c": { + "39ca42c97176": { "name": "detailError", - "value": "transport failure" + "value": "", + "sent": 2 }, "47f3ae87c00a": { "name": "linear.getIssue#1", @@ -321,6 +321,55 @@ "$rpc": "null" } }, + "4a3ebfb61f95": { + "name": "detailError", + "value": "transport failure", + "sent": 2 + }, + "501841dc050a": { + "name": "actionItem", + "value": { + "provider": "linear", + "source": { + "description": "", + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "project": { + "$rpc": "null" + }, + "state": { + "color": "#000000", + "name": "Todo", + "type": "unstarted" + }, + "subIssues": [], + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering", + "workspaceId": "linear-workspace" + }, + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace", + "workspaceName": "Workspace" + }, + "title": "A Linear issue" + }, + "sent": 2 + }, + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, + "598d258cc2a8": { + "name": "detailError", + "value": "Details not found", + "sent": 2 + }, "5ce7f3fa558f": { "name": "linear.getIssue#1", "args": [ @@ -492,16 +541,6 @@ } } }, - "7d21147e56c1": { - "name": "detailLoading", - "value": true - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, "8a85a95f03c5": { "error": "", "item": { @@ -625,10 +664,6 @@ } } }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false - }, "939d91c4130d": { "error": "Details not found", "item": { @@ -698,6 +733,18 @@ "$rpc": "null" } }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 + }, "a08c3f9a0d9e": { "error": "", "item": { @@ -958,38 +1005,31 @@ } } }, - "c051440f1f05": { - "name": "actionItem", + "d33a797192d7": { + "name": "detailPayload", "value": { - "provider": "linear", - "source": { - "description": "", - "id": "issue-1", - "identifier": "ENG-1", - "labels": [], - "priority": 0, - "project": { - "$rpc": "null" - }, - "state": { - "color": "#000000", - "name": "Todo", - "type": "unstarted" - }, - "subIssues": [], - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering", - "workspaceId": "linear-workspace" - }, - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace", - "workspaceName": "Workspace" + "assignee": { + "$rpc": "undefined" }, - "title": "A Linear issue" - } + "children": [], + "comments": [ + { + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-1", + "user": { + "displayName": "Octo" + } + } + ], + "description": "", + "labels": [], + "project": { + "$rpc": "undefined" + }, + "provider": "linear" + }, + "sent": 2 }, "d5a45b61726a": { "name": "linear.getIssue#1", @@ -1025,35 +1065,6 @@ } } }, - "dc8cf3af41bf": { - "name": "detailError", - "value": "Details not found" - }, - "e273db1e5714": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [ - { - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-1", - "user": { - "displayName": "Octo" - } - } - ], - "description": "", - "labels": [], - "project": { - "$rpc": "undefined" - }, - "provider": "linear" - } - }, "e7f73629d075": { "name": "linear.issueComments#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" @@ -1066,6 +1077,11 @@ "$rpc": "undefined" } }, + "ee0c4638d266": { + "name": "detailLoading", + "value": false, + "sent": 2 + }, "ff164d27a928": { "name": "linear.getIssue#1", "args": [ @@ -1115,12 +1131,12 @@ }, "state": "a2e20872c3f2", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "078876b4148c", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "11e204c49d13", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1134,11 +1150,11 @@ }, "state": "939d91c4130d", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dc8cf3af41bf", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "598d258cc2a8", + "ee0c4638d266" ] } }, @@ -1152,11 +1168,11 @@ }, "state": "939d91c4130d", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dc8cf3af41bf", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "598d258cc2a8", + "ee0c4638d266" ] } }, @@ -1170,12 +1186,12 @@ }, "state": "8a85a95f03c5", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e273db1e5714", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "d33a797192d7", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1189,12 +1205,12 @@ }, "state": "8a85a95f03c5", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e273db1e5714", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "d33a797192d7", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1208,12 +1224,12 @@ }, "state": "8a85a95f03c5", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "e273db1e5714", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "d33a797192d7", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1227,11 +1243,11 @@ }, "state": "619b59120fba", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1553e3419a3d", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "18bc97912b6a", + "ee0c4638d266" ] } }, @@ -1245,11 +1261,11 @@ }, "state": "a08c3f9a0d9e", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "39ca42c97176", + "ee0c4638d266" ] } }, @@ -1263,11 +1279,11 @@ }, "state": "2048f9989c2c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "0edfe9d32732", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "23205da572cd", + "ee0c4638d266" ] } }, @@ -1281,11 +1297,11 @@ }, "state": "4861b36f5d5c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "468cc28b676c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "4a3ebfb61f95", + "ee0c4638d266" ] } }, @@ -1299,11 +1315,11 @@ }, "state": "a08c3f9a0d9e", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "39ca42c97176", + "ee0c4638d266" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.issuecomments-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.issuecomments-1.json index b997a8c8106..01421b14842 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.issuecomments-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.issuecomments-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "06b06c84f4b8a1ee8e5159d8ada2656da4d7096729759c76601ad4e251310924", "platform": "darwin", @@ -13,31 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "078876b4148c": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [ - { - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-1", - "user": { - "displayName": "Octo" - } - } - ], - "description": "a description", - "labels": [], - "project": { - "$rpc": "undefined" - }, - "provider": "linear" - } - }, "07d97c9cd880": { "error": "", "item": { @@ -120,23 +95,31 @@ "provider": "linear" } }, - "11f17c8f7e6d": { + "11e204c49d13": { "name": "detailPayload", "value": { "assignee": { "$rpc": "undefined" }, "children": [], - "comments": { - "error": "refused" - }, + "comments": [ + { + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-1", + "user": { + "displayName": "Octo" + } + } + ], "description": "a description", "labels": [], "project": { "$rpc": "undefined" }, "provider": "linear" - } + }, + "sent": 2 }, "16e0cc3237e8": { "name": "linear.issueComments#1", @@ -210,6 +193,67 @@ } } }, + "1dd5ca78f970": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": { + "error": "inner refused", + "ok": false + }, + "description": "a description", + "labels": [], + "project": { + "$rpc": "undefined" + }, + "provider": "linear" + }, + "sent": 2 + }, + "24573d368fff": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": { + "error": { + "message": "inner refused" + }, + "ok": false + }, + "description": "a description", + "labels": [], + "project": { + "$rpc": "undefined" + }, + "provider": "linear" + }, + "sent": 2 + }, + "24748cd7b9f3": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": { + "error": "refused" + }, + "description": "a description", + "labels": [], + "project": { + "$rpc": "undefined" + }, + "provider": "linear" + }, + "sent": 2 + }, "3276e1a41446": { "name": "linear.issueComments#1", "args": [ @@ -326,9 +370,10 @@ "provider": "linear" } }, - "3b01c25bcd45": { + "39ca42c97176": { "name": "detailError", - "value": "" + "value": "", + "sent": 2 }, "3bb04fc55c1a": { "name": "linear.issueComments#1", @@ -397,26 +442,6 @@ } } }, - "4343eb3c5159": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [], - "description": "a description", - "labels": [], - "project": { - "$rpc": "undefined" - }, - "provider": "linear" - } - }, - "468cc28b676c": { - "name": "detailError", - "value": "transport failure" - }, "47f3ae87c00a": { "name": "linear.getIssue#1", "args": [ @@ -539,38 +564,78 @@ "$rpc": "null" } }, - "68be69c559a1": { + "4a3ebfb61f95": { + "name": "detailError", + "value": "transport failure", + "sent": 2 + }, + "501841dc050a": { + "name": "actionItem", + "value": { + "provider": "linear", + "source": { + "description": "", + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "project": { + "$rpc": "null" + }, + "state": { + "color": "#000000", + "name": "Todo", + "type": "unstarted" + }, + "subIssues": [], + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering", + "workspaceId": "linear-workspace" + }, + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace", + "workspaceName": "Workspace" + }, + "title": "A Linear issue" + }, + "sent": 2 + }, + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, + "6fe5d1bcbc90": { "name": "detailPayload", "value": { "assignee": { "$rpc": "undefined" }, "children": [], - "comments": { - "error": "inner refused", - "ok": false - }, + "comments": [], "description": "a description", "labels": [], "project": { "$rpc": "undefined" }, "provider": "linear" - } + }, + "sent": 2 }, - "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 }, "9f8c9f7294a0": { "name": "linear.issueComments#1", @@ -883,64 +948,10 @@ "provider": "linear" } }, - "b45bc63e632d": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": { - "error": { - "message": "inner refused" - }, - "ok": false - }, - "description": "a description", - "labels": [], - "project": { - "$rpc": "undefined" - }, - "provider": "linear" - } - }, "bb215a1eb59b": { "name": "linear.getIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" }, - "c051440f1f05": { - "name": "actionItem", - "value": { - "provider": "linear", - "source": { - "description": "", - "id": "issue-1", - "identifier": "ENG-1", - "labels": [], - "priority": 0, - "project": { - "$rpc": "null" - }, - "state": { - "color": "#000000", - "name": "Todo", - "type": "unstarted" - }, - "subIssues": [], - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering", - "workspaceId": "linear-workspace" - }, - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace", - "workspaceName": "Workspace" - }, - "title": "A Linear issue" - } - }, "c360db88accd": { "name": "linear.issueComments#1", "args": [ @@ -1054,6 +1065,11 @@ } } }, + "ee0c4638d266": { + "name": "detailLoading", + "value": false, + "sent": 2 + }, "ee7d19abed68": { "error": "", "item": { @@ -1183,12 +1199,12 @@ }, "state": "a2e20872c3f2", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "078876b4148c", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "11e204c49d13", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1202,12 +1218,12 @@ }, "state": "388d0ceb3385", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "4343eb3c5159", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "6fe5d1bcbc90", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1221,12 +1237,12 @@ }, "state": "388d0ceb3385", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "4343eb3c5159", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "6fe5d1bcbc90", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1240,12 +1256,12 @@ }, "state": "ee7d19abed68", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "11f17c8f7e6d", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "24748cd7b9f3", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1259,12 +1275,12 @@ }, "state": "07d97c9cd880", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "68be69c559a1", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "1dd5ca78f970", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1278,12 +1294,12 @@ }, "state": "a387bb127ac0", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "b45bc63e632d", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "24573d368fff", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1297,12 +1313,12 @@ }, "state": "388d0ceb3385", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "4343eb3c5159", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "6fe5d1bcbc90", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1316,12 +1332,12 @@ }, "state": "388d0ceb3385", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "4343eb3c5159", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "6fe5d1bcbc90", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1335,12 +1351,12 @@ }, "state": "388d0ceb3385", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "4343eb3c5159", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "6fe5d1bcbc90", + "501841dc050a", + "ee0c4638d266" ] } }, @@ -1354,11 +1370,11 @@ }, "state": "4861b36f5d5c", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "468cc28b676c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "4a3ebfb61f95", + "ee0c4638d266" ] } }, @@ -1372,11 +1388,11 @@ }, "state": "a08c3f9a0d9e", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "3b01c25bcd45", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "39ca42c97176", + "ee0c4638d266" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listassignableusers-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listassignableusers-1.json index 57a0b0f5e24..38b69708858 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listassignableusers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listassignableusers-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "3ef6ef046f60d2d11ef81adf69bd5216036405eb05e5fd30cf1c402120488ee5", "platform": "darwin", @@ -47,16 +47,6 @@ } } }, - "0358aa4ddd2c": { - "name": "itemAssignableUsers", - "value": [] - }, - "038e078eb5e9": { - "name": "itemAssignableUsers", - "value": { - "error": "refused" - } - }, "046247fe2cbb": { "labels": ["bug", "chore"], "labelsError": "", @@ -98,6 +88,26 @@ } } }, + "13787c8669de": { + "name": "itemAssignableUsers", + "value": { + "error": { + "message": "inner refused" + }, + "ok": false + }, + "sent": 2 + }, + "13999b62c314": { + "name": "itemAssignableUsersError", + "value": "Unknown method", + "sent": 2 + }, + "14b04c3d1156": { + "name": "itemAssignableUsersLoading", + "value": true, + "sent": 1 + }, "187a6bd82efe": { "labels": ["bug", "chore"], "labelsError": "", @@ -114,25 +124,18 @@ "usersError": "", "usersLoading": false }, - "226ea8e4b98b": { - "name": "itemAssignableUsersError", - "value": "" - }, - "2c2f41412e1c": { + "2464d7ef3769": { "name": "itemAssignableUsers", "value": { "error": "inner refused", "ok": false - } + }, + "sent": 2 }, - "2d65278dd821": { - "name": "itemAssignableUsers", - "value": { - "error": { - "message": "inner refused" - }, - "ok": false - } + "30554accaab5": { + "name": "itemAvailableLabels", + "value": ["bug", "chore"], + "sent": 2 }, "31a9aea0d54a": { "name": "github.listLabels#1", @@ -165,17 +168,15 @@ } } }, - "3b9ce19a0449": { - "name": "itemBodyDraft", - "value": "body" - }, - "419cde8cf391": { - "name": "itemLabelsError", - "value": "" - }, - "4773ce28d761": { + "322343237b5a": { "name": "itemAssignableUsersError", - "value": "Unknown method" + "value": "transport failure", + "sent": 2 + }, + "3af8e2a236cf": { + "name": "itemAssignableUsersError", + "value": "", + "sent": 1 }, "4811b212ee14": { "labels": ["bug", "chore"], @@ -187,9 +188,10 @@ "usersError": "", "usersLoading": false }, - "50ab150a7632": { - "name": "itemAssignableUsersLoading", - "value": true + "4be2a2e21bd0": { + "name": "itemBodyDraft", + "value": "body", + "sent": 0 }, "51e44980e984": { "labels": ["bug", "chore"], @@ -211,6 +213,11 @@ "usersError": "outer refused", "usersLoading": false }, + "60ab7459b747": { + "name": "itemLabelsLoading", + "value": true, + "sent": 0 + }, "6107288aca15": { "labels": ["bug", "chore"], "labelsError": "", @@ -221,16 +228,6 @@ "usersError": "", "usersLoading": false }, - "6308cf824fe4": { - "name": "itemAssignableUsers", - "value": { - "$rpc": "undefined" - } - }, - "63f911a37f52": { - "name": "itemAssignableUsersError", - "value": "transport failure" - }, "6d95cba5d507": { "name": "github.listAssignableUsers#1", "args": [ @@ -261,6 +258,13 @@ } } }, + "748fe138ef3a": { + "name": "itemAssignableUsers", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, "7565dbfa3de0": { "labels": ["bug", "chore"], "labelsError": "", @@ -274,6 +278,11 @@ "usersError": "", "usersLoading": false }, + "763cfed9792e": { + "name": "itemAssignableUsers", + "value": [], + "sent": 1 + }, "78c83a187176": { "name": "github.listAssignableUsers#1", "args": [ @@ -305,16 +314,6 @@ } } }, - "903a54a21708": { - "name": "itemAvailableLabels", - "value": ["bug", "chore"] - }, - "98071afc08ac": { - "name": "itemAssignableUsers", - "value": { - "$rpc": "null" - } - }, "9a2526df52e3": { "name": "github.listAssignableUsers#1", "args": [ @@ -349,9 +348,15 @@ } } }, - "a05b630b1ca2": { - "name": "itemAssignableUsersLoading", - "value": false + "9c6159857c01": { + "name": "itemAssignableUsersError", + "value": "outer refused", + "sent": 2 + }, + "a0d1ab14e06b": { + "name": "itemAssignableUsersError", + "value": "", + "sent": 2 }, "a268d5d92265": { "name": "github.listAssignableUsers#1", @@ -423,13 +428,18 @@ } } }, - "a93fe25e86eb": { - "name": "itemAssignableUsersError", - "value": "outer refused" - }, - "aa97d0d3a0e8": { - "name": "itemLabelsLoading", - "value": true + "a37497fa506c": { + "name": "itemAssignableUsers", + "value": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": "Octo" + } + ], + "sent": 2 }, "abf563fcde19": { "labels": ["bug", "chore"], @@ -441,10 +451,6 @@ "usersError": "", "usersLoading": false }, - "b7f5069690eb": { - "name": "itemAvailableLabels", - "value": [] - }, "bd9fec1f736c": { "name": "github.listAssignableUsers#1", "args": [ @@ -567,6 +573,25 @@ "usersError": "", "usersLoading": false }, + "d937624aafbb": { + "name": "itemAssignableUsers", + "value": { + "$rpc": "undefined" + }, + "sent": 2 + }, + "dad618d40619": { + "name": "itemAssignableUsers", + "value": { + "error": "refused" + }, + "sent": 2 + }, + "e4421084ff39": { + "name": "itemLabelsLoading", + "value": false, + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -579,17 +604,15 @@ "name": "github.listLabels#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "f9cadd6cfc38": { - "name": "itemAssignableUsers", - "value": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": "Octo" - } - ] + "f70626574f7a": { + "name": "itemAvailableLabels", + "value": [], + "sent": 0 + }, + "f991510500df": { + "name": "itemAssignableUsersLoading", + "value": false, + "sent": 2 }, "fba383759dad": { "name": "github.listAssignableUsers#1", @@ -625,9 +648,10 @@ } } }, - "fd6c595204e3": { - "name": "itemLabelsLoading", - "value": false + "fc060a38ddda": { + "name": "itemLabelsError", + "value": "", + "sent": 0 } }, "recording": { @@ -643,17 +667,17 @@ }, "state": "187a6bd82efe", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -667,17 +691,17 @@ }, "state": "4811b212ee14", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "6308cf824fe4", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "d937624aafbb", + "f991510500df" ] } }, @@ -691,17 +715,17 @@ }, "state": "6107288aca15", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "98071afc08ac", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "748fe138ef3a", + "f991510500df" ] } }, @@ -715,17 +739,17 @@ }, "state": "abf563fcde19", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "038e078eb5e9", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "dad618d40619", + "f991510500df" ] } }, @@ -739,17 +763,17 @@ }, "state": "d6ef32125dc7", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "2c2f41412e1c", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "2464d7ef3769", + "f991510500df" ] } }, @@ -763,17 +787,17 @@ }, "state": "7565dbfa3de0", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "2d65278dd821", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "13787c8669de", + "f991510500df" ] } }, @@ -787,17 +811,17 @@ }, "state": "5b9626f7c5fd", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "a93fe25e86eb", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "9c6159857c01", + "f991510500df" ] } }, @@ -811,17 +835,17 @@ }, "state": "046247fe2cbb", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "226ea8e4b98b", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "a0d1ab14e06b", + "f991510500df" ] } }, @@ -835,17 +859,17 @@ }, "state": "51e44980e984", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "4773ce28d761", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "13999b62c314", + "f991510500df" ] } }, @@ -859,17 +883,17 @@ }, "state": "d20d6958d614", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "63f911a37f52", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "322343237b5a", + "f991510500df" ] } }, @@ -883,17 +907,17 @@ }, "state": "046247fe2cbb", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "226ea8e4b98b", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "a0d1ab14e06b", + "f991510500df" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listlabels-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listlabels-1.json index 98f4db43a49..82aaf124a8f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listlabels-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listlabels-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "a2ecf4ddc2c9870a8d73cbd920b46bb0663a958ac156dc6de092be3c9474ea2b", "platform": "darwin", @@ -13,14 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0358aa4ddd2c": { - "name": "itemAssignableUsers", - "value": [] - }, - "04ddb42260d2": { - "name": "itemLabelsError", - "value": "Unknown method" - }, "0512455a3440": { "name": "github.listLabels#1", "args": [ @@ -119,9 +111,10 @@ "usersError": "", "usersLoading": false }, - "1258dfee6d26": { - "name": "itemLabelsError", - "value": "transport failure" + "14b04c3d1156": { + "name": "itemAssignableUsersLoading", + "value": true, + "sent": 1 }, "187a6bd82efe": { "labels": ["bug", "chore"], @@ -139,10 +132,6 @@ "usersError": "", "usersLoading": false }, - "226ea8e4b98b": { - "name": "itemAssignableUsersError", - "value": "" - }, "26a2b4de39d4": { "name": "github.listLabels#1", "args": [ @@ -174,6 +163,18 @@ } } }, + "2f84a8101a09": { + "name": "itemAvailableLabels", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, + "30554accaab5": { + "name": "itemAvailableLabels", + "value": ["bug", "chore"], + "sent": 2 + }, "31a9aea0d54a": { "name": "github.listLabels#1", "args": [ @@ -205,9 +206,10 @@ } } }, - "3b9ce19a0449": { - "name": "itemBodyDraft", - "value": "body" + "3af8e2a236cf": { + "name": "itemAssignableUsersError", + "value": "", + "sent": 1 }, "3de77e6e6dc2": { "name": "github.listLabels#1", @@ -276,16 +278,6 @@ } } }, - "419cde8cf391": { - "name": "itemLabelsError", - "value": "" - }, - "46fd44a31167": { - "name": "itemAvailableLabels", - "value": { - "error": "refused" - } - }, "476e11905643": { "labels": [], "labelsError": "Unknown method", @@ -302,9 +294,15 @@ "usersError": "", "usersLoading": false }, - "50ab150a7632": { - "name": "itemAssignableUsersLoading", - "value": true + "49a2a2210aec": { + "name": "itemLabelsError", + "value": "", + "sent": 2 + }, + "4be2a2e21bd0": { + "name": "itemBodyDraft", + "value": "body", + "sent": 0 }, "57c277b6556c": { "labels": { @@ -328,6 +326,11 @@ "name": "github.listAssignableUsers#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}" }, + "60ab7459b747": { + "name": "itemLabelsLoading", + "value": true, + "sent": 0 + }, "687824c5a987": { "labels": { "error": "refused" @@ -367,23 +370,20 @@ "usersError": "", "usersLoading": false }, - "8e18bb94a047": { - "name": "itemLabelsError", - "value": "outer refused" + "763cfed9792e": { + "name": "itemAssignableUsers", + "value": [], + "sent": 1 }, - "903a54a21708": { - "name": "itemAvailableLabels", - "value": ["bug", "chore"] - }, - "98a776cd38a3": { + "996ab44a0693": { "name": "itemAvailableLabels", "value": { - "$rpc": "null" - } - }, - "a05b630b1ca2": { - "name": "itemAssignableUsersLoading", - "value": false + "error": { + "message": "inner refused" + }, + "ok": false + }, + "sent": 2 }, "a268d5d92265": { "name": "github.listAssignableUsers#1", @@ -424,15 +424,23 @@ } } }, - "aa97d0d3a0e8": { - "name": "itemLabelsLoading", - "value": true + "a37497fa506c": { + "name": "itemAssignableUsers", + "value": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": "Octo" + } + ], + "sent": 2 }, - "acc60bbecb3b": { - "name": "itemAvailableLabels", - "value": { - "$rpc": "undefined" - } + "a94b160e0a27": { + "name": "itemLabelsError", + "value": "Unknown method", + "sent": 2 }, "b041f1e6a2ab": { "name": "github.listLabels#1", @@ -470,9 +478,13 @@ } } }, - "b7f5069690eb": { + "b0a4cc69238b": { "name": "itemAvailableLabels", - "value": [] + "value": { + "error": "inner refused", + "ok": false + }, + "sent": 2 }, "b807e8ed0345": { "name": "github.listLabels#1", @@ -508,14 +520,12 @@ } } }, - "c0863d661f33": { + "c1c0cc03119d": { "name": "itemAvailableLabels", "value": { - "error": { - "message": "inner refused" - }, - "ok": false - } + "$rpc": "undefined" + }, + "sent": 2 }, "c5ab6c4bd0c5": { "labels": { @@ -567,6 +577,11 @@ } } }, + "cb284f09e5d4": { + "name": "itemLabelsError", + "value": "outer refused", + "sent": 2 + }, "d1182c2be3cf": { "labels": [], "labelsError": "outer refused", @@ -666,6 +681,16 @@ } } }, + "e4421084ff39": { + "name": "itemLabelsLoading", + "value": false, + "sent": 2 + }, + "e54717a435ad": { + "name": "itemLabelsError", + "value": "transport failure", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -678,28 +703,27 @@ "name": "github.listLabels#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "f300e2f57121": { + "f06d897d7f6d": { "name": "itemAvailableLabels", "value": { - "error": "inner refused", - "ok": false - } + "error": "refused" + }, + "sent": 2 }, - "f9cadd6cfc38": { - "name": "itemAssignableUsers", - "value": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": "Octo" - } - ] + "f70626574f7a": { + "name": "itemAvailableLabels", + "value": [], + "sent": 0 }, - "fd6c595204e3": { - "name": "itemLabelsLoading", - "value": false + "f991510500df": { + "name": "itemAssignableUsersLoading", + "value": false, + "sent": 2 + }, + "fc060a38ddda": { + "name": "itemLabelsError", + "value": "", + "sent": 0 } }, "recording": { @@ -715,17 +739,17 @@ }, "state": "187a6bd82efe", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -739,17 +763,17 @@ }, "state": "09c5c8d10325", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "acc60bbecb3b", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "c1c0cc03119d", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -763,17 +787,17 @@ }, "state": "57c277b6556c", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "98a776cd38a3", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "2f84a8101a09", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -787,17 +811,17 @@ }, "state": "687824c5a987", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "46fd44a31167", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "f06d897d7f6d", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -811,17 +835,17 @@ }, "state": "c5ab6c4bd0c5", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "f300e2f57121", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "b0a4cc69238b", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -835,17 +859,17 @@ }, "state": "7357dc0a4b99", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "c0863d661f33", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "996ab44a0693", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -859,17 +883,17 @@ }, "state": "d1182c2be3cf", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "8e18bb94a047", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "cb284f09e5d4", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -883,17 +907,17 @@ }, "state": "d79f6e922f48", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "419cde8cf391", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "49a2a2210aec", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -907,17 +931,17 @@ }, "state": "476e11905643", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "04ddb42260d2", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "a94b160e0a27", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -931,17 +955,17 @@ }, "state": "0d670a7b256b", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "1258dfee6d26", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "e54717a435ad", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } }, @@ -955,17 +979,17 @@ }, "state": "d79f6e922f48", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "419cde8cf391", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "49a2a2210aec", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-merge-gitlab-gitlab.mergemr-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-merge-gitlab-gitlab.mergemr-1.json index 93ba6ff8102..7b30d4cf831 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-merge-gitlab-gitlab.mergemr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-merge-gitlab-gitlab.mergemr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-merge-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "f40d99c60523ad1a6a3a761935e86ab0739337486dd316e6ab3248980e575027", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0687dba3171a": { "error": "Unknown method", "item": { @@ -138,13 +134,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" - }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "value": "transport failure", + "sent": 1 }, "2e07d214f23a": { "name": "gitlab.mergeMR#1", @@ -180,6 +173,11 @@ } } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "364618fdc146": { "error": "Cannot read properties of undefined (reading 'ok')", "item": { @@ -510,13 +508,17 @@ "provider": "gitlab" } }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 1 }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "84465663f388": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "98354008c52b": { "error": "inner refused", @@ -565,6 +567,11 @@ "provider": "gitlab" } }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, "a4f53aae0c36": { "error": "[object Object]", "item": { @@ -612,15 +619,10 @@ "provider": "gitlab" } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "ae5be7de2632": { + "b53c339a3854": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Unknown method", + "sent": 1 }, "b6a6630b4d40": { "error": "", @@ -695,14 +697,6 @@ } } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, "c0f3f2064a7d": { "name": "gitlab.mergeMR#1", "args": [ @@ -776,10 +770,30 @@ } } }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, "c6bf9878ffb7": { "name": "gitlab.mergeMR#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.mergeMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"method\":\"squash\",\"projectRef\":\"group/project\"}}" }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d6f17e3de7da": { "error": "transport failure", "item": { @@ -835,13 +849,15 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { + "f791567b212f": { "name": "error", - "value": "[object Object]" + "value": "outer refused", + "sent": 1 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 }, "ff408cae1bac": { "name": "gitlab.mergeMR#1", @@ -894,7 +910,7 @@ "merge-0": "eb79a9b3682a" }, "state": "b6a6630b4d40", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -907,7 +923,7 @@ "merge-0": "eb79a9b3682a" }, "state": "364618fdc146", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -920,7 +936,7 @@ "merge-0": "eb79a9b3682a" }, "state": "5bced36399b0", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -933,7 +949,7 @@ "merge-0": "eb79a9b3682a" }, "state": "b6a6630b4d40", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -946,7 +962,7 @@ "merge-0": "eb79a9b3682a" }, "state": "98354008c52b", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -959,7 +975,7 @@ "merge-0": "eb79a9b3682a" }, "state": "a4f53aae0c36", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -972,7 +988,7 @@ "merge-0": "eb79a9b3682a" }, "state": "702351d98030", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -985,7 +1001,7 @@ "merge-0": "eb79a9b3682a" }, "state": "69841347ee06", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -998,7 +1014,7 @@ "merge-0": "eb79a9b3682a" }, "state": "0687dba3171a", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1011,7 +1027,7 @@ "merge-0": "eb79a9b3682a" }, "state": "d6f17e3de7da", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1024,7 +1040,7 @@ "merge-0": "eb79a9b3682a" }, "state": "69841347ee06", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-github-github.updatepr-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-github-github.updatepr-1.json index 791517ee398..8061e95dc60 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-github-github.updatepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-github-github.updatepr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "27587bfb5745051e3cb27b01dc49b90b6f3c8ddbeb38f20772502fae2f562d91", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0d64c21e1a57": { "error": "[object Object]", "item": { @@ -225,9 +221,10 @@ "reviewRequests": [] } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "1dd914c9108c": { "error": "Unknown method", @@ -314,59 +311,12 @@ "reviewRequests": [] } }, - "2449c436b115": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "new body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, - "3544ee07bd2a": { + "48545870a5c1": { "name": "items", "value": [ { @@ -387,28 +337,8 @@ }, "title": "Renamed" } - ] - }, - "51904fd2b002": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "title": "Renamed", - "type": "pr" - }, - "title": "Renamed" - } + ], + "sent": 1 }, "5b0b55895e09": { "name": "github.updatePR#1", @@ -649,6 +579,11 @@ } } }, + "7d901d60a01a": { + "name": "error", + "value": "[object Object]", + "sent": 1 + }, "81d3548ec9e7": { "name": "github.updatePR#1", "args": [ @@ -688,14 +623,6 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "98c47c47bf1c": { "error": "outer refused", "item": { @@ -781,6 +708,11 @@ "reviewRequests": [] } }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, "a188da72de28": { "name": "github.updatePR#1", "args": [ @@ -820,21 +752,41 @@ } } }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "a42cad5a2c3e": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "title": "Renamed", + "type": "pr" + }, + "title": "Renamed" + }, + "sent": 1 }, "b092bbd7362d": { "name": "github.updatePR#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"title\":\"Renamed\",\"body\":\"new body\"}}}" }, - "ba65a7abe43b": { + "b53c339a3854": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, - "c008e85e2d06": { + "c4f585980acf": { "name": "error", - "value": "inner refused" + "value": "inner refused", + "sent": 1 }, "c709f5b6e08d": { "error": "Cannot read properties of null (reading 'ok')", @@ -921,6 +873,16 @@ "reviewRequests": [] } }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "cd3f120ad936": { "name": "github.updatePR#1", "args": [ @@ -1034,6 +996,11 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d61c30994138": { "error": "inner refused", "item": { @@ -1204,6 +1171,55 @@ "reviewRequests": [] } }, + "dbb0d797e4ab": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "new body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 + }, "e3fcde8cdbfe": { "error": "", "item": { @@ -1334,13 +1350,15 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { + "f791567b212f": { "name": "error", - "value": "[object Object]" + "value": "outer refused", + "sent": 1 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 } }, "recording": { @@ -1357,12 +1375,12 @@ }, "state": "e3fcde8cdbfe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "51904fd2b002", - "3544ee07bd2a", - "2449c436b115", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "a42cad5a2c3e", + "48545870a5c1", + "dbb0d797e4ab", + "32a3635e06a4" ] } }, @@ -1376,7 +1394,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "d67cd3047e76", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1389,7 +1407,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "c709f5b6e08d", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -1403,12 +1421,12 @@ }, "state": "e3fcde8cdbfe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "51904fd2b002", - "3544ee07bd2a", - "2449c436b115", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "a42cad5a2c3e", + "48545870a5c1", + "dbb0d797e4ab", + "32a3635e06a4" ] } }, @@ -1422,7 +1440,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "d61c30994138", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -1435,7 +1453,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "0d64c21e1a57", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -1448,7 +1466,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "98c47c47bf1c", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -1461,7 +1479,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "67576d01860e", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -1474,7 +1492,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "1dd914c9108c", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1487,7 +1505,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "12d8c0993d32", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1500,7 +1518,7 @@ "update-pr-0": "eb79a9b3682a" }, "state": "67576d01860e", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-gitlab.updateissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-gitlab.updateissue-1.json index 06dc43201ab..815b903fbbc 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-gitlab.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-gitlab.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "01664112d8f24d0a08fa7ba4e2d7f389acb363ce493e083f359f90fa0b87911d", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true + "03cbbf630f86": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 1 }, "06ebfa394e4c": { "error": "", @@ -192,9 +193,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "1bd2c74facb2": { "name": "gitlab.updateIssue#1", @@ -273,27 +275,15 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, - "425f7f3148bb": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "labels": ["bug", "triage"], - "pipelineJobs": [], - "provider": "gitlab" - } + "34df3a1f4f16": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 1 }, "52d7bbd9c6f1": { "name": "gitlab.updateIssue#1", @@ -418,6 +408,16 @@ } } }, + "6d96b92fa8ac": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 1 + }, + "7089c563f99c": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 1 + }, "722b4cabad81": { "name": "gitlab.updateIssue#1", "args": [ @@ -457,13 +457,10 @@ } } }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 1 }, "90de742b0786": { "name": "gitlab.updateIssue#1", @@ -502,26 +499,29 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, - "9943087b18c1": { - "name": "actionItem", + "9c5b9e7fae33": { + "name": "detailPayload", "value": { - "provider": "gitlab", - "source": { - "id": "gitlab:issue:4", - "labels": ["bug", "triage"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "title": "Renamed", - "type": "issue" - }, - "title": "Renamed" - } + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "labels": ["bug", "triage"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "9fc7a62f68d0": { "error": "[object Object]", @@ -664,7 +664,7 @@ "provider": "gitlab" } }, - "ab926d66c720": { + "b27915db5c55": { "name": "items", "value": [ { @@ -681,11 +681,13 @@ }, "title": "Renamed" } - ] + ], + "sent": 1 }, - "ae5be7de2632": { + "b53c339a3854": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Unknown method", + "sent": 1 }, "b605bb35b53b": { "error": "Cannot read properties of null (reading 'ok')", @@ -734,14 +736,6 @@ "provider": "gitlab" } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, "c02252fb214d": { "error": "", "item": { @@ -789,6 +783,11 @@ "provider": "gitlab" } }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, "c7ff417f5a6d": { "error": "outer refused", "item": { @@ -836,13 +835,20 @@ "provider": "gitlab" } }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "de4046dfccd3": { "name": "gitlab.updateIssue#1", @@ -977,17 +983,33 @@ "provider": "gitlab" } }, - "ecc1b4e0914f": { + "ee3f2425c02b": { + "name": "actionItem", + "value": { + "provider": "gitlab", + "source": { + "id": "gitlab:issue:4", + "labels": ["bug", "triage"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "title": "Renamed", + "type": "issue" + }, + "title": "Renamed" + }, + "sent": 1 + }, + "f791567b212f": { "name": "error", - "value": "[object Object]" + "value": "outer refused", + "sent": 1 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 } }, "recording": { @@ -1004,16 +1026,16 @@ }, "state": "06ebfa394e4c", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "9943087b18c1", - "ab926d66c720", - "425f7f3148bb", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ee3f2425c02b", + "b27915db5c55", + "9c5b9e7fae33", + "7089c563f99c", + "6d96b92fa8ac", + "34df3a1f4f16", + "03cbbf630f86", + "32a3635e06a4" ] } }, @@ -1027,7 +1049,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "eb9e28be91e8", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1040,7 +1062,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "b605bb35b53b", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -1054,16 +1076,16 @@ }, "state": "06ebfa394e4c", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "9943087b18c1", - "ab926d66c720", - "425f7f3148bb", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ee3f2425c02b", + "b27915db5c55", + "9c5b9e7fae33", + "7089c563f99c", + "6d96b92fa8ac", + "34df3a1f4f16", + "03cbbf630f86", + "32a3635e06a4" ] } }, @@ -1077,7 +1099,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "0a5028edd717", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -1090,7 +1112,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "9fc7a62f68d0", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -1103,7 +1125,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "c7ff417f5a6d", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -1116,7 +1138,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "c02252fb214d", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -1129,7 +1151,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "a3139ecf7ce9", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1142,7 +1164,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "a85803b27ae1", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1155,7 +1177,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "c02252fb214d", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-mr-gitlab.updatemr-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-mr-gitlab.updatemr-1.json index ab9e55a4033..8d25484b439 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-mr-gitlab.updatemr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-mr-gitlab.updatemr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "186444ac8dc34dc63d1fbf304275e2265d96c6742e4c8f1e8e5568aa5504bf5d", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0687dba3171a": { "error": "Unknown method", "item": { @@ -198,9 +194,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "2972953b8c32": { "name": "gitlab.updateMR#1", @@ -245,9 +242,10 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "364618fdc146": { "error": "Cannot read properties of undefined (reading 'ok')", @@ -296,23 +294,25 @@ "provider": "gitlab" } }, - "425f7f3148bb": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "labels": ["bug", "triage"], - "pipelineJobs": [], - "provider": "gitlab" - } + "45b929e1b010": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "id": "gitlab:mr:7", + "labels": ["bug", "triage"], + "number": 7, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "title": "Renamed", + "type": "mr" + }, + "title": "Renamed" + } + ], + "sent": 1 }, "49978f6eab90": { "name": "gitlab.updateMR#1", @@ -454,6 +454,11 @@ "provider": "gitlab" } }, + "6d96b92fa8ac": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 1 + }, "702351d98030": { "error": "outer refused", "item": { @@ -501,6 +506,11 @@ "provider": "gitlab" } }, + "7089c563f99c": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 1 + }, "747c965ee632": { "name": "gitlab.updateMR#1", "args": [ @@ -549,10 +559,6 @@ } } }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, "7a7312c037c0": { "name": "gitlab.updateMR#1", "args": [ @@ -599,13 +605,28 @@ } } }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 1 }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "820a09a5345c": { + "name": "actionItem", + "value": { + "provider": "gitlab", + "source": { + "id": "gitlab:mr:7", + "labels": ["bug", "triage"], + "number": 7, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "title": "Renamed", + "type": "mr" + }, + "title": "Renamed" + }, + "sent": 1 }, "98354008c52b": { "error": "inner refused", @@ -654,6 +675,30 @@ "provider": "gitlab" } }, + "9c5b9e7fae33": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "labels": ["bug", "triage"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, "a4f53aae0c36": { "error": "[object Object]", "item": { @@ -746,29 +791,6 @@ } } }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "b1876f15febc": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "id": "gitlab:mr:7", - "labels": ["bug", "triage"], - "number": 7, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "title": "Renamed", - "type": "mr" - }, - "title": "Renamed" - } - ] - }, "b44a23036f40": { "name": "gitlab.updateMR#1", "args": [ @@ -815,9 +837,10 @@ } } }, - "ba65a7abe43b": { + "b53c339a3854": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, "bbb125ada245": { "name": "gitlab.updateMR#1", @@ -864,9 +887,20 @@ } } }, - "c008e85e2d06": { + "c4f585980acf": { "name": "error", - "value": "inner refused" + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, "d03b2863c41e": { "error": "", @@ -917,6 +951,11 @@ "provider": "gitlab" } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d6f17e3de7da": { "error": "transport failure", "item": { @@ -1014,38 +1053,19 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, "f2369a06d2a9": { "name": "gitlab.updateMR#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"projectRef\":\"group/project\",\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]}}}" }, - "fbabfbaa4919": { - "name": "actionItem", - "value": { - "provider": "gitlab", - "source": { - "id": "gitlab:mr:7", - "labels": ["bug", "triage"], - "number": 7, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "title": "Renamed", - "type": "mr" - }, - "title": "Renamed" - } + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 } }, "recording": { @@ -1062,14 +1082,14 @@ }, "state": "d03b2863c41e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "fbabfbaa4919", - "b1876f15febc", - "425f7f3148bb", - "7781b68e4a2b", - "fca590f95bf2", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "820a09a5345c", + "45b929e1b010", + "9c5b9e7fae33", + "7089c563f99c", + "6d96b92fa8ac", + "32a3635e06a4" ] } }, @@ -1083,7 +1103,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "364618fdc146", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1096,7 +1116,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "5bced36399b0", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -1110,14 +1130,14 @@ }, "state": "d03b2863c41e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "fbabfbaa4919", - "b1876f15febc", - "425f7f3148bb", - "7781b68e4a2b", - "fca590f95bf2", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "820a09a5345c", + "45b929e1b010", + "9c5b9e7fae33", + "7089c563f99c", + "6d96b92fa8ac", + "32a3635e06a4" ] } }, @@ -1131,7 +1151,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "98354008c52b", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -1144,7 +1164,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "a4f53aae0c36", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -1157,7 +1177,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "702351d98030", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -1170,7 +1190,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "69841347ee06", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -1183,7 +1203,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "0687dba3171a", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1196,7 +1216,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "d6f17e3de7da", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1209,7 +1229,7 @@ "update-gitlab-0": "eb79a9b3682a" }, "state": "69841347ee06", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addissuecomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addissuecomment-1.json index 03383afc953..8cea99c0030 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "c6e5ae446b875afba3944a96d931fdca6006ed8e904374e5040088004eb9b044", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "000516aa083b": { + "name": "error", + "value": "outer refused", + "sent": 2 + }, "036b197488e0": { "name": "github.addPRReviewCommentReply#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" @@ -52,14 +57,20 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "08f1b4229a2c": { "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" }, + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 + }, "0c49fa33aca6": { "name": "github.addIssueComment#1", "args": [ @@ -99,63 +110,6 @@ } } }, - "0eeeeae9df15": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "11380b53f6d9": { "error": "transport failure", "item": { @@ -250,10 +204,6 @@ "reviewRequests": [] } }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" - }, "19e3a37362dc": { "error": "", "item": { @@ -354,13 +304,38 @@ "reviewRequests": [] } }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} + "2b89f7945bce": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 4 }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "2f84f3228054": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 2 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "363749dbbd9b": { "name": "github.addIssueComment#1", @@ -396,6 +371,11 @@ } } }, + "3eecde91c360": { + "name": "error", + "value": "inner refused", + "sent": 2 + }, "40539a6c3997": { "name": "github.addIssueComment#1", "args": [ @@ -429,77 +409,20 @@ } } }, - "4ca119b6bbe8": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000", - "line": { - "$rpc": "undefined" - }, - "path": { - "$rpc": "undefined" - }, - "threadId": { - "$rpc": "undefined" - } - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "52d25e1f3035": { + "name": "error", + "value": "Connection closed", + "sent": 2 + }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 }, "64de153fcc9f": { "error": "", @@ -585,27 +508,10 @@ "name": "github.mergePR#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" }, - "71a30d754356": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 }, "7a639b984307": { "error": "", @@ -795,6 +701,70 @@ "reviewRequests": [] } }, + "7bbc96cd8511": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, "7df24cf10f99": { "name": "linear.updateIssue#1", "args": [ @@ -832,9 +802,10 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, "8630ec2f38b4": { "error": "inner refused", @@ -966,6 +937,16 @@ } } }, + "8cb676b78862": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 2 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, "8d9f451dc8d9": { "error": "outer refused", "item": { @@ -1060,6 +1041,13 @@ "reviewRequests": [] } }, + "8f08c9b94011": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 3 + }, "8f8b93bf32f5": { "name": "github.addIssueComment#1", "args": [ @@ -1097,73 +1085,6 @@ } } }, - "92083670ec3e": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "976ce137a1ed": { "name": "github.addIssueComment#1", "args": [ @@ -1243,15 +1164,10 @@ } } }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" - }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } + "value": "", + "sent": 0 }, "ad0a4ad52848": { "name": "github.addIssueComment#1", @@ -1290,10 +1206,6 @@ } } }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "ae78fb6dcf29": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -1471,6 +1383,13 @@ "reviewRequests": [] } }, + "b19de2486603": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 1 + }, "b3d61b3364c4": { "name": "github.addIssueComment#1", "args": [ @@ -1508,6 +1427,11 @@ } } }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, "b959a668e307": { "name": "linear.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" @@ -1548,10 +1472,6 @@ } } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, "bb314726a57a": { "name": "github.addIssueComment#1", "args": [ @@ -1586,9 +1506,148 @@ } } }, - "c008e85e2d06": { + "bc3f6bcb8a5e": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 + }, + "c1bc8cad641c": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000", + "line": { + "$rpc": "undefined" + }, + "path": { + "$rpc": "undefined" + }, + "threadId": { + "$rpc": "undefined" + } + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, + "c23d4fe1d079": { "name": "error", - "value": "inner refused" + "value": "Cannot read properties of null (reading 'ok')", + "sent": 2 }, "c975a09c969d": { "error": "Cannot read properties of undefined (reading 'ok')", @@ -1684,12 +1743,6 @@ "reviewRequests": [] } }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", - "value": { - "comment-2": "a reply" - } - }, "cb789ca4532e": { "error": "Unknown method", "item": { @@ -1784,6 +1837,16 @@ "reviewRequests": [] } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "cdbac770b5e9": { + "name": "error", + "value": "[object Object]", + "sent": 2 + }, "d30c8f409e8b": { "error": "", "item": { @@ -1893,6 +1956,11 @@ "reviewRequests": [] } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d640b8e687fa": { "error": "", "item": { @@ -1979,6 +2047,11 @@ "reviewRequests": [] } }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e079a4228dc8": { "error": "", "item": { @@ -2081,10 +2154,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, "eefdf3f6c570": { "error": "[object Object]", "item": { @@ -2179,9 +2248,10 @@ "reviewRequests": [] } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f1cfc2d1bcc1": { + "name": "error", + "value": "Unknown method", + "sent": 2 } }, "recording": { @@ -2198,11 +2268,11 @@ }, "state": "e079a4228dc8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4" ] } }, @@ -2218,15 +2288,15 @@ }, "state": "7a639b984307", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "52d25e1f3035", + "8cde53a56cdf" ] } }, @@ -2242,16 +2312,16 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf" ] } }, @@ -2268,20 +2338,20 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2299,25 +2369,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2333,15 +2403,15 @@ }, "state": "c975a09c969d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "8cb676b78862", + "8cde53a56cdf" ] } }, @@ -2358,19 +2428,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "8cb676b78862", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2388,24 +2458,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "8cb676b78862", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2421,15 +2491,15 @@ }, "state": "7b3b6dcb4543", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "c23d4fe1d079", + "8cde53a56cdf" ] } }, @@ -2446,19 +2516,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "c23d4fe1d079", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2476,24 +2546,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "c23d4fe1d079", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2509,16 +2579,16 @@ }, "state": "d30c8f409e8b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "4ca119b6bbe8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "c1bc8cad641c", + "8cde53a56cdf" ] } }, @@ -2535,20 +2605,20 @@ }, "state": "b0f1728c5522", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "4ca119b6bbe8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "c1bc8cad641c", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2566,25 +2636,25 @@ }, "state": "b0f1728c5522", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "4ca119b6bbe8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "c1bc8cad641c", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2600,15 +2670,15 @@ }, "state": "8630ec2f38b4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "3eecde91c360", + "8cde53a56cdf" ] } }, @@ -2625,19 +2695,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "3eecde91c360", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2655,24 +2725,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "3eecde91c360", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2688,15 +2758,15 @@ }, "state": "eefdf3f6c570", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "cdbac770b5e9", + "8cde53a56cdf" ] } }, @@ -2713,19 +2783,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "cdbac770b5e9", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2743,24 +2813,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "cdbac770b5e9", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2776,15 +2846,15 @@ }, "state": "8d9f451dc8d9", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf" ] } }, @@ -2801,19 +2871,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2831,24 +2901,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2864,15 +2934,15 @@ }, "state": "e079a4228dc8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -2889,19 +2959,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2919,24 +2989,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2952,15 +3022,15 @@ }, "state": "cb789ca4532e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf" ] } }, @@ -2977,19 +3047,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3007,24 +3077,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3040,15 +3110,15 @@ }, "state": "11380b53f6d9", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf" ] } }, @@ -3065,19 +3135,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3095,24 +3165,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3128,15 +3198,15 @@ }, "state": "e079a4228dc8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -3153,19 +3223,19 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3183,24 +3253,24 @@ }, "state": "64de153fcc9f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addprreviewcommentreply-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addprreviewcommentreply-1.json index 96fd36c775a..2ee9b7f328b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addprreviewcommentreply-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addprreviewcommentreply-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "2da11d5a9c7a223a59c56ec416ab33acd42d900b4080132bde27313e042808d9", "platform": "darwin", @@ -52,14 +52,75 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true + "08d61d3c6b5b": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 }, "08f1b4229a2c": { "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" }, + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 + }, "0d64c21e1a57": { "error": "[object Object]", "item": { @@ -145,63 +206,6 @@ "reviewRequests": [] } }, - "0eeeeae9df15": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "0f42548df8fd": { "error": "", "item": { @@ -418,9 +422,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "19e3a37362dc": { "error": "", @@ -646,9 +651,28 @@ } } }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} + "2b89f7945bce": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 4 }, "2d4884d43755": { "name": "github.addPRReviewCommentReply#1", @@ -689,9 +713,15 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "2f84f3228054": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 2 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "37d4aaf699c4": { "name": "github.addPRReviewCommentReply#1", @@ -897,11 +927,68 @@ "reviewRequests": [] } }, - "5d05e3b0fb72": { - "name": "itemReplyDrafts", + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, + "5ae97e8a4d13": { + "name": "detailPayload", "value": { - "501": "a reply" - } + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000", + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 }, "67576d01860e": { "error": "", @@ -992,27 +1079,143 @@ "name": "github.mergePR#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" }, - "71a30d754356": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "type": "pr" + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 + }, + "7957a6c3f41f": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" }, - "title": "A pull request" - } - ] + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000", + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "7bbc96cd8511": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "7d901d60a01a": { + "name": "error", + "value": "[object Object]", + "sent": 1 }, "7df24cf10f99": { "name": "linear.updateIssue#1", @@ -1093,126 +1296,22 @@ } } }, - "81e65eb25119": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, - "92083670ec3e": { - "name": "detailPayload", + "8f08c9b94011": { + "name": "actionItem", "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "$rpc": "null" + }, + "sent": 3 }, "9215b65201cf": { "error": "", @@ -1314,10 +1413,6 @@ "reviewRequests": [] } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "976ce137a1ed": { "name": "github.addIssueComment#1", "args": [ @@ -1360,63 +1455,6 @@ } } }, - "97fc116f6ec3": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000", - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "98c47c47bf1c": { "error": "outer refused", "item": { @@ -1502,78 +1540,10 @@ "reviewRequests": [] } }, - "ab3a64d866a3": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000", - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "ae5be7de2632": { + "9e263f5e91be": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 0 }, "ae78fb6dcf29": { "name": "github.addPRReviewCommentReply#1", @@ -1700,13 +1670,84 @@ "reviewRequests": [] } }, + "b19de2486603": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 1 + }, + "b53c339a3854": { + "name": "error", + "value": "Unknown method", + "sent": 1 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, "b959a668e307": { "name": "linear.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" + "bc3f6bcb8a5e": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 }, "bf306437dfcd": { "name": "github.addPRReviewCommentReply#1", @@ -1748,9 +1789,17 @@ } } }, - "c008e85e2d06": { + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, + "c4f585980acf": { "name": "error", - "value": "inner refused" + "value": "inner refused", + "sent": 1 }, "c709f5b6e08d": { "error": "Cannot read properties of null (reading 'ok')", @@ -1837,11 +1886,15 @@ "reviewRequests": [] } }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", - "value": { - "comment-2": "a reply" - } + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, "d398e0446c7c": { "error": "", @@ -1929,6 +1982,11 @@ "reviewRequests": [] } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d5f27f2ec601": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -2225,6 +2283,18 @@ "reviewRequests": [] } }, + "d7becb113791": { + "name": "itemReplyDrafts", + "value": { + "501": "a reply" + }, + "sent": 2 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e079a4228dc8": { "error": "", "item": { @@ -2367,13 +2437,15 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { + "f791567b212f": { "name": "error", - "value": "[object Object]" + "value": "outer refused", + "sent": 1 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 } }, "recording": { @@ -2390,11 +2462,11 @@ }, "state": "e079a4228dc8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4" ] } }, @@ -2410,16 +2482,16 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf" ] } }, @@ -2436,20 +2508,20 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2467,25 +2539,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2499,7 +2571,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "d67cd3047e76", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -2514,15 +2586,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -2539,19 +2611,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2569,24 +2641,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2600,7 +2672,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "c709f5b6e08d", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -2615,15 +2687,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -2640,19 +2712,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2670,24 +2742,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2702,11 +2774,11 @@ }, "state": "0f42548df8fd", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "97fc116f6ec3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "5ae97e8a4d13", + "32a3635e06a4" ] } }, @@ -2722,16 +2794,16 @@ }, "state": "9215b65201cf", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "97fc116f6ec3", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "ab3a64d866a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "5ae97e8a4d13", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7957a6c3f41f", + "8cde53a56cdf" ] } }, @@ -2748,20 +2820,20 @@ }, "state": "d398e0446c7c", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "97fc116f6ec3", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "ab3a64d866a3", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "5ae97e8a4d13", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7957a6c3f41f", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2779,25 +2851,25 @@ }, "state": "d398e0446c7c", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "97fc116f6ec3", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "ab3a64d866a3", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "5ae97e8a4d13", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7957a6c3f41f", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2811,7 +2883,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "d61c30994138", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -2826,15 +2898,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -2851,19 +2923,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2881,24 +2953,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2912,7 +2984,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "0d64c21e1a57", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -2927,15 +2999,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -2952,19 +3024,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2982,24 +3054,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3013,7 +3085,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "98c47c47bf1c", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -3028,15 +3100,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -3053,19 +3125,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3083,24 +3155,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3114,7 +3186,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "67576d01860e", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -3129,15 +3201,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -3154,19 +3226,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3184,24 +3256,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3215,7 +3287,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "1dd914c9108c", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -3230,15 +3302,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -3255,19 +3327,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3285,24 +3357,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3316,7 +3388,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "12d8c0993d32", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -3331,15 +3403,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -3356,19 +3428,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3386,24 +3458,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3417,7 +3489,7 @@ "review-reply-0": "eb79a9b3682a" }, "state": "67576d01860e", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -3432,15 +3504,15 @@ }, "state": "48bbd02c6416", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf" ] } }, @@ -3457,19 +3529,19 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -3487,24 +3559,24 @@ }, "state": "af729f9f623e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "5d05e3b0fb72", - "81e65eb25119", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "d7becb113791", + "08d61d3c6b5b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.mergepr-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.mergepr-1.json index 427cf958d66..be2858f6953 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.mergepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.mergepr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "a5d8ba37f44421d3efd19617ef319f37fda3fe53004b6829ae2c320f85d5c98d", "platform": "darwin", @@ -84,10 +84,6 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "08f1b4229a2c": { "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" @@ -192,66 +188,20 @@ "reviewRequests": [] } }, - "0eeeeae9df15": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 }, - "186f44bc465a": { + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 + }, + "18d6aedd20c0": { "name": "error", - "value": "Unknown method" + "value": "outer refused", + "sent": 3 }, "19e3a37362dc": { "error": "", @@ -353,9 +303,38 @@ "reviewRequests": [] } }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} + "1ca8ccb3785a": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, + "26374b8263d6": { + "name": "error", + "value": "transport failure", + "sent": 3 + }, + "2b89f7945bce": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 4 }, "2bb9e4aadc6b": { "error": "Cannot read properties of null (reading 'ok')", @@ -593,10 +572,6 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, "2e30a3a6bdab": { "error": "Unknown method", "item": { @@ -735,6 +710,37 @@ } } }, + "2f84f3228054": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 2 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, + "3b58335a0013": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + }, + "sent": 4 + }, "3b7522cf9569": { "name": "github.mergePR#1", "args": [ @@ -770,6 +776,11 @@ } } }, + "3bc7dc745e57": { + "name": "error", + "value": "[object Object]", + "sent": 3 + }, "3fba7d414eeb": { "error": "inner refused", "item": { @@ -938,130 +949,26 @@ } } }, - "6329c36b3ca1": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 }, "6bd857c36deb": { "name": "github.mergePR#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" }, - "71a30d754356": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] - }, - "7df24cf10f99": { - "name": "linear.updateIssue#1", - "args": [ - { - "name": "method", - "value": "linear.updateIssue" - }, - { - "name": "params", - "value": { - "id": "issue-1", - "updates": { - "stateId": "state-2" - }, - "workspaceId": "linear-workspace" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-4", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "82cd71d524c8": { + "6e6324634191": { "name": "error", - "value": "" + "value": "inner refused", + "sent": 3 }, - "848732dba3e1": { - "name": "github.mergePR#1", - "args": [ - { - "name": "method", - "value": "github.mergePR" - }, - { - "name": "params", - "value": { - "method": "squash", - "prNumber": 12, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 60000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": { - "code": "method_not_found", - "message": "Unknown method" - }, - "id": "frame-3", - "ok": false - } - } + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 }, - "92083670ec3e": { + "7bbc96cd8511": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -1122,11 +1029,98 @@ "$rpc": "null" }, "reviewRequests": [] + }, + "sent": 2 + }, + "7df24cf10f99": { + "name": "linear.updateIssue#1", + "args": [ + { + "name": "method", + "value": "linear.updateIssue" + }, + { + "name": "params", + "value": { + "id": "issue-1", + "updates": { + "stateId": "state-2" + }, + "workspaceId": "linear-workspace" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "ok": true + } + } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 + }, + "848732dba3e1": { + "name": "github.mergePR#1", + "args": [ + { + "name": "method", + "value": "github.mergePR" + }, + { + "name": "params", + "value": { + "method": "squash", + "prNumber": 12, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 60000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-3", + "ok": false + } + } + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, + "8f08c9b94011": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 3 }, "976ce137a1ed": { "name": "github.addIssueComment#1", @@ -1170,9 +1164,10 @@ } } }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" + "value": "", + "sent": 0 }, "a849c4c6de74": { "error": "outer refused", @@ -1274,16 +1269,6 @@ "reviewRequests": [] } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "ae78fb6dcf29": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -1332,17 +1317,79 @@ } } }, + "b19de2486603": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 1 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, "b959a668e307": { "name": "linear.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" + "bc3f6bcb8a5e": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 }, "c0e892f829bc": { "error": "", @@ -1444,11 +1491,27 @@ "reviewRequests": [] } }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", + "c22bc4151f3c": { + "name": "actionItem", "value": { - "comment-2": "a reply" - } + "$rpc": "null" + }, + "sent": 4 + }, + "c68ce1c1e224": { + "name": "error", + "value": "Unknown method", + "sent": 3 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d4aa03cbbf44": { "error": "Cannot read properties of undefined (reading 'ok')", @@ -1636,6 +1699,21 @@ "reviewRequests": [] } }, + "d8557b0e0565": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 + }, + "dabcddbeb1c5": { + "name": "error", + "value": "Connection closed", + "sent": 3 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e079a4228dc8": { "error": "", "item": { @@ -1771,14 +1849,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, "f2967c5a1118": { "name": "github.mergePR#1", "args": [ @@ -1899,11 +1969,11 @@ }, "state": "e079a4228dc8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4" ] } }, @@ -1919,16 +1989,16 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf" ] } }, @@ -1945,20 +2015,20 @@ }, "state": "c0e892f829bc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dabcddbeb1c5", + "0c0d6ea592d5" ] } }, @@ -1975,20 +2045,20 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2006,25 +2076,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2041,20 +2111,20 @@ }, "state": "d4aa03cbbf44", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "1ca8ccb3785a", + "0c0d6ea592d5" ] } }, @@ -2072,25 +2142,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "1ca8ccb3785a", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2107,20 +2177,20 @@ }, "state": "2bb9e4aadc6b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d8557b0e0565", + "0c0d6ea592d5" ] } }, @@ -2138,25 +2208,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d8557b0e0565", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2173,20 +2243,20 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -2204,25 +2274,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2239,20 +2309,20 @@ }, "state": "3fba7d414eeb", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "6e6324634191", + "0c0d6ea592d5" ] } }, @@ -2270,25 +2340,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "6e6324634191", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2305,20 +2375,20 @@ }, "state": "2c73bbd666db", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "3bc7dc745e57", + "0c0d6ea592d5" ] } }, @@ -2336,25 +2406,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "3bc7dc745e57", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2371,20 +2441,20 @@ }, "state": "a849c4c6de74", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "18d6aedd20c0", + "0c0d6ea592d5" ] } }, @@ -2402,25 +2472,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "18d6aedd20c0", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2437,20 +2507,20 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5" ] } }, @@ -2468,25 +2538,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2503,20 +2573,20 @@ }, "state": "2e30a3a6bdab", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c68ce1c1e224", + "0c0d6ea592d5" ] } }, @@ -2534,25 +2604,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c68ce1c1e224", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2569,20 +2639,20 @@ }, "state": "0a46d3eb33d3", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "26374b8263d6", + "0c0d6ea592d5" ] } }, @@ -2600,25 +2670,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "26374b8263d6", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } }, @@ -2635,20 +2705,20 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5" ] } }, @@ -2666,25 +2736,25 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "6329c36b3ca1", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "3b58335a0013", + "70678ab6df9a" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-linear.updateissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-linear.updateissue-1.json index 07b7d188c39..bcd92862ef4 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-linear.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-linear.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "abc4b882c92ba90a52d3635fe882b2c653bc91ab4d9927f240ebee4dd147b81d", "platform": "darwin", @@ -92,10 +92,6 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "08400fb91676": { "name": "linear.updateIssue#1", "args": [ @@ -135,66 +131,15 @@ "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" }, - "0eeeeae9df15": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 }, "19e3a37362dc": { "error": "", @@ -382,9 +327,43 @@ "reviewRequests": [] } }, - "240fb5bf0f1e": { + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "2b89f7945bce": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 4 + }, + "2f84f3228054": { "name": "itemReplyDrafts", - "value": {} + "value": {}, + "sent": 2 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "3bbcb7ee26a2": { "name": "linear.updateIssue#1", @@ -541,6 +520,11 @@ "reviewRequests": [] } }, + "4a38f5d5d245": { + "name": "error", + "value": "Connection closed", + "sent": 4 + }, "5280890edee6": { "error": "", "item": { @@ -627,6 +611,16 @@ "reviewRequests": [] } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, + "598d95f891dc": { + "name": "error", + "value": "Unknown method", + "sent": 4 + }, "5ab1df79005c": { "name": "linear.updateIssue#1", "args": [ @@ -706,105 +700,12 @@ "name": "github.mergePR#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" }, - "71a30d754356": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 }, - "7df24cf10f99": { - "name": "linear.updateIssue#1", - "args": [ - { - "name": "method", - "value": "linear.updateIssue" - }, - { - "name": "params", - "value": { - "id": "issue-1", - "updates": { - "stateId": "state-2" - }, - "workspaceId": "linear-workspace" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-4", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "8b9fb662d065": { - "name": "linear.updateIssue#1", - "args": [ - { - "name": "method", - "value": "linear.updateIssue" - }, - { - "name": "params", - "value": { - "id": "issue-1", - "updates": { - "stateId": "state-2" - }, - "workspaceId": "linear-workspace" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "Connection closed", - "isRpcDeliveryUnknown": true - } - } - }, - "92083670ec3e": { + "7bbc96cd8511": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -865,11 +766,97 @@ "$rpc": "null" }, "reviewRequests": [] + }, + "sent": 2 + }, + "7df24cf10f99": { + "name": "linear.updateIssue#1", + "args": [ + { + "name": "method", + "value": "linear.updateIssue" + }, + { + "name": "params", + "value": { + "id": "issue-1", + "updates": { + "stateId": "state-2" + }, + "workspaceId": "linear-workspace" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "ok": true + } + } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 + }, + "8b9fb662d065": { + "name": "linear.updateIssue#1", + "args": [ + { + "name": "method", + "value": "linear.updateIssue" + }, + { + "name": "params", + "value": { + "id": "issue-1", + "updates": { + "stateId": "state-2" + }, + "workspaceId": "linear-workspace" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Connection closed", + "isRpcDeliveryUnknown": true + } + } + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, + "8f08c9b94011": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 3 }, "976ce137a1ed": { "name": "github.addIssueComment#1", @@ -913,9 +900,10 @@ } } }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" + "value": "", + "sent": 0 }, "a2891bf99011": { "name": "linear.updateIssue#1", @@ -955,12 +943,6 @@ } } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, "ae78fb6dcf29": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -1009,19 +991,86 @@ } } }, + "b19de2486603": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 1 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, "b959a668e307": { "name": "linear.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", + "bc3f6bcb8a5e": { + "name": "detailPayload", "value": { - "comment-2": "a reply" - } + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 + }, + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 }, "cc4a45b88bb4": { "error": "outer refused", @@ -1109,6 +1158,11 @@ "reviewRequests": [] } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "d34e32079f6e": { "name": "linear.updateIssue#1", "args": [ @@ -1184,6 +1238,11 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d640b8e687fa": { "error": "", "item": { @@ -1270,6 +1329,11 @@ "reviewRequests": [] } }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e079a4228dc8": { "error": "", "item": { @@ -1364,6 +1428,16 @@ "reviewRequests": [] } }, + "e57a3f9ecfc9": { + "name": "error", + "value": "outer refused", + "sent": 4 + }, + "e594e65c588c": { + "name": "error", + "value": "transport failure", + "sent": 4 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1409,10 +1483,6 @@ } } } - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false } }, "recording": { @@ -1429,11 +1499,11 @@ }, "state": "e079a4228dc8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4" ] } }, @@ -1449,16 +1519,16 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf" ] } }, @@ -1475,20 +1545,20 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -1506,24 +1576,24 @@ }, "state": "5280890edee6", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "4a38f5d5d245", + "70678ab6df9a" ] } }, @@ -1541,25 +1611,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1577,25 +1647,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1613,25 +1683,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1649,25 +1719,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1685,25 +1755,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1721,25 +1791,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1757,24 +1827,24 @@ }, "state": "cc4a45b88bb4", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "e57a3f9ecfc9", + "70678ab6df9a" ] } }, @@ -1792,24 +1862,24 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "1e34370849ff", + "70678ab6df9a" ] } }, @@ -1827,24 +1897,24 @@ }, "state": "48c813e0c460", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "598d95f891dc", + "70678ab6df9a" ] } }, @@ -1862,24 +1932,24 @@ }, "state": "1b4b0c63468d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "e594e65c588c", + "70678ab6df9a" ] } }, @@ -1897,24 +1967,24 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "1e34370849ff", + "70678ab6df9a" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.prchecks-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.prchecks-1.json index 05cde378c42..a912818a487 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.prchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.prchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-review-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "77b0812842903075bb3d3ec1f7bcea94b1e1dac5993c3c8854bd4c3d2a567988", "platform": "darwin", @@ -13,82 +13,53 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, - "14b4d8a75758": { - "name": "itemReviewersDraft", - "value": "" - }, - "16f5ce87ddd2": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "186f44bc465a": { + "000516aa083b": { "name": "error", - "value": "Unknown method" + "value": "outer refused", + "sent": 2 + }, + "0879b3f9a393": { + "name": "itemReviewersDraft", + "value": "", + "sent": 1 + }, + "08cd8ff10033": { + "name": "error", + "value": "Invalid checks response", + "sent": 2 + }, + "0de54b42541b": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 1 }, "193449bf1c4d": { "draft": "a comment", @@ -177,6 +148,65 @@ ] } }, + "1a20f26b6a0f": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, "227732d86ad6": { "name": "github.prChecks#1", "args": [ @@ -211,6 +241,11 @@ } } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "35b06a3e84d7": { "name": "github.prChecks#1", "args": [ @@ -358,6 +393,11 @@ "name": "github.prChecks#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}" }, + "52d25e1f3035": { + "name": "error", + "value": "Connection closed", + "sent": 2 + }, "53b8bc3863fe": { "name": "github.requestPRReviewers#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" @@ -449,6 +489,16 @@ ] } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 + }, "5ff04b5a92eb": { "name": "github.prChecks#1", "args": [ @@ -483,41 +533,102 @@ } } }, - "7e06162b52b9": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { + "76563654aeaf": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + }, + "sent": 1 + }, + "83c824cc5deb": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { "$rpc": "null" }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] - }, - "82cd71d524c8": { - "name": "error", - "value": "" + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 2 }, "852540b712d7": { "name": "github.prChecks#1", @@ -655,6 +766,11 @@ ] } }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, "8e390a30a275": { "name": "github.prChecks#1", "args": [ @@ -696,113 +812,51 @@ } } }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" + "value": "", + "sent": 0 }, - "9f82f10075a3": { - "name": "error", - "value": "Connection closed" - }, - "9ffffb907226": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 1, - "pending": 0, - "state": "success", - "total": 1 - }, - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" + "aaec5330620b": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 1, + "pending": 0, + "state": "success", + "total": 1 + }, + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - }, - "aa12c46da553": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" + ], + "state": "open", + "type": "pr" }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "ac2658be94f3": { - "name": "error", - "value": "Invalid checks response" + "title": "A pull request" + } + ], + "sent": 2 }, "ad435cdf6cd7": { "name": "github.prChecks#1", @@ -928,6 +982,11 @@ ] } }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, "b887895c4829": { "draft": "a comment", "error": "Unknown method", @@ -1051,9 +1110,44 @@ } } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" + "c52d84cfe1e5": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 1, + "pending": 0, + "state": "success", + "total": 1 + }, + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + }, + "sent": 2 }, "c6919e95e93b": { "draft": "a comment", @@ -1181,6 +1275,11 @@ } } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "d1b002eaac7d": { "name": "github.prChecks#1", "args": [ @@ -1218,6 +1317,11 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d4d38f1bf018": { "name": "github.requestPRReviewers#1", "args": [ @@ -1253,76 +1357,6 @@ } } }, - "dbf1942a661e": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 1, - "pending": 0, - "state": "success", - "total": 1 - }, - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] - }, - "e58082bfe89c": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1331,9 +1365,10 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f1cfc2d1bcc1": { + "name": "error", + "value": "Unknown method", + "sent": 2 }, "f30de670023b": { "draft": "a comment", @@ -1437,13 +1472,13 @@ }, "state": "c6919e95e93b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4" ] } }, @@ -1459,17 +1494,17 @@ }, "state": "5652285eaff7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "52d25e1f3035", + "8cde53a56cdf" ] } }, @@ -1485,19 +1520,19 @@ }, "state": "889936f92195", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "16f5ce87ddd2", - "9ffffb907226", - "dbf1942a661e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "83c824cc5deb", + "c52d84cfe1e5", + "aaec5330620b", + "8cde53a56cdf" ] } }, @@ -1513,17 +1548,17 @@ }, "state": "f30de670023b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac2658be94f3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "08cd8ff10033", + "8cde53a56cdf" ] } }, @@ -1539,17 +1574,17 @@ }, "state": "f30de670023b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac2658be94f3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "08cd8ff10033", + "8cde53a56cdf" ] } }, @@ -1565,17 +1600,17 @@ }, "state": "f30de670023b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac2658be94f3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "08cd8ff10033", + "8cde53a56cdf" ] } }, @@ -1591,17 +1626,17 @@ }, "state": "f30de670023b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac2658be94f3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "08cd8ff10033", + "8cde53a56cdf" ] } }, @@ -1617,17 +1652,17 @@ }, "state": "f30de670023b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac2658be94f3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "08cd8ff10033", + "8cde53a56cdf" ] } }, @@ -1643,17 +1678,17 @@ }, "state": "af4362c9bf04", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf" ] } }, @@ -1669,17 +1704,17 @@ }, "state": "c6919e95e93b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -1695,17 +1730,17 @@ }, "state": "b887895c4829", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf" ] } }, @@ -1721,17 +1756,17 @@ }, "state": "193449bf1c4d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf" ] } }, @@ -1747,17 +1782,17 @@ }, "state": "c6919e95e93b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.requestprreviewers-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.requestprreviewers-1.json index c9f8e595e1d..22816563058 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.requestprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.requestprreviewers-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-review-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "96a1813de0159396f6a5eb36a764fad4511de0a25eff6323571e1fade2a7f334", "platform": "darwin", @@ -46,10 +46,6 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "06fb2e0c8ddc": { "draft": "a comment", "error": "", @@ -132,74 +128,74 @@ "reviewRequests": [] } }, - "14b4d8a75758": { + "0879b3f9a393": { "name": "itemReviewersDraft", - "value": "" + "value": "", + "sent": 1 }, - "16f5ce87ddd2": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" + "0de54b42541b": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" + "title": "A pull request" + } + ], + "sent": 1 + }, + "1304a065ad27": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 1, + "pending": 0, + "state": "success", + "total": 1 }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { "$rpc": "null" }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } + "reviewRequests": [], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 2 }, "17d23d758a0f": { "name": "github.requestPRReviewers#1", @@ -237,9 +233,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "1a1af92c10dc": { "draft": "a comment", @@ -308,6 +305,65 @@ "reviewRequests": [] } }, + "1a20f26b6a0f": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, "1a5c7547618c": { "name": "github.requestPRReviewers#1", "args": [ @@ -341,10 +397,6 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, "2f2d665111d8": { "draft": "a comment", "error": "[object Object]", @@ -448,6 +500,11 @@ } } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "3a7dc8156612": { "name": "github.requestPRReviewers#1", "args": [ @@ -561,6 +618,11 @@ "name": "github.requestPRReviewers#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "5f9a509bc8df": { "name": "github.requestPRReviewers#1", "args": [ @@ -597,37 +659,70 @@ } } }, - "7e06162b52b9": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" + "74f978b1ca22": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 1, + "pending": 0, + "state": "success", + "total": 1 }, - "title": "A pull request" - } - ] + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + }, + "sent": 2 + }, + "76563654aeaf": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + }, + "sent": 1 + }, + "7d901d60a01a": { + "name": "error", + "value": "[object Object]", + "sent": 1 }, "7ff6d84effbc": { "draft": "a comment", @@ -696,9 +791,71 @@ "reviewRequests": [] } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "83c824cc5deb": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 2 }, "87f8d2d1da8a": { "name": "github.requestPRReviewers#1", @@ -834,35 +991,10 @@ ] } }, - "8d1f6f6493db": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 1, - "pending": 0, - "state": "success", - "total": 1 - }, - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, "8e390a30a275": { "name": "github.prChecks#1", @@ -905,10 +1037,6 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "96d642554487": { "name": "github.requestPRReviewers#1", "args": [ @@ -945,43 +1073,10 @@ } } }, - "9ffffb907226": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 1, - "pending": 0, - "state": "success", - "total": 1 - }, - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "a68fceb8e7f7": { "name": "github.requestPRReviewers#1", @@ -1018,7 +1113,58 @@ } } }, - "a922dcd360b8": { + "aaec5330620b": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 1, + "pending": 0, + "state": "success", + "total": 1 + }, + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 2 + }, + "b53c339a3854": { + "name": "error", + "value": "Unknown method", + "sent": 1 + }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, + "c52d84cfe1e5": { "name": "actionItem", "value": { "provider": "github", @@ -1039,82 +1185,23 @@ "reviewDecision": { "$rpc": "null" }, - "reviewRequests": [], + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], "state": "open", "type": "pr" }, "title": "A pull request" - } - }, - "aa12c46da553": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" + }, + "sent": 2 }, "c6919e95e93b": { "draft": "a comment", @@ -1203,60 +1290,10 @@ ] } }, - "c8571d30fd0d": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 }, "caa676e9ffbb": { "name": "github.requestPRReviewers#1", @@ -1293,6 +1330,16 @@ } } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d4d38f1bf018": { "name": "github.requestPRReviewers#1", "args": [ @@ -1328,46 +1375,6 @@ } } }, - "dbf1942a661e": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 1, - "pending": 0, - "state": "success", - "total": 1 - }, - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] - }, "dcee72c8c890": { "draft": "a comment", "error": "inner refused", @@ -1569,36 +1576,6 @@ "reviewRequests": [] } }, - "e58082bfe89c": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1607,13 +1584,71 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" + "f46434871961": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 }, "fde74dd88b48": { "draft": "a comment", @@ -1697,13 +1732,13 @@ }, "state": "c6919e95e93b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4" ] } }, @@ -1719,19 +1754,19 @@ }, "state": "889936f92195", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "16f5ce87ddd2", - "9ffffb907226", - "dbf1942a661e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "83c824cc5deb", + "c52d84cfe1e5", + "aaec5330620b", + "8cde53a56cdf" ] } }, @@ -1745,7 +1780,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "e3d7c112407f", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1760,16 +1795,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -1783,7 +1818,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "fde74dd88b48", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -1798,16 +1833,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -1822,13 +1857,13 @@ }, "state": "c6919e95e93b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4" ] } }, @@ -1844,19 +1879,19 @@ }, "state": "889936f92195", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "16f5ce87ddd2", - "9ffffb907226", - "dbf1942a661e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "83c824cc5deb", + "c52d84cfe1e5", + "aaec5330620b", + "8cde53a56cdf" ] } }, @@ -1870,7 +1905,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "dcee72c8c890", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -1885,16 +1920,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -1908,7 +1943,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "2f2d665111d8", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -1923,16 +1958,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -1946,7 +1981,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "1a1af92c10dc", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -1961,16 +1996,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -1984,7 +2019,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "4e3feedcd52b", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -1999,16 +2034,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -2022,7 +2057,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "e2fd98165a4f", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -2037,16 +2072,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -2060,7 +2095,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "7ff6d84effbc", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -2075,16 +2110,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } }, @@ -2098,7 +2133,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "4e3feedcd52b", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -2113,16 +2148,16 @@ }, "state": "06fb2e0c8ddc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c8571d30fd0d", - "a922dcd360b8", - "8d1f6f6493db", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f46434871961", + "74f978b1ca22", + "1304a065ad27", + "8cde53a56cdf" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-github.updateissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-github.updateissue-1.json index 842a6588b2b..569ce1fdd60 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-github.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-github.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "57c41b51e34e451975a9f28a6461aa3b8e9dcf04cbebaea80ddf14afc4b78edf", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true + "000516aa083b": { + "name": "error", + "value": "outer refused", + "sent": 2 }, "0d406a5fe28c": { "name": "github.updateIssue#1", @@ -97,9 +98,10 @@ "name": "gitlab.updateIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}" }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" + "13b233a5bc5a": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 2 }, "1a810f391376": { "name": "github.updateIssue#1", @@ -178,10 +180,6 @@ "provider": "gitlab" } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, "2e4f742ab84f": { "error": "", "item": { @@ -219,6 +217,21 @@ "provider": "gitlab" } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, + "3c6c54110c00": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 2 + }, + "3eecde91c360": { + "name": "error", + "value": "inner refused", + "sent": 2 + }, "46938ed15335": { "name": "github.updateIssue#1", "args": [ @@ -329,6 +342,11 @@ "provider": "gitlab" } }, + "52d25e1f3035": { + "name": "error", + "value": "Connection closed", + "sent": 2 + }, "53ddf1fb8329": { "name": "github.updateIssue#1", "args": [ @@ -446,6 +464,16 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 + }, "6502de5a8b97": { "name": "github.updateIssue#1", "args": [ @@ -527,10 +555,6 @@ "name": "github.updateIssue#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}" }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, "779cb33e2c39": { "name": "gitlab.updateIssue#1", "args": [ @@ -606,9 +630,17 @@ "provider": "gitlab" } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "7ff9a871c9b4": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 2 + }, + "84465663f388": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "8803676e3004": { "error": "outer refused", @@ -647,6 +679,35 @@ "provider": "gitlab" } }, + "893c7ff30ddf": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "id": "gitlab:issue:4", + "labels": ["bug"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + } + ], + "sent": 2 + }, + "8cb676b78862": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 2 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, "9206a8ba61dd": { "name": "github.updateIssue#1", "args": [ @@ -686,10 +747,6 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "993c830982a5": { "error": "[object Object]", "item": { @@ -727,9 +784,29 @@ "provider": "gitlab" } }, - "9f82f10075a3": { + "9999466f95f3": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 2 + }, + "9e263f5e91be": { "name": "error", - "value": "Connection closed" + "value": "", + "sent": 0 }, "9fb1b1ad3675": { "name": "github.updateIssue#1", @@ -770,12 +847,6 @@ } } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, "ad5f976dd33c": { "name": "github.updateIssue#1", "args": [ @@ -813,39 +884,37 @@ } } }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, - "ce0c6ff56cf0": { - "name": "detailPayload", + "b3786fd78eba": { + "name": "actionItem", "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } + "$rpc": "null" + }, + "sent": 2 }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, + "c23d4fe1d079": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 2 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "cdbac770b5e9": { + "name": "error", + "value": "[object Object]", + "sent": 2 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d9d32e421d46": { "error": "", @@ -884,28 +953,6 @@ "provider": "gitlab" } }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" - }, - "e1e995a34822": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "id": "gitlab:issue:4", - "labels": ["bug"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - ] - }, "e9d113f34a4a": { "name": "github.updateIssue#1", "args": [ @@ -956,17 +1003,15 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { + "ec6aee3704e2": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 2 + }, + "f1cfc2d1bcc1": { "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" + "value": "Unknown method", + "sent": 2 } }, "recording": { @@ -982,7 +1027,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "d9d32e421d46", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -997,14 +1042,14 @@ }, "state": "2e4f742ab84f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "52d25e1f3035", + "8cde53a56cdf" ] } }, @@ -1020,20 +1065,20 @@ }, "state": "d9d32e421d46", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b3786fd78eba", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1049,14 +1094,14 @@ }, "state": "7aef08e33983", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "8cb676b78862", + "8cde53a56cdf" ] } }, @@ -1072,14 +1117,14 @@ }, "state": "11bc28dfeb05", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "c23d4fe1d079", + "8cde53a56cdf" ] } }, @@ -1095,20 +1140,20 @@ }, "state": "d9d32e421d46", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b3786fd78eba", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1124,14 +1169,14 @@ }, "state": "51d9bbde2d12", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "3eecde91c360", + "8cde53a56cdf" ] } }, @@ -1147,14 +1192,14 @@ }, "state": "993c830982a5", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "cdbac770b5e9", + "8cde53a56cdf" ] } }, @@ -1170,14 +1215,14 @@ }, "state": "8803676e3004", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf" ] } }, @@ -1193,14 +1238,14 @@ }, "state": "d9d32e421d46", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -1216,14 +1261,14 @@ }, "state": "214ca42de359", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf" ] } }, @@ -1239,14 +1284,14 @@ }, "state": "52b163f18d0b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf" ] } }, @@ -1262,14 +1307,14 @@ }, "state": "d9d32e421d46", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-gitlab.updateissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-gitlab.updateissue-1.json index 52cb2bbd991..6c3dded62fd 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-gitlab.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-gitlab.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "64a7af1bfac25dfe673832ef0ef7776be8d1a628c995eafd938fa3ad11d7ba0f", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0a5028edd717": { "error": "inner refused", "item": { @@ -68,6 +64,11 @@ "name": "gitlab.updateIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}" }, + "13b233a5bc5a": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 2 + }, "17f5e522f786": { "name": "gitlab.updateIssue#1", "args": [ @@ -107,9 +108,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "21940eac2e09": { "name": "gitlab.updateIssue#1", @@ -188,10 +190,6 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, "2e2e489860b5": { "name": "gitlab.updateIssue#1", "args": [ @@ -228,6 +226,33 @@ } } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, + "3c6c54110c00": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 2 + }, + "4af1aeed9594": { + "name": "actionItem", + "value": { + "provider": "gitlab", + "source": { + "id": "gitlab:issue:4", + "labels": ["bug"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + }, + "sent": 2 + }, "4e1886bc3875": { "name": "gitlab.updateIssue#1", "args": [ @@ -267,6 +292,11 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "63b0ae8ff253": { "name": "gitlab.updateIssue#1", "args": [ @@ -308,22 +338,6 @@ } } }, - "63b69ffe46d9": { - "name": "actionItem", - "value": { - "provider": "gitlab", - "source": { - "id": "gitlab:issue:4", - "labels": ["bug"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - }, "71cb3feddd6c": { "name": "github.updateIssue#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}" @@ -403,10 +417,6 @@ } } }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, "779cb33e2c39": { "name": "gitlab.updateIssue#1", "args": [ @@ -445,13 +455,70 @@ } } }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 1 }, - "945ea389c1ef": { + "7ff9a871c9b4": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 2 + }, + "84465663f388": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "893c7ff30ddf": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "id": "gitlab:issue:4", + "labels": ["bug"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + } + ], + "sent": 2 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, + "9999466f95f3": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 2 + }, + "9e263f5e91be": { "name": "error", - "value": "transport failure" + "value": "", + "sent": 0 }, "9fb1b1ad3675": { "name": "github.updateIssue#1", @@ -633,15 +700,17 @@ "provider": "gitlab" } }, - "ac9996319e05": { + "b3786fd78eba": { "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 2 }, - "ae5be7de2632": { + "b53c339a3854": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Unknown method", + "sent": 1 }, "b605bb35b53b": { "error": "Cannot read properties of null (reading 'ok')", @@ -690,14 +759,6 @@ "provider": "gitlab" } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, "c02252fb214d": { "error": "", "item": { @@ -780,6 +841,11 @@ } } }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, "c7ff417f5a6d": { "error": "outer refused", "item": { @@ -827,27 +893,20 @@ "provider": "gitlab" } }, - "ce0c6ff56cf0": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d9d32e421d46": { "error": "", @@ -886,10 +945,6 @@ "provider": "gitlab" } }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" - }, "e051b754feec": { "name": "gitlab.updateIssue#1", "args": [ @@ -928,24 +983,6 @@ } } }, - "e1e995a34822": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "id": "gitlab:issue:4", - "labels": ["bug"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - ] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1001,17 +1038,20 @@ "provider": "gitlab" } }, - "ecc1b4e0914f": { + "ec6aee3704e2": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 2 + }, + "f791567b212f": { "name": "error", - "value": "[object Object]" + "value": "outer refused", + "sent": 1 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 } }, "recording": { @@ -1027,7 +1067,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "d9d32e421d46", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -1042,20 +1082,20 @@ }, "state": "d9d32e421d46", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b3786fd78eba", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1069,7 +1109,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "eb9e28be91e8", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1084,20 +1124,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1111,7 +1151,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "b605bb35b53b", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -1126,20 +1166,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1153,7 +1193,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "d9d32e421d46", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -1168,20 +1208,20 @@ }, "state": "d9d32e421d46", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b3786fd78eba", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1195,7 +1235,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "0a5028edd717", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -1210,20 +1250,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1237,7 +1277,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "9fc7a62f68d0", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -1252,20 +1292,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1279,7 +1319,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "c7ff417f5a6d", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -1294,20 +1334,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1321,7 +1361,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "c02252fb214d", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -1336,20 +1376,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1363,7 +1403,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "a3139ecf7ce9", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1378,20 +1418,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1405,7 +1445,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "a85803b27ae1", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1420,20 +1460,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } }, @@ -1447,7 +1487,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "c02252fb214d", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -1462,20 +1502,20 @@ }, "state": "c02252fb214d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "63b69ffe46d9", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "4af1aeed9594", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-mr-gitlab.updatemrstate-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-mr-gitlab.updatemrstate-1.json index 1660cbdff00..d9865910f02 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-mr-gitlab.updatemrstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-mr-gitlab.updatemrstate-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "8443a59a1d432fbcfb9d158995cfa69bef364c33b66a97cbef0e70e197fcad4d", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0687dba3171a": { "error": "Unknown method", "item": { @@ -171,9 +167,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "29cc0a425dd8": { "name": "gitlab.updateMRState#1", @@ -214,9 +211,10 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "364618fdc146": { "error": "Cannot read properties of undefined (reading 'ok')", @@ -479,9 +477,17 @@ "provider": "gitlab" } }, - "82cd71d524c8": { + "7d901d60a01a": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 1 + }, + "84465663f388": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "8e3dbb5fa917": { "name": "gitlab.updateMRState#1", @@ -520,10 +526,6 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "98354008c52b": { "error": "inner refused", "item": { @@ -571,6 +573,11 @@ "provider": "gitlab" } }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, "a0d7adf1785a": { "name": "gitlab.updateMRState#1", "args": [ @@ -654,16 +661,6 @@ "provider": "gitlab" } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "b4646bea3bbb": { "name": "gitlab.updateMRState#1", "args": [ @@ -698,6 +695,11 @@ } } }, + "b53c339a3854": { + "name": "error", + "value": "Unknown method", + "sent": 1 + }, "b6a6630b4d40": { "error": "", "item": { @@ -735,10 +737,6 @@ "provider": "gitlab" } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, "bbda8a8eedb1": { "name": "gitlab.updateMRState#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMRState\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"state\":\"closed\",\"projectRef\":\"group/project\"}}" @@ -776,9 +774,25 @@ } } }, - "c008e85e2d06": { + "c4f585980acf": { "name": "error", - "value": "inner refused" + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d6f17e3de7da": { "error": "transport failure", @@ -835,13 +849,10 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { + "f791567b212f": { "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "value": "outer refused", + "sent": 1 }, "fa02360dc148": { "name": "gitlab.updateMRState#1", @@ -879,6 +890,11 @@ "ok": false } } + }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 } }, "recording": { @@ -894,7 +910,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "b6a6630b4d40", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -907,7 +923,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "364618fdc146", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -920,7 +936,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "5bced36399b0", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -933,7 +949,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "b6a6630b4d40", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -946,7 +962,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "98354008c52b", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -959,7 +975,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "a4f53aae0c36", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -972,7 +988,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "702351d98030", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -985,7 +1001,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "69841347ee06", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -998,7 +1014,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "0687dba3171a", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -1011,7 +1027,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "d6f17e3de7da", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -1024,7 +1040,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "69841347ee06", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.linear-connect-linear.connect-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.linear-connect-linear.connect-1.json index a591096282b..dfafcc322ab 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-connect-linear.connect-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-connect-linear.connect-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-connect", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a60d7c0ce3d155116aecbb3d1ca015b4d9de310155f4e840b2fc391dc9d04860", "platform": "darwin", @@ -13,9 +13,20 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "0c51558ed744": { + "name": "provider", + "value": "linear", + "sent": 1 + }, + "117a62e5ca79": { + "name": "linearConnectError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, + "129470ce1f7f": { + "name": "linearConnectError", + "value": "Unknown method", + "sent": 1 }, "18e64a04b7b6": { "connected": false, @@ -24,14 +35,6 @@ "providers": ["github"], "state": "error" }, - "1ca8abed81ae": { - "name": "linearConnectError", - "value": "Unknown method" - }, - "240dc4bc9982": { - "name": "linearConnectError", - "value": "inner refused" - }, "292bbaa1f6fe": { "name": "linear.connect#1", "args": [ @@ -121,9 +124,10 @@ "providers": ["github"], "state": "error" }, - "3f0218e5abc6": { + "4870152af5d4": { "name": "linearConnectState", - "value": "idle" + "value": "connecting", + "sent": 0 }, "4e1726d2cf8f": { "name": "linear.connect#1", @@ -159,22 +163,6 @@ } } }, - "50941ff8a9e3": { - "name": "linearConnected", - "value": true - }, - "528ad1703e15": { - "name": "linearConnectError", - "value": "transport failure" - }, - "58b707b67141": { - "name": "linearConnectState", - "value": "error" - }, - "5def091042f5": { - "name": "linearConnectError", - "value": "" - }, "632dd7f078e3": { "name": "linear.connect#1", "args": [ @@ -208,9 +196,20 @@ } } }, - "7c00a7dd4850": { - "name": "linearApiKeyDraft", - "value": "" + "69d74e72326c": { + "name": "linearConnected", + "value": true, + "sent": 1 + }, + "74c3dc50a7a4": { + "name": "linearConnectError", + "value": "inner refused", + "sent": 1 + }, + "7edd10d0e7a7": { + "name": "linearConnectError", + "value": "transport failure", + "sent": 1 }, "94b5638a167f": { "connected": false, @@ -219,9 +218,20 @@ "providers": ["github"], "state": "error" }, - "9f55d77a517a": { + "9882c11b1a83": { "name": "linearConnectError", - "value": "outer refused" + "value": "outer refused", + "sent": 1 + }, + "9ca6f7e482f5": { + "name": "linearConnectError", + "value": "", + "sent": 1 + }, + "9ea73b6d4ce4": { + "name": "linearConnectError", + "value": "", + "sent": 0 }, "9f6138af26e9": { "name": "linear.connect#1", @@ -324,6 +334,11 @@ } } }, + "b314de624efa": { + "name": "linearApiKeyDraft", + "value": "", + "sent": 1 + }, "b7f1fad8d45f": { "name": "linear.connect#1", "args": [ @@ -357,10 +372,6 @@ } } }, - "b9e578e85f05": { - "name": "provider", - "value": "linear" - }, "ba59d5e7d5dd": { "connected": false, "error": "", @@ -368,17 +379,15 @@ "providers": ["github"], "state": "error" }, - "c4149fce9907": { - "name": "linearConnectError", - "value": "Cannot read properties of null (reading 'ok')" + "bb945a4f9d97": { + "name": "linearConnectState", + "value": "error", + "sent": 1 }, - "cc185e00fc86": { + "ca688a191b1f": { "name": "linearConnectError", - "value": "[object Object]" - }, - "ccab44ec5aea": { - "name": "linearConnectError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 }, "d01bbd7239d1": { "name": "linear.connect#1", @@ -431,10 +440,6 @@ "providers": ["github"], "state": "error" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -443,6 +448,16 @@ "$rpc": "undefined" } }, + "f06f609ce6b4": { + "name": "linearConnectState", + "value": "idle", + "sent": 1 + }, + "f4cec40b7d42": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 1 + }, "f54167ff739b": { "connected": false, "error": "transport failure", @@ -480,10 +495,6 @@ } } }, - "fb8120f6d4d3": { - "name": "linearConnectState", - "value": "connecting" - }, "fc80dec0189f": { "name": "linear.connect#1", "args": [ @@ -514,6 +525,16 @@ "isRpcDeliveryUnknown": true } } + }, + "fe3b9280899d": { + "name": "linearConnectError", + "value": "[object Object]", + "sent": 1 + }, + "fe581ce5541b": { + "name": "showLinearConnect", + "value": false, + "sent": 1 } }, "recording": { @@ -530,14 +551,14 @@ }, "state": "2f8d5603d8c0", "effects": [ - "fb8120f6d4d3", - "5def091042f5", - "7c00a7dd4850", - "3f0218e5abc6", - "002ad269dd44", - "50941ff8a9e3", - "eafaa34ddedb", - "b9e578e85f05" + "4870152af5d4", + "9ea73b6d4ce4", + "b314de624efa", + "f06f609ce6b4", + "fe581ce5541b", + "69d74e72326c", + "f4cec40b7d42", + "0c51558ed744" ] } }, @@ -551,7 +572,7 @@ "connect-0": "eb79a9b3682a" }, "state": "18e64a04b7b6", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "ccab44ec5aea"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "ca688a191b1f"] } }, { @@ -564,7 +585,7 @@ "connect-0": "eb79a9b3682a" }, "state": "3bd2a4b2ea0b", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "c4149fce9907"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "117a62e5ca79"] } }, { @@ -578,14 +599,14 @@ }, "state": "2f8d5603d8c0", "effects": [ - "fb8120f6d4d3", - "5def091042f5", - "7c00a7dd4850", - "3f0218e5abc6", - "002ad269dd44", - "50941ff8a9e3", - "eafaa34ddedb", - "b9e578e85f05" + "4870152af5d4", + "9ea73b6d4ce4", + "b314de624efa", + "f06f609ce6b4", + "fe581ce5541b", + "69d74e72326c", + "f4cec40b7d42", + "0c51558ed744" ] } }, @@ -599,7 +620,7 @@ "connect-0": "eb79a9b3682a" }, "state": "dfd3413a2232", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "240dc4bc9982"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "74c3dc50a7a4"] } }, { @@ -612,7 +633,7 @@ "connect-0": "eb79a9b3682a" }, "state": "94b5638a167f", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "cc185e00fc86"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "fe3b9280899d"] } }, { @@ -625,7 +646,7 @@ "connect-0": "eb79a9b3682a" }, "state": "3abc7d437bb5", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "9f55d77a517a"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "9882c11b1a83"] } }, { @@ -638,7 +659,7 @@ "connect-0": "eb79a9b3682a" }, "state": "ba59d5e7d5dd", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "5def091042f5"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "9ca6f7e482f5"] } }, { @@ -651,7 +672,7 @@ "connect-0": "eb79a9b3682a" }, "state": "e9d903fbfa72", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "1ca8abed81ae"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "129470ce1f7f"] } }, { @@ -664,7 +685,7 @@ "connect-0": "eb79a9b3682a" }, "state": "f54167ff739b", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "528ad1703e15"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "7edd10d0e7a7"] } }, { @@ -677,7 +698,7 @@ "connect-0": "eb79a9b3682a" }, "state": "ba59d5e7d5dd", - "effects": ["fb8120f6d4d3", "5def091042f5", "58b707b67141", "5def091042f5"] + "effects": ["4870152af5d4", "9ea73b6d4ce4", "bb945a4f9d97", "9ca6f7e482f5"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.addissuecomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.addissuecomment-1.json index 87f4809e121..8656d7041e8 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "a2c0c5c200b36d2194815e67df2ea50422f6ecfd9df411132202e9660c87c41b", "platform": "darwin", @@ -76,10 +76,6 @@ "provider": "linear" } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "0ac6cc942440": { "error": "", "item": { @@ -127,6 +123,11 @@ "provider": "linear" } }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 + }, "0e08807eccd5": { "name": "linear.addIssueComment#1", "args": [ @@ -162,42 +163,39 @@ } } }, - "127382fd146b": { - "name": "actionItem", - "value": { - "key": "linear:linear-workspace:issue-2", - "provider": "linear", - "source": { - "description": "a description", - "id": "issue-2", - "identifier": "ENG-2", - "labels": [], - "priority": 0, - "state": { - "color": "#000", - "name": "Todo", - "type": "unstarted" - }, - "subIssues": [], - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering" - }, - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace" - }, - "status": "Todo", - "subtitle": "ENG-2 · Engineering", - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z" - } + "12b9ca6d3411": { + "name": "linearCommentDraft", + "value": "", + "sent": 1 }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 + }, + "1b84247bbb1d": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "title": "A sub-issue", + "url": "" + } + ], + "comments": [], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 3 }, "226869a10edd": { "error": "", @@ -306,7 +304,7 @@ "provider": "linear" } }, - "27c9668b9a25": { + "27bcf9dec050": { "name": "detailPayload", "value": { "assignee": { @@ -336,7 +334,8 @@ "$rpc": "null" }, "provider": "linear" - } + }, + "sent": 3 }, "288dd89fb933": { "error": "Cannot read properties of undefined (reading 'ok')", @@ -385,10 +384,6 @@ "provider": "linear" } }, - "2b3e1c8e96c4": { - "name": "linearSubIssueTitle", - "value": "" - }, "2c8f51509f45": { "name": "linear.getIssue#1", "args": [ @@ -442,9 +437,41 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "2eb4304818d0": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 1 + }, + "310aa929de22": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 3 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "335cdd96334f": { "error": "", @@ -675,6 +702,39 @@ "provider": "linear" } }, + "4b870cf7c216": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "title": "A sub-issue", + "url": "" + } + ], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 3 + }, "4c69e7210f1a": { "name": "linear.addIssueComment#1", "args": [ @@ -746,33 +806,15 @@ } } }, - "5366b2d3f52c": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [ - { - "id": "issue-3", - "identifier": "ENG-3", - "title": "A sub-issue", - "url": "" - } - ], - "comments": [], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } - }, "56711aa72642": { "name": "linear.getIssue#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "5ae9884071c5": { "error": "transport failure", "item": { @@ -852,31 +894,6 @@ } } }, - "6eb786a2e054": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } - }, "6fbb2167a2a8": { "name": "linear.createIssue#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}" @@ -984,6 +1001,11 @@ "provider": "linear" } }, + "7d901d60a01a": { + "name": "error", + "value": "[object Object]", + "sent": 1 + }, "818ab7fe22f5": { "name": "linear.addIssueComment#1", "args": [ @@ -1017,9 +1039,15 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, "910853564928": { "name": "linear.createIssue#1", @@ -1064,13 +1092,36 @@ } } }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" + "value": "", + "sent": 0 }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "abeee718b4b5": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 1 }, "b25b80b10fc1": { "name": "linear.addIssueComment#1", @@ -1108,13 +1159,15 @@ } } }, - "ba65a7abe43b": { + "b53c339a3854": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, - "bb911bff1d1d": { - "name": "linearCommentDraft", - "value": "" + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 }, "bd8766792875": { "name": "linear.addIssueComment#1", @@ -1149,10 +1202,6 @@ } } }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, "c3254898499d": { "error": "", "item": { @@ -1247,30 +1296,25 @@ } } }, - "d500ed1c3493": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d857a39962fb": { "name": "linear.addIssueComment#1", @@ -1308,6 +1352,40 @@ } } }, + "db29b57926b1": { + "name": "actionItem", + "value": { + "key": "linear:linear-workspace:issue-2", + "provider": "linear", + "source": { + "description": "a description", + "id": "issue-2", + "identifier": "ENG-2", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "subIssues": [], + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + }, + "status": "Todo", + "subtitle": "ENG-2 · Engineering", + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z" + }, + "sent": 2 + }, "dcb5a0348220": { "error": "", "item": { @@ -1372,14 +1450,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, "f0a8a5417034": { "error": "", "item": { @@ -1434,38 +1504,6 @@ "provider": "linear" } }, - "f450feb912ee": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [ - { - "id": "issue-3", - "identifier": "ENG-3", - "title": "A sub-issue", - "url": "" - } - ], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } - }, "f76765650c9b": { "error": "Unknown method", "item": { @@ -1513,6 +1551,16 @@ "provider": "linear" } }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, "fba66b51cfb0": { "error": "Cannot read properties of null (reading 'ok')", "item": { @@ -1575,11 +1623,11 @@ }, "state": "dcb5a0348220", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4" ] } }, @@ -1595,15 +1643,15 @@ }, "state": "7c14fba8a1fe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1620,20 +1668,20 @@ }, "state": "48107958be60", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1647,7 +1695,7 @@ "comment-0": "eb79a9b3682a" }, "state": "288dd89fb933", - "effects": ["066ce15717c8", "82cd71d524c8", "ae5be7de2632", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c939abf83c6c", "32a3635e06a4"] } }, { @@ -1662,14 +1710,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1686,19 +1734,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c939abf83c6c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -1712,7 +1760,7 @@ "comment-0": "eb79a9b3682a" }, "state": "fba66b51cfb0", - "effects": ["066ce15717c8", "82cd71d524c8", "2d711d96f190", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "faf0249fca3c", "32a3635e06a4"] } }, { @@ -1727,14 +1775,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1751,19 +1799,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "faf0249fca3c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -1778,11 +1826,11 @@ }, "state": "c3254898499d", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "d500ed1c3493", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "2eb4304818d0", + "32a3635e06a4" ] } }, @@ -1798,15 +1846,15 @@ }, "state": "226869a10edd", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "d500ed1c3493", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "2eb4304818d0", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1823,20 +1871,20 @@ }, "state": "02bf1f0d7114", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "d500ed1c3493", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "27c9668b9a25", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "2eb4304818d0", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "27bcf9dec050", + "0c0d6ea592d5" ] } }, @@ -1850,7 +1898,7 @@ "comment-0": "eb79a9b3682a" }, "state": "37a27295d142", - "effects": ["066ce15717c8", "82cd71d524c8", "c008e85e2d06", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "c4f585980acf", "32a3635e06a4"] } }, { @@ -1865,14 +1913,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1889,19 +1937,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "c4f585980acf", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -1915,7 +1963,7 @@ "comment-0": "eb79a9b3682a" }, "state": "2649a1245792", - "effects": ["066ce15717c8", "82cd71d524c8", "ecc1b4e0914f", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "7d901d60a01a", "32a3635e06a4"] } }, { @@ -1930,14 +1978,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1954,19 +2002,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "7d901d60a01a", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -1980,7 +2028,7 @@ "comment-0": "eb79a9b3682a" }, "state": "7807d636d5ca", - "effects": ["066ce15717c8", "82cd71d524c8", "ba65a7abe43b", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "f791567b212f", "32a3635e06a4"] } }, { @@ -1995,14 +2043,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -2019,19 +2067,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "f791567b212f", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -2045,7 +2093,7 @@ "comment-0": "eb79a9b3682a" }, "state": "0ac6cc942440", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -2060,14 +2108,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -2084,19 +2132,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -2110,7 +2158,7 @@ "comment-0": "eb79a9b3682a" }, "state": "f76765650c9b", - "effects": ["066ce15717c8", "82cd71d524c8", "186f44bc465a", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "b53c339a3854", "32a3635e06a4"] } }, { @@ -2125,14 +2173,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -2149,19 +2197,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b53c339a3854", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -2175,7 +2223,7 @@ "comment-0": "eb79a9b3682a" }, "state": "5ae9884071c5", - "effects": ["066ce15717c8", "82cd71d524c8", "945ea389c1ef", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "198ac889ae28", "32a3635e06a4"] } }, { @@ -2190,14 +2238,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -2214,19 +2262,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "198ac889ae28", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } }, @@ -2240,7 +2288,7 @@ "comment-0": "eb79a9b3682a" }, "state": "0ac6cc942440", - "effects": ["066ce15717c8", "82cd71d524c8", "82cd71d524c8", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "d48d5c49486c", "32a3635e06a4"] } }, { @@ -2255,14 +2303,14 @@ }, "state": "335cdd96334f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -2279,19 +2327,19 @@ }, "state": "f0a8a5417034", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "5366b2d3f52c", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "d48d5c49486c", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "1b84247bbb1d", + "0c0d6ea592d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.createissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.createissue-1.json index 505337594e2..268041182f2 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "8a5c5b210459d3938bc010bc88c69696a631072cd5a6b7e1a3eb3e1fd0da9c8a", "platform": "darwin", @@ -13,46 +13,20 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { + "0c0d6ea592d5": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 3 }, - "127382fd146b": { - "name": "actionItem", - "value": { - "key": "linear:linear-workspace:issue-2", - "provider": "linear", - "source": { - "description": "a description", - "id": "issue-2", - "identifier": "ENG-2", - "labels": [], - "priority": 0, - "state": { - "color": "#000", - "name": "Todo", - "type": "unstarted" - }, - "subIssues": [], - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering" - }, - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace" - }, - "status": "Todo", - "subtitle": "ENG-2 · Engineering", - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z" - } + "12b9ca6d3411": { + "name": "linearCommentDraft", + "value": "", + "sent": 1 }, - "186f44bc465a": { + "18d6aedd20c0": { "name": "error", - "value": "Unknown method" + "value": "outer refused", + "sent": 3 }, "1c50877ad554": { "error": "transport failure", @@ -110,6 +84,11 @@ "provider": "linear" } }, + "1ca8ccb3785a": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, "1dcf350b71f7": { "error": "", "item": { @@ -207,9 +186,10 @@ "name": "linear.addIssueComment#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}" }, - "2b3e1c8e96c4": { - "name": "linearSubIssueTitle", - "value": "" + "26374b8263d6": { + "name": "error", + "value": "transport failure", + "sent": 3 }, "2c8f51509f45": { "name": "linear.getIssue#1", @@ -264,9 +244,15 @@ } } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "310aa929de22": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 3 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "3537547b034c": { "name": "linear.createIssue#1", @@ -308,6 +294,11 @@ } } }, + "3bc7dc745e57": { + "name": "error", + "value": "[object Object]", + "sent": 3 + }, "48107958be60": { "error": "", "item": { @@ -371,6 +362,39 @@ "provider": "linear" } }, + "4b870cf7c216": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "title": "A sub-issue", + "url": "" + } + ], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 3 + }, "4c69e7210f1a": { "name": "linear.addIssueComment#1", "args": [ @@ -467,6 +491,11 @@ "name": "linear.getIssue#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "6544d325ab6e": { "name": "linear.createIssue#1", "args": [ @@ -504,30 +533,10 @@ } } }, - "6eb786a2e054": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } + "6e6324634191": { + "name": "error", + "value": "inner refused", + "sent": 3 }, "6fbb2167a2a8": { "name": "linear.createIssue#1", @@ -575,10 +584,6 @@ } } }, - "79d6e6aa0201": { - "name": "error", - "value": "refused" - }, "7a8140de3f8b": { "name": "linear.createIssue#1", "args": [ @@ -770,9 +775,10 @@ "provider": "linear" } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, "82e1d0775df9": { "name": "linear.createIssue#1", @@ -906,6 +912,11 @@ } } }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, "910853564928": { "name": "linear.createIssue#1", "args": [ @@ -1005,10 +1016,6 @@ "provider": "linear" } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "95e8e6626c1f": { "error": "Cannot read properties of null (reading 'ok')", "item": { @@ -1104,9 +1111,15 @@ } } }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" + "value": "", + "sent": 0 + }, + "a39be9459b2b": { + "name": "error", + "value": "refused", + "sent": 3 }, "a7f0744be826": { "error": "[object Object]", @@ -1164,6 +1177,32 @@ "provider": "linear" } }, + "abeee718b4b5": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 1 + }, "acebdd95fdf3": { "name": "linear.createIssue#1", "args": [ @@ -1204,21 +1243,74 @@ } } }, - "ae5be7de2632": { + "b57ded8a3ea3": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 2 }, - "ba65a7abe43b": { + "c68ce1c1e224": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 3 }, - "bb911bff1d1d": { - "name": "linearCommentDraft", - "value": "" + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, - "c008e85e2d06": { + "d48d5c49486c": { "name": "error", - "value": "inner refused" + "value": "", + "sent": 1 + }, + "d8557b0e0565": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 + }, + "dabcddbeb1c5": { + "name": "error", + "value": "Connection closed", + "sent": 3 + }, + "db29b57926b1": { + "name": "actionItem", + "value": { + "key": "linear:linear-workspace:issue-2", + "provider": "linear", + "source": { + "description": "a description", + "id": "issue-2", + "identifier": "ENG-2", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "subIssues": [], + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + }, + "status": "Todo", + "subtitle": "ENG-2 · Engineering", + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z" + }, + "sent": 2 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 }, "dcb5a0348220": { "error": "", @@ -1321,46 +1413,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "f450feb912ee": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [ - { - "id": "issue-3", - "identifier": "ENG-3", - "title": "A sub-issue", - "url": "" - } - ], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } - }, "f4878d38b306": { "error": "refused", "item": { @@ -1432,11 +1484,11 @@ }, "state": "dcb5a0348220", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4" ] } }, @@ -1452,15 +1504,15 @@ }, "state": "7c14fba8a1fe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1477,19 +1529,19 @@ }, "state": "1dcf350b71f7", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dabcddbeb1c5", + "0c0d6ea592d5" ] } }, @@ -1506,20 +1558,20 @@ }, "state": "48107958be60", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1536,19 +1588,19 @@ }, "state": "54b843bb4bf8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "1ca8ccb3785a", + "0c0d6ea592d5" ] } }, @@ -1565,19 +1617,19 @@ }, "state": "95e8e6626c1f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d8557b0e0565", + "0c0d6ea592d5" ] } }, @@ -1594,19 +1646,19 @@ }, "state": "f4878d38b306", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "79d6e6aa0201", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "a39be9459b2b", + "0c0d6ea592d5" ] } }, @@ -1623,19 +1675,19 @@ }, "state": "933d48089040", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "6e6324634191", + "0c0d6ea592d5" ] } }, @@ -1652,19 +1704,19 @@ }, "state": "a7f0744be826", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "3bc7dc745e57", + "0c0d6ea592d5" ] } }, @@ -1681,19 +1733,19 @@ }, "state": "857b0f423a93", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "18d6aedd20c0", + "0c0d6ea592d5" ] } }, @@ -1710,19 +1762,19 @@ }, "state": "7c14fba8a1fe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5" ] } }, @@ -1739,19 +1791,19 @@ }, "state": "7c4663c87131", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "c68ce1c1e224", + "0c0d6ea592d5" ] } }, @@ -1768,19 +1820,19 @@ }, "state": "1c50877ad554", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "26374b8263d6", + "0c0d6ea592d5" ] } }, @@ -1797,19 +1849,19 @@ }, "state": "7c14fba8a1fe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "dbbebbd74a18", + "0c0d6ea592d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.getissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.getissue-1.json index d0b513352c7..564e2a7139b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.getissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.getissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "ab0ac02611d487a9edd58319c6e4b9302148684f27711afc3b69feaa73fc4b07", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "000516aa083b": { + "name": "error", + "value": "outer refused", + "sent": 2 + }, "03ba75574787": { "name": "linear.getIssue#1", "args": [ @@ -48,9 +53,10 @@ } } }, - "066ce15717c8": { + "0c0d6ea592d5": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 3 }, "0c7a193ff0fc": { "name": "linear.getIssue#1", @@ -87,46 +93,10 @@ } } }, - "0ca58c7e5f7f": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'name')" - }, - "127382fd146b": { - "name": "actionItem", - "value": { - "key": "linear:linear-workspace:issue-2", - "provider": "linear", - "source": { - "description": "a description", - "id": "issue-2", - "identifier": "ENG-2", - "labels": [], - "priority": 0, - "state": { - "color": "#000", - "name": "Todo", - "type": "unstarted" - }, - "subIssues": [], - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering" - }, - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace" - }, - "status": "Todo", - "subtitle": "ENG-2 · Engineering", - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z" - } - }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" + "12b9ca6d3411": { + "name": "linearCommentDraft", + "value": "", + "sent": 1 }, "1ccd8c8e0846": { "error": "Unknown method", @@ -279,10 +249,6 @@ "name": "linear.addIssueComment#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}" }, - "2b3e1c8e96c4": { - "name": "linearSubIssueTitle", - "value": "" - }, "2c8f51509f45": { "name": "linear.getIssue#1", "args": [ @@ -336,6 +302,11 @@ } } }, + "310aa929de22": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 3 + }, "31c35ed4408c": { "error": "", "item": { @@ -424,6 +395,11 @@ } } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "34ac31e64bbc": { "error": "transport failure", "item": { @@ -543,6 +519,39 @@ "provider": "linear" } }, + "4b870cf7c216": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "title": "A sub-issue", + "url": "" + } + ], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 3 + }, "4c69e7210f1a": { "name": "linear.addIssueComment#1", "args": [ @@ -579,10 +588,20 @@ } } }, + "52d25e1f3035": { + "name": "error", + "value": "Connection closed", + "sent": 2 + }, "56711aa72642": { "name": "linear.getIssue#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "5a11bbb29a30": { "name": "linear.getIssue#1", "args": [ @@ -617,6 +636,11 @@ } } }, + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 + }, "5d9c3e0ee7ee": { "error": "", "item": { @@ -711,31 +735,6 @@ } } }, - "6eb786a2e054": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } - }, "6fbb2167a2a8": { "name": "linear.createIssue#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}" @@ -886,9 +885,10 @@ "provider": "linear" } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, "8af40adb9d8d": { "name": "linear.getIssue#1", @@ -927,6 +927,11 @@ } } }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, "8e84155275d3": { "name": "linear.getIssue#1", "args": [ @@ -1002,13 +1007,36 @@ } } }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" + "value": "", + "sent": 0 }, - "9f82f10075a3": { - "name": "error", - "value": "Connection closed" + "abeee718b4b5": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 1 }, "ac636cdfa5a0": { "error": "outer refused", @@ -1101,13 +1129,20 @@ } } }, - "ba65a7abe43b": { + "b57ded8a3ea3": { "name": "error", - "value": "outer refused" + "value": "", + "sent": 2 }, - "bb911bff1d1d": { - "name": "linearCommentDraft", - "value": "" + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d999cf5823a0": { "name": "linear.getIssue#1", @@ -1141,6 +1176,40 @@ } } }, + "db29b57926b1": { + "name": "actionItem", + "value": { + "key": "linear:linear-workspace:issue-2", + "provider": "linear", + "source": { + "description": "a description", + "id": "issue-2", + "identifier": "ENG-2", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "subIssues": [], + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + }, + "status": "Todo", + "subtitle": "ENG-2 · Engineering", + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z" + }, + "sent": 2 + }, "dcb5a0348220": { "error": "", "item": { @@ -1197,6 +1266,16 @@ "provider": "linear" } }, + "dccc370f5edb": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'name')", + "sent": 2 + }, + "e09a0f914b10": { + "name": "error", + "value": "Sub-issue not found", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1205,45 +1284,10 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "f056a5d83164": { + "f1cfc2d1bcc1": { "name": "error", - "value": "Sub-issue not found" - }, - "f450feb912ee": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [ - { - "id": "issue-3", - "identifier": "ENG-3", - "title": "A sub-issue", - "url": "" - } - ], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } + "value": "Unknown method", + "sent": 2 } }, "recording": { @@ -1260,11 +1304,11 @@ }, "state": "dcb5a0348220", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4" ] } }, @@ -1280,15 +1324,15 @@ }, "state": "31c35ed4408c", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "52d25e1f3035", + "8cde53a56cdf" ] } }, @@ -1304,15 +1348,15 @@ }, "state": "7c14fba8a1fe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -1329,20 +1373,20 @@ }, "state": "48107958be60", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1358,15 +1402,15 @@ }, "state": "1cdac3892b88", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "f056a5d83164", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "e09a0f914b10", + "8cde53a56cdf" ] } }, @@ -1383,20 +1427,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "f056a5d83164", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "e09a0f914b10", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1412,15 +1456,15 @@ }, "state": "1cdac3892b88", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "f056a5d83164", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "e09a0f914b10", + "8cde53a56cdf" ] } }, @@ -1437,20 +1481,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "f056a5d83164", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "e09a0f914b10", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1466,15 +1510,15 @@ }, "state": "7df18cabc6c9", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "0ca58c7e5f7f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "dccc370f5edb", + "8cde53a56cdf" ] } }, @@ -1491,20 +1535,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "0ca58c7e5f7f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "dccc370f5edb", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1520,15 +1564,15 @@ }, "state": "7df18cabc6c9", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "0ca58c7e5f7f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "dccc370f5edb", + "8cde53a56cdf" ] } }, @@ -1545,20 +1589,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "0ca58c7e5f7f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "dccc370f5edb", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1574,15 +1618,15 @@ }, "state": "7df18cabc6c9", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "0ca58c7e5f7f", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "dccc370f5edb", + "8cde53a56cdf" ] } }, @@ -1599,20 +1643,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "0ca58c7e5f7f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "dccc370f5edb", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1628,15 +1672,15 @@ }, "state": "ac636cdfa5a0", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf" ] } }, @@ -1653,20 +1697,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "000516aa083b", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1682,15 +1726,15 @@ }, "state": "dcb5a0348220", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -1707,20 +1751,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1736,15 +1780,15 @@ }, "state": "1ccd8c8e0846", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf" ] } }, @@ -1761,20 +1805,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "f1cfc2d1bcc1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1790,15 +1834,15 @@ }, "state": "34ac31e64bbc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf" ] } }, @@ -1815,20 +1859,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "5c2874ad80bc", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } }, @@ -1844,15 +1888,15 @@ }, "state": "dcb5a0348220", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf" ] } }, @@ -1869,20 +1913,20 @@ }, "state": "5d9c3e0ee7ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b57ded8a3ea3", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.listteams-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.listteams-1.json index ec53a9b54d4..9476d302fc8 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.listteams-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.listteams-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-team-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "c4a5928ef7035ad8bed20945f235f4fa509238b3a167c91df50baefff8e8433f", "platform": "darwin", @@ -13,47 +13,70 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0b5df189257b": { - "name": "linearStatesLoading", - "value": false - }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } - }, - "0e8a09cebbc5": { - "name": "itemTitleDraft", - "value": "" - }, - "1057be813592": { - "name": "expandedPrFilePath", - "value": { - "$rpc": "null" - } - }, - "11dbbb2ef04c": { + "00598fc4e64c": { "name": "linearTeams", - "value": { - "error": "refused" - } + "value": [], + "sent": 1 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "049372f27933": { + "name": "prFileContents", + "value": {}, + "sent": 0 }, - "14b4d8a75758": { - "name": "itemReviewersDraft", - "value": "" + "04c5528024be": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 0 + }, + "065c82e2c558": { + "name": "linearStates", + "value": [ + { + "color": "#000000", + "id": "state-1", + "name": "Todo", + "type": "unstarted" + } + ], + "sent": 2 + }, + "12b9ca6d3411": { + "name": "linearCommentDraft", + "value": "", + "sent": 1 }, "18a1433d8d21": { "name": "linear.listTeams#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}" }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} + "1d9a37f58a33": { + "name": "creatingTask", + "value": false, + "sent": 0 + }, + "1e04ae13b692": { + "name": "expandedPrFilePath", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "217c9076cb62": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 0 + }, + "2a36cc18a7da": { + "name": "linearTeams", + "value": [ + { + "id": "team-1", + "key": "ENG", + "name": "Engineering", + "workspaceId": "linear-workspace" + } + ], + "sent": 1 }, "2afc4b1311c1": { "createTeamId": "team-1", @@ -68,15 +91,25 @@ } ] }, - "2b3e1c8e96c4": { - "name": "linearSubIssueTitle", - "value": "" + "40f9e992c3d0": { + "name": "linearTeams", + "value": { + "error": "inner refused", + "ok": false + }, + "sent": 1 }, - "363a2b217fd4": { - "name": "createTeamId", + "4331036690d4": { + "name": "prFileLoadingPath", "value": { "$rpc": "null" - } + }, + "sent": 0 + }, + "43a64d0d0bdb": { + "name": "expandedResolvedCommentGroups", + "value": [], + "sent": 0 }, "44bd17f18a56": { "createTeamId": { @@ -91,10 +124,6 @@ "ok": false } }, - "4a66cf72bc8f": { - "name": "creatingTask", - "value": false - }, "4f71189f4e00": { "name": "linear.listTeams#1", "args": [ @@ -231,17 +260,6 @@ } } }, - "5c4127bd18a3": { - "name": "linearStates", - "value": [ - { - "color": "#000000", - "id": "state-1", - "name": "Todo", - "type": "unstarted" - } - ] - }, "5d1b8ed07c2d": { "createTeamId": { "$rpc": "null" @@ -252,10 +270,6 @@ "error": "refused" } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, "636acb894008": { "createTeamId": { "$rpc": "null" @@ -267,10 +281,6 @@ "ok": false } }, - "6918d0b7aab9": { - "name": "prFileContents", - "value": {} - }, "6cd6efbcaf7e": { "name": "linear.listTeams#1", "args": [ @@ -304,14 +314,19 @@ } } }, - "6e94ef6ce810": { + "6fa69d344960": { "name": "linearTeams", "value": { - "error": { - "message": "inner refused" - }, - "ok": false - } + "$rpc": "null" + }, + "sent": 1 + }, + "7096f5c8cd2c": { + "name": "createTeamId", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "7379ae7ed6c8": { "createTeamId": { @@ -331,6 +346,11 @@ "ok": false } }, + "74bc5ac6d229": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 0 + }, "74ca99e85dba": { "createTeamId": { "$rpc": "null" @@ -339,10 +359,6 @@ "statesLoading": false, "teams": [] }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, "788bcfdee78c": { "name": "linear.listTeams#1", "args": [ @@ -379,6 +395,11 @@ } } }, + "797d29171de4": { + "name": "linearCommentDraft", + "value": "", + "sent": 0 + }, "79d1ab045d8b": { "name": "linear.listTeams#1", "args": [ @@ -413,9 +434,27 @@ } } }, - "7daffda604f3": { - "name": "itemBodyDraft", - "value": "" + "7c6439d32d4d": { + "name": "linearStates", + "value": [], + "sent": 0 + }, + "81a32c2b3439": { + "name": "linearStatesLoading", + "value": false, + "sent": 2 + }, + "82bb21330f48": { + "name": "linearTeams", + "value": { + "$rpc": "undefined" + }, + "sent": 1 + }, + "84591a5e606b": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 0 }, "8549e5f2062c": { "createTeamId": { @@ -434,17 +473,6 @@ "error": "refused" } }, - "89bbb50f70ec": { - "name": "linearTeams", - "value": [ - { - "id": "team-1", - "key": "ENG", - "name": "Engineering", - "workspaceId": "linear-workspace" - } - ] - }, "8a1b2b9ec56a": { "name": "linear.listTeams#1", "args": [ @@ -476,13 +504,10 @@ } } }, - "8dd6641d7404": { - "name": "expandedResolvedCommentGroups", - "value": [] - }, - "915391e8b8c8": { - "name": "linearStates", - "value": [] + "8a45c17cd319": { + "name": "itemTitleDraft", + "value": "", + "sent": 0 }, "9385340ebcd4": { "name": "linear.teamStates#1", @@ -523,9 +548,12 @@ } } }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "9d800127c719": { + "name": "createTeamId", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "a84509df0515": { "name": "linear.listTeams#1", @@ -594,6 +622,11 @@ } } }, + "b50e582f1f87": { + "name": "itemBodyDraft", + "value": "", + "sent": 0 + }, "b6bf81e9e237": { "createTeamId": "team-1", "states": [ @@ -629,20 +662,30 @@ "statesLoading": false, "teams": [] }, - "bb911bff1d1d": { - "name": "linearCommentDraft", - "value": "" + "c9f74e6a8f4b": { + "name": "linearStatesLoading", + "value": true, + "sent": 1 }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" + "cb7025a10156": { + "name": "itemReviewersDraft", + "value": "", + "sent": 0 }, - "d74b0f3fb507": { - "name": "linearTeams", - "value": { - "error": "inner refused", - "ok": false - } + "cbbd99961d9a": { + "name": "itemCommentDraft", + "value": "", + "sent": 0 + }, + "cda0a9e3231b": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 0 + }, + "ce991ff5560d": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 0 }, "d763ea704ab3": { "createTeamId": { @@ -695,29 +738,34 @@ } } }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" + "ded8ff628165": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 0 }, - "daf57f2538da": { - "name": "linearTeams", - "value": { - "$rpc": "null" - } - }, - "dfef31016418": { - "name": "linearStatesLoading", - "value": true + "df9cbe753bae": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 1 }, "e132489d2d57": { "name": "linear.teamStates#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}" }, - "e91ea8177e6e": { + "e201f508b2a8": { "name": "linearTeams", "value": { - "$rpc": "undefined" - } + "error": { + "message": "inner refused" + }, + "ok": false + }, + "sent": 1 + }, + "e483917577a8": { + "name": "createTeamId", + "value": "team-1", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -727,13 +775,12 @@ "$rpc": "undefined" } }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" - }, - "fe8218a04fd9": { - "name": "createTeamId", - "value": "team-1" + "ebdb222fbbbc": { + "name": "linearTeams", + "value": { + "error": "refused" + }, + "sent": 1 } }, "recording": { @@ -750,27 +797,27 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8" ] } }, @@ -786,32 +833,32 @@ }, "state": "b6bf81e9e237", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -826,28 +873,28 @@ }, "state": "74ca99e85dba", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "e91ea8177e6e", - "1410db92f7e5", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "82bb21330f48", + "00598fc4e64c", + "7096f5c8cd2c" ] } }, @@ -863,33 +910,33 @@ }, "state": "bb26ae00041e", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "e91ea8177e6e", - "1410db92f7e5", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "82bb21330f48", + "00598fc4e64c", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -904,28 +951,28 @@ }, "state": "74ca99e85dba", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "daf57f2538da", - "1410db92f7e5", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "6fa69d344960", + "00598fc4e64c", + "7096f5c8cd2c" ] } }, @@ -941,33 +988,33 @@ }, "state": "bb26ae00041e", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "daf57f2538da", - "1410db92f7e5", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "6fa69d344960", + "00598fc4e64c", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -982,27 +1029,27 @@ }, "state": "5d1b8ed07c2d", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "11dbbb2ef04c", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "ebdb222fbbbc", + "7096f5c8cd2c" ] } }, @@ -1018,32 +1065,32 @@ }, "state": "8549e5f2062c", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "11dbbb2ef04c", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "ebdb222fbbbc", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -1058,27 +1105,27 @@ }, "state": "636acb894008", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "d74b0f3fb507", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "40f9e992c3d0", + "7096f5c8cd2c" ] } }, @@ -1094,32 +1141,32 @@ }, "state": "7379ae7ed6c8", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "d74b0f3fb507", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "40f9e992c3d0", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -1134,27 +1181,27 @@ }, "state": "44bd17f18a56", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "6e94ef6ce810", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "e201f508b2a8", + "7096f5c8cd2c" ] } }, @@ -1170,32 +1217,32 @@ }, "state": "d763ea704ab3", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "6e94ef6ce810", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "e201f508b2a8", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -1210,27 +1257,27 @@ }, "state": "74ca99e85dba", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c" ] } }, @@ -1246,32 +1293,32 @@ }, "state": "bb26ae00041e", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -1286,27 +1333,27 @@ }, "state": "74ca99e85dba", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c" ] } }, @@ -1322,32 +1369,32 @@ }, "state": "bb26ae00041e", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -1362,27 +1409,27 @@ }, "state": "74ca99e85dba", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c" ] } }, @@ -1398,32 +1445,32 @@ }, "state": "bb26ae00041e", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -1438,27 +1485,27 @@ }, "state": "74ca99e85dba", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c" ] } }, @@ -1474,32 +1521,32 @@ }, "state": "bb26ae00041e", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -1514,27 +1561,27 @@ }, "state": "74ca99e85dba", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c" ] } }, @@ -1550,32 +1597,32 @@ }, "state": "bb26ae00041e", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "1410db92f7e5", - "363a2b217fd4", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "00598fc4e64c", + "7096f5c8cd2c", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.teamstates-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.teamstates-1.json index 65e16d8ef9c..b16d0c5d033 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.teamstates-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.teamstates-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-team-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "8ec517c98775f3af0d45776dc74bcaaf99dcc751e85343084e39c557b6ddede1", "platform": "darwin", @@ -13,6 +13,28 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "049372f27933": { + "name": "prFileContents", + "value": {}, + "sent": 0 + }, + "04c5528024be": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 0 + }, + "065c82e2c558": { + "name": "linearStates", + "value": [ + { + "color": "#000000", + "id": "state-1", + "name": "Todo", + "type": "unstarted" + } + ], + "sent": 2 + }, "0b3c30348f5c": { "createTeamId": "team-1", "states": { @@ -31,25 +53,10 @@ } ] }, - "0b5df189257b": { - "name": "linearStatesLoading", - "value": false - }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } - }, - "0e8a09cebbc5": { - "name": "itemTitleDraft", - "value": "" - }, - "1057be813592": { - "name": "expandedPrFilePath", - "value": { - "$rpc": "null" - } + "12b9ca6d3411": { + "name": "linearCommentDraft", + "value": "", + "sent": 1 }, "1373d18a7597": { "createTeamId": "team-1", @@ -67,16 +74,6 @@ } ] }, - "14b4d8a75758": { - "name": "itemReviewersDraft", - "value": "" - }, - "181e5562c6c4": { - "name": "linearStates", - "value": { - "$rpc": "undefined" - } - }, "18a1433d8d21": { "name": "linear.listTeams#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}" @@ -113,6 +110,23 @@ } } }, + "1d9a37f58a33": { + "name": "creatingTask", + "value": false, + "sent": 0 + }, + "1e04ae13b692": { + "name": "expandedPrFilePath", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "217c9076cb62": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 0 + }, "227f11dbe2ec": { "name": "linear.teamStates#1", "args": [ @@ -148,9 +162,25 @@ } } }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} + "2440259727e9": { + "name": "linearStates", + "value": { + "error": "inner refused", + "ok": false + }, + "sent": 2 + }, + "2a36cc18a7da": { + "name": "linearTeams", + "value": [ + { + "id": "team-1", + "key": "ENG", + "name": "Engineering", + "workspaceId": "linear-workspace" + } + ], + "sent": 1 }, "2afc4b1311c1": { "createTeamId": "team-1", @@ -165,15 +195,24 @@ } ] }, - "2b3e1c8e96c4": { - "name": "linearSubIssueTitle", - "value": "" - }, - "363a2b217fd4": { - "name": "createTeamId", + "348f984e1d06": { + "name": "linearStates", "value": { "$rpc": "null" - } + }, + "sent": 2 + }, + "4331036690d4": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "43a64d0d0bdb": { + "name": "expandedResolvedCommentGroups", + "value": [], + "sent": 0 }, "4a21828e3c78": { "name": "linear.teamStates#1", @@ -207,10 +246,6 @@ } } }, - "4a66cf72bc8f": { - "name": "creatingTask", - "value": false - }, "4be9ec43794e": { "name": "linear.teamStates#1", "args": [ @@ -284,21 +319,6 @@ } } }, - "5c4127bd18a3": { - "name": "linearStates", - "value": [ - { - "color": "#000000", - "id": "state-1", - "name": "Todo", - "type": "unstarted" - } - ] - }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, "60784b99f138": { "createTeamId": "team-1", "states": { @@ -329,42 +349,52 @@ } ] }, - "6918d0b7aab9": { - "name": "prFileContents", - "value": {} + "74bc5ac6d229": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 0 }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" + "797d29171de4": { + "name": "linearCommentDraft", + "value": "", + "sent": 0 }, - "7daffda604f3": { - "name": "itemBodyDraft", - "value": "" + "7c6439d32d4d": { + "name": "linearStates", + "value": [], + "sent": 0 }, - "89bbb50f70ec": { - "name": "linearTeams", - "value": [ - { - "id": "team-1", - "key": "ENG", - "name": "Engineering", - "workspaceId": "linear-workspace" - } - ] + "81a32c2b3439": { + "name": "linearStatesLoading", + "value": false, + "sent": 2 }, - "8dd6641d7404": { - "name": "expandedResolvedCommentGroups", - "value": [] + "84591a5e606b": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 0 }, - "90ed4fb82707": { + "8a45c17cd319": { + "name": "itemTitleDraft", + "value": "", + "sent": 0 + }, + "8c766244178b": { "name": "linearStates", "value": { - "error": "refused" - } + "$rpc": "undefined" + }, + "sent": 2 }, - "915391e8b8c8": { + "8f8761ed59d7": { "name": "linearStates", - "value": [] + "value": { + "error": { + "message": "inner refused" + }, + "ok": false + }, + "sent": 2 }, "9385340ebcd4": { "name": "linear.teamStates#1", @@ -405,22 +435,24 @@ } } }, - "9f1d5a3fd782": { + "9c706e3ef2f8": { "name": "linearStates", "value": { - "error": "inner refused", - "ok": false - } + "error": "refused" + }, + "sent": 2 }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" - }, - "b3f91460d03d": { - "name": "linearStates", + "9d800127c719": { + "name": "createTeamId", "value": { "$rpc": "null" - } + }, + "sent": 0 + }, + "b50e582f1f87": { + "name": "itemBodyDraft", + "value": "", + "sent": 0 }, "b6bf81e9e237": { "createTeamId": "team-1", @@ -442,10 +474,6 @@ } ] }, - "bb911bff1d1d": { - "name": "linearCommentDraft", - "value": "" - }, "bbefc1f517c9": { "name": "linear.teamStates#1", "args": [ @@ -515,22 +543,50 @@ } } }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" - }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" - }, - "dfef31016418": { + "c9f74e6a8f4b": { "name": "linearStatesLoading", - "value": true + "value": true, + "sent": 1 + }, + "cb7025a10156": { + "name": "itemReviewersDraft", + "value": "", + "sent": 0 + }, + "cbbd99961d9a": { + "name": "itemCommentDraft", + "value": "", + "sent": 0 + }, + "cda0a9e3231b": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 0 + }, + "ce991ff5560d": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 0 + }, + "ded8ff628165": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 0 + }, + "df9cbe753bae": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 1 }, "e132489d2d57": { "name": "linear.teamStates#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}" }, + "e483917577a8": { + "name": "createTeamId", + "value": "team-1", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -610,6 +666,11 @@ } } }, + "f2157f96ddc9": { + "name": "linearStates", + "value": [], + "sent": 2 + }, "f4fb9aa31b3d": { "name": "linear.teamStates#1", "args": [ @@ -660,19 +721,6 @@ } ] }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" - }, - "fe45180ca079": { - "name": "linearStates", - "value": { - "error": { - "message": "inner refused" - }, - "ok": false - } - }, "fe6b927ff90e": { "name": "linear.teamStates#1", "args": [ @@ -703,10 +751,6 @@ "ok": true } } - }, - "fe8218a04fd9": { - "name": "createTeamId", - "value": "team-1" } }, "recording": { @@ -723,27 +767,27 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8" ] } }, @@ -759,32 +803,32 @@ }, "state": "b6bf81e9e237", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } }, @@ -800,32 +844,32 @@ }, "state": "68c22955654f", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "181e5562c6c4", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "8c766244178b", + "81a32c2b3439" ] } }, @@ -841,32 +885,32 @@ }, "state": "60784b99f138", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "b3f91460d03d", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "348f984e1d06", + "81a32c2b3439" ] } }, @@ -882,32 +926,32 @@ }, "state": "f60ff4465cb1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "90ed4fb82707", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "9c706e3ef2f8", + "81a32c2b3439" ] } }, @@ -923,32 +967,32 @@ }, "state": "1373d18a7597", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "9f1d5a3fd782", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "2440259727e9", + "81a32c2b3439" ] } }, @@ -964,32 +1008,32 @@ }, "state": "0b3c30348f5c", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "fe45180ca079", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "8f8761ed59d7", + "81a32c2b3439" ] } }, @@ -1005,32 +1049,32 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "915391e8b8c8", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "f2157f96ddc9", + "81a32c2b3439" ] } }, @@ -1046,32 +1090,32 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "915391e8b8c8", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "f2157f96ddc9", + "81a32c2b3439" ] } }, @@ -1087,32 +1131,32 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "915391e8b8c8", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "f2157f96ddc9", + "81a32c2b3439" ] } }, @@ -1128,32 +1172,32 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "915391e8b8c8", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "f2157f96ddc9", + "81a32c2b3439" ] } }, @@ -1169,32 +1213,32 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "915391e8b8c8", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "f2157f96ddc9", + "81a32c2b3439" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.reposlug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.reposlug-1.json index ebed38d920b..7d550f8a40f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.reposlug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.reposlug-1.json @@ -3,9 +3,9 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "749f877ac0c08860f74fc56e34b07f51960dda5bd1fdcf9df847b5200bf67779", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitem-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitem-1.json index fc3068dea1f..8300737d312 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitem-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitem-1.json @@ -3,9 +3,9 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "2a11156b7b6d3cf0773c8dc02a72e126bc187dcf62ad7d1bf5f30d7b27192b03", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitembyownerrepo-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitembyownerrepo-1.json index 2cc1f8b276e..64e81310de2 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitembyownerrepo-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitembyownerrepo-1.json @@ -3,9 +3,9 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "4c2560ac236a1cc1ef239b7c97a0436e115b19a6ad3ddd96b3b77970aa631ae3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-gitlab.workitembypath-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-gitlab.workitembypath-1.json index ceb4acfc5a0..01ce19fb639 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-gitlab.workitembypath-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-gitlab.workitembypath-1.json @@ -3,9 +3,9 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "ab5511fa34181dc9de590df2fe57a0d061a261e7b204a6ef830c03bc53923d65", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listaccessible-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listaccessible-1.json index ebb07406389..d4ffab42f96 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listaccessible-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listaccessible-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7c16d49ffeace5c689309316da6e4638fa1b70d3ef52a78d27db934ae56cf64d", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02310a132254": { - "name": "githubProjectPartialFailures", - "value": [] - }, "02a4a58d8dfb": { "name": "github.project.listViews#2", "args": [ @@ -61,10 +57,6 @@ } } }, - "03a767961869": { - "name": "githubProjectLoading", - "value": true - }, "09d1a467c534": { "name": "github.project.listViews#1", "args": [ @@ -130,16 +122,6 @@ "name": "github.project.listViews#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, - "11b132a242c1": { - "name": "githubProjectTable", - "value": { - "$rpc": "null" - } - }, - "1296da8e044e": { - "name": "githubProjectSearch", - "value": "" - }, "147d0c98fb46": { "error": "", "loading": false, @@ -150,6 +132,16 @@ }, "views": [] }, + "156064e9724d": { + "name": "githubProjectPasteBusy", + "value": true, + "sent": 3 + }, + "16712ed539ad": { + "name": "githubProjectSearch", + "value": "", + "sent": 5 + }, "19ca94a33e1c": { "name": "github.project.listAccessible#1", "args": [ @@ -190,9 +182,10 @@ "name": "github.project.listAccessible#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" }, - "27ed3970f7fb": { - "name": "githubProjectPasteBusy", - "value": true + "25b0ac550549": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 1 }, "2ab1b35ff194": { "error": "", @@ -232,10 +225,6 @@ } ] }, - "2ae6c4fc165d": { - "name": "githubProjectLoading", - "value": false - }, "2eca8c3879a2": { "name": "github.project.listAccessible#1", "args": [ @@ -276,6 +265,11 @@ "isRpcDeliveryUnknown": false } }, + "32b1426d14c0": { + "name": "githubProjectLoading", + "value": false, + "sent": 3 + }, "376c9e8bd72a": { "error": "", "loading": false, @@ -301,6 +295,11 @@ } ] }, + "383da1c2fa1c": { + "name": "githubProjectLoading", + "value": true, + "sent": 4 + }, "39bc2fd66e3d": { "name": "github.project.viewTable#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" @@ -309,6 +308,11 @@ "name": "github.project.listViews#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, + "42d96f8f44ae": { + "name": "githubProjectError", + "value": "", + "sent": 3 + }, "43d044e8caea": { "name": "github.project.listAccessible#1", "args": [ @@ -382,38 +386,7 @@ } ] }, - "520e0f81bc2a": { - "name": "githubProjects", - "value": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ] - }, - "54ea0f0a1191": { - "name": "githubProjectTable", - "value": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "560b9ae7cb02": { + "47ebe03e8b7f": { "name": "githubProjectViews", "value": [ { @@ -422,7 +395,33 @@ "name": "Table", "number": 1 } - ] + ], + "sent": 5 + }, + "4d6bf1149ea4": { + "name": "githubProjectError", + "value": "", + "sent": 4 + }, + "54b9c49c04a8": { + "name": "githubProjectError", + "value": "", + "sent": 0 + }, + "57acdd86193b": { + "name": "githubProjectSearch", + "value": "is:open", + "sent": 3 + }, + "5bd0110906b9": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 0 + }, + "6579ec5a7d8f": { + "name": "githubProjectLoading", + "value": false, + "sent": 5 }, "66aa748f97f8": { "name": "github.project.listAccessible#1", @@ -458,6 +457,11 @@ } } }, + "6820b76533c9": { + "name": "githubProjectLoading", + "value": true, + "sent": 2 + }, "6daf8fc5b2c1": { "name": "github.project.listAccessible#1", "args": [ @@ -492,6 +496,13 @@ } } }, + "6e64e24c633d": { + "name": "appliedGithubProjectSearch", + "value": { + "$rpc": "undefined" + }, + "sent": 5 + }, "6f73e51854d5": { "name": "github.project.resolveRef#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" @@ -540,6 +551,24 @@ } } }, + "80ceb7c32703": { + "name": "githubProjects", + "value": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "sent": 1 + }, + "900becffe437": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 4 + }, "a666b0248aa0": { "name": "github.project.listAccessible#1", "args": [ @@ -583,15 +612,22 @@ "isRpcDeliveryUnknown": true } }, - "abd075971f7c": { - "name": "githubProjectPasteError", - "value": "" + "b05e50b1dc22": { + "name": "githubProjectPasteBusy", + "value": false, + "sent": 5 }, - "b14931fed627": { - "name": "appliedGithubProjectSearch", - "value": { - "$rpc": "undefined" - } + "b2ddd7451862": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 2 }, "b51d4b287393": { "name": "github.project.listAccessible#1", @@ -626,6 +662,18 @@ } } }, + "b6255b367ac4": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 3 + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -753,9 +801,12 @@ "isRpcDeliveryUnknown": false } }, - "dbe747c32c99": { - "name": "githubProjectError", - "value": "" + "ddc3cac1e389": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "dec0f3dc00c9": { "name": "github.project.viewTable#1", @@ -810,17 +861,15 @@ } } }, - "e32cd29f23cb": { + "e59d16f6cde5": { + "name": "githubProjectPasteError", + "value": "", + "sent": 3 + }, + "e8b0899e8eb2": { "name": "githubProjectPasteInput", - "value": "" - }, - "e42224cf3520": { - "name": "githubProjectSearch", - "value": "is:open" - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "value": "", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -830,6 +879,26 @@ "$rpc": "undefined" } }, + "ebf1d6b98d33": { + "name": "githubProjectTable", + "value": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, "f3b516f62081": { "status": "rejected", "startedAt": 0, @@ -840,6 +909,11 @@ "isRpcDeliveryUnknown": false } }, + "f3e4bb3c6cb0": { + "name": "githubProjectError", + "value": "", + "sent": 2 + }, "f6aecc8c253c": { "name": "github.project.listAccessible#1", "args": [ @@ -902,10 +976,6 @@ } } }, - "fe4574f4cf7a": { - "name": "githubProjectPasteBusy", - "value": false - }, "ff43b5ec92a9": { "error": "", "loading": false, @@ -938,7 +1008,7 @@ "projects-0": "eb79a9b3682a" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -953,11 +1023,11 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862" ] } }, @@ -974,17 +1044,17 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1014,30 +1084,30 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1051,7 +1121,7 @@ "projects-0": "db45b655b685" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1065,7 +1135,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1081,15 +1151,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1119,28 +1189,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1154,7 +1224,7 @@ "projects-0": "7868f9428edf" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1168,7 +1238,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1184,15 +1254,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1222,28 +1292,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1257,7 +1327,7 @@ "projects-0": "f3b516f62081" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1271,7 +1341,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1287,15 +1357,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1325,28 +1395,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1360,7 +1430,7 @@ "projects-0": "f3b516f62081" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1374,7 +1444,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1390,15 +1460,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1428,28 +1498,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1463,7 +1533,7 @@ "projects-0": "d05b2d417b9c" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1477,7 +1547,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1493,15 +1563,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1531,28 +1601,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1566,7 +1636,7 @@ "projects-0": "32a7c0ae7918" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1580,7 +1650,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1596,15 +1666,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1634,28 +1704,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1669,7 +1739,7 @@ "projects-0": "f3b516f62081" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1683,7 +1753,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1699,15 +1769,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1737,28 +1807,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1772,7 +1842,7 @@ "projects-0": "b948e8307e81" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1786,7 +1856,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1802,15 +1872,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1840,28 +1910,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1875,7 +1945,7 @@ "projects-0": "a947768bc0ed" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1889,7 +1959,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -1905,15 +1975,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1943,28 +2013,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1978,7 +2048,7 @@ "projects-0": "c7584e82c72f" }, "state": "147d0c98fb46", - "effects": ["dbe747c32c99", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9"] } }, { @@ -1992,7 +2062,7 @@ "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", - "effects": ["dbe747c32c99", "02310a132254", "560b9ae7cb02"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "b2ddd7451862"] } }, { @@ -2008,15 +2078,15 @@ }, "state": "4607a82f1dd3", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -2046,28 +2116,28 @@ }, "state": "0e76d492b4f4", "effects": [ - "dbe747c32c99", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-1.json index eea6a489778..9db19f7591d 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "c5cc9a11a75a86780195be7d1055d1064c8aba78bb8e4e8bbdf033409c2b2aa5", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02310a132254": { - "name": "githubProjectPartialFailures", - "value": [] - }, "02a4a58d8dfb": { "name": "github.project.listViews#2", "args": [ @@ -61,10 +57,6 @@ } } }, - "03a767961869": { - "name": "githubProjectLoading", - "value": true - }, "09d1a467c534": { "name": "github.project.listViews#1", "args": [ @@ -113,12 +105,6 @@ "name": "github.project.listViews#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, - "11b132a242c1": { - "name": "githubProjectTable", - "value": { - "$rpc": "null" - } - }, "1264f49f4abd": { "name": "github.project.listViews#1", "args": [ @@ -152,9 +138,15 @@ } } }, - "1296da8e044e": { + "156064e9724d": { + "name": "githubProjectPasteBusy", + "value": true, + "sent": 3 + }, + "16712ed539ad": { "name": "githubProjectSearch", - "value": "" + "value": "", + "sent": 5 }, "1d3552e91192": { "name": "github.project.listAccessible#1", @@ -196,6 +188,11 @@ } } }, + "25b0ac550549": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 1 + }, "25ded056137c": { "name": "github.project.listViews#1", "args": [ @@ -233,10 +230,6 @@ } } }, - "27ed3970f7fb": { - "name": "githubProjectPasteBusy", - "value": true - }, "2ab1b35ff194": { "error": "", "loading": false, @@ -275,10 +268,6 @@ } ] }, - "2ae6c4fc165d": { - "name": "githubProjectLoading", - "value": false - }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -289,6 +278,11 @@ "isRpcDeliveryUnknown": false } }, + "32b1426d14c0": { + "name": "githubProjectLoading", + "value": false, + "sent": 3 + }, "376c9e8bd72a": { "error": "", "loading": false, @@ -314,6 +308,11 @@ } ] }, + "383da1c2fa1c": { + "name": "githubProjectLoading", + "value": true, + "sent": 4 + }, "39bc2fd66e3d": { "name": "github.project.viewTable#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" @@ -322,6 +321,11 @@ "name": "github.project.listViews#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, + "42d96f8f44ae": { + "name": "githubProjectError", + "value": "", + "sent": 3 + }, "43d044e8caea": { "name": "github.project.listAccessible#1", "args": [ @@ -365,38 +369,7 @@ } } }, - "520e0f81bc2a": { - "name": "githubProjects", - "value": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ] - }, - "54ea0f0a1191": { - "name": "githubProjectTable", - "value": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "560b9ae7cb02": { + "47ebe03e8b7f": { "name": "githubProjectViews", "value": [ { @@ -405,7 +378,18 @@ "name": "Table", "number": 1 } - ] + ], + "sent": 5 + }, + "4d6bf1149ea4": { + "name": "githubProjectError", + "value": "", + "sent": 4 + }, + "54b9c49c04a8": { + "name": "githubProjectError", + "value": "", + "sent": 0 }, "561d216cf2d4": { "name": "github.project.listViews#1", @@ -443,6 +427,33 @@ } } }, + "57acdd86193b": { + "name": "githubProjectSearch", + "value": "is:open", + "sent": 3 + }, + "5bd0110906b9": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 0 + }, + "6579ec5a7d8f": { + "name": "githubProjectLoading", + "value": false, + "sent": 5 + }, + "6820b76533c9": { + "name": "githubProjectLoading", + "value": true, + "sent": 2 + }, + "6e64e24c633d": { + "name": "appliedGithubProjectSearch", + "value": { + "$rpc": "undefined" + }, + "sent": 5 + }, "6f73e51854d5": { "name": "github.project.resolveRef#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" @@ -457,6 +468,19 @@ "isRpcDeliveryUnknown": false } }, + "80ceb7c32703": { + "name": "githubProjects", + "value": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "sent": 1 + }, "8387244cd4f1": { "name": "github.project.listViews#1", "args": [ @@ -491,6 +515,11 @@ } } }, + "900becffe437": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 4 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -501,15 +530,22 @@ "isRpcDeliveryUnknown": true } }, - "abd075971f7c": { - "name": "githubProjectPasteError", - "value": "" + "b05e50b1dc22": { + "name": "githubProjectPasteBusy", + "value": false, + "sent": 5 }, - "b14931fed627": { - "name": "appliedGithubProjectSearch", - "value": { - "$rpc": "undefined" - } + "b2ddd7451862": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 2 }, "b43273a232f5": { "name": "github.project.listViews#1", @@ -545,6 +581,18 @@ } } }, + "b6255b367ac4": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 3 + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -677,10 +725,6 @@ "isRpcDeliveryUnknown": false } }, - "dbe747c32c99": { - "name": "githubProjectError", - "value": "" - }, "dcc04fab4332": { "name": "github.project.listViews#1", "args": [ @@ -718,6 +762,13 @@ } } }, + "ddc3cac1e389": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, "dec0f3dc00c9": { "name": "github.project.viewTable#1", "args": [ @@ -771,17 +822,15 @@ } } }, - "e32cd29f23cb": { + "e59d16f6cde5": { + "name": "githubProjectPasteError", + "value": "", + "sent": 3 + }, + "e8b0899e8eb2": { "name": "githubProjectPasteInput", - "value": "" - }, - "e42224cf3520": { - "name": "githubProjectSearch", - "value": "is:open" - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "value": "", + "sent": 4 }, "e9ddd99252b5": { "name": "github.project.listViews#1", @@ -828,6 +877,26 @@ "$rpc": "undefined" } }, + "ebf1d6b98d33": { + "name": "githubProjectTable", + "value": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, "ee22a8355cbd": { "name": "github.project.listViews#1", "args": [ @@ -875,9 +944,10 @@ "isRpcDeliveryUnknown": false } }, - "fe4574f4cf7a": { - "name": "githubProjectPasteBusy", - "value": false + "f3e4bb3c6cb0": { + "name": "githubProjectError", + "value": "", + "sent": 2 }, "ff43b5ec92a9": { "error": "", @@ -911,7 +981,7 @@ "projects-0": "eb79a9b3682a" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -926,11 +996,11 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862" ] } }, @@ -947,17 +1017,17 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -987,30 +1057,30 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1025,7 +1095,7 @@ "views-1": "db45b655b685" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1041,16 +1111,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1080,29 +1150,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1117,7 +1187,7 @@ "views-1": "7868f9428edf" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1133,16 +1203,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1172,29 +1242,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1209,7 +1279,7 @@ "views-1": "f3b516f62081" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1225,16 +1295,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1264,29 +1334,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1301,7 +1371,7 @@ "views-1": "f3b516f62081" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1317,16 +1387,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1356,29 +1426,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1393,7 +1463,7 @@ "views-1": "d05b2d417b9c" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1409,16 +1479,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1448,29 +1518,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1485,7 +1555,7 @@ "views-1": "32a7c0ae7918" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1501,16 +1571,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1540,29 +1610,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1577,7 +1647,7 @@ "views-1": "f3b516f62081" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1593,16 +1663,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1632,29 +1702,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1669,7 +1739,7 @@ "views-1": "b948e8307e81" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1685,16 +1755,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1724,29 +1794,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1761,7 +1831,7 @@ "views-1": "a947768bc0ed" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1777,16 +1847,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1816,29 +1886,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1853,7 +1923,7 @@ "views-1": "c7584e82c72f" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1869,16 +1939,16 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1908,29 +1978,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-2.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-2.json index e94b9cc3d88..1d5ac655a01 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-2.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-2.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7f748bb55df907bba315ea6899c585837d97fa0ea9b312330cf35d95bda87bd1", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02310a132254": { - "name": "githubProjectPartialFailures", - "value": [] - }, "02a4a58d8dfb": { "name": "github.project.listViews#2", "args": [ @@ -61,10 +57,6 @@ } } }, - "03a767961869": { - "name": "githubProjectLoading", - "value": true - }, "09d1a467c534": { "name": "github.project.listViews#1", "args": [ @@ -113,15 +105,15 @@ "name": "github.project.listViews#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, - "11b132a242c1": { - "name": "githubProjectTable", - "value": { - "$rpc": "null" - } + "156064e9724d": { + "name": "githubProjectPasteBusy", + "value": true, + "sent": 3 }, - "1296da8e044e": { + "16712ed539ad": { "name": "githubProjectSearch", - "value": "" + "value": "", + "sent": 5 }, "17fdd112d0a7": { "name": "github.project.listViews#2", @@ -198,13 +190,29 @@ } ] }, + "1ccd71976643": { + "name": "githubProjectError", + "value": "Connection closed", + "sent": 5 + }, "1d3552e91192": { "name": "github.project.listAccessible#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" }, - "27ed3970f7fb": { - "name": "githubProjectPasteBusy", - "value": true + "1fc005bf68ed": { + "name": "githubProjectError", + "value": "transport failure", + "sent": 5 + }, + "24c2f17ad70b": { + "name": "githubProjectError", + "value": "outer refused", + "sent": 5 + }, + "25b0ac550549": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 1 }, "29aec6d77c95": { "name": "github.project.listViews#2", @@ -354,10 +362,6 @@ } ] }, - "2ae6c4fc165d": { - "name": "githubProjectLoading", - "value": false - }, "2d0e42961cec": { "name": "github.project.listViews#2", "args": [ @@ -394,9 +398,10 @@ } } }, - "2e598d8cc4d9": { - "name": "githubProjectError", - "value": "Connection closed" + "32b1426d14c0": { + "name": "githubProjectLoading", + "value": false, + "sent": 3 }, "376c9e8bd72a": { "error": "", @@ -423,6 +428,11 @@ } ] }, + "383da1c2fa1c": { + "name": "githubProjectLoading", + "value": true, + "sent": 4 + }, "39bc2fd66e3d": { "name": "github.project.viewTable#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" @@ -431,6 +441,11 @@ "name": "github.project.listViews#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, + "42d96f8f44ae": { + "name": "githubProjectError", + "value": "", + "sent": 3 + }, "43d044e8caea": { "name": "github.project.listAccessible#1", "args": [ @@ -474,6 +489,18 @@ } } }, + "47ebe03e8b7f": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 5 + }, "4cf1a3bc4178": { "error": "inner refused", "loading": false, @@ -512,59 +539,56 @@ } ] }, - "520e0f81bc2a": { - "name": "githubProjects", - "value": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ] + "4d6bf1149ea4": { + "name": "githubProjectError", + "value": "", + "sent": 4 }, - "54ea0f0a1191": { - "name": "githubProjectTable", + "54b9c49c04a8": { + "name": "githubProjectError", + "value": "", + "sent": 0 + }, + "5757abe66f2b": { + "name": "githubProjectError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 5 + }, + "57acdd86193b": { + "name": "githubProjectSearch", + "value": "is:open", + "sent": 3 + }, + "5bd0110906b9": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 0 + }, + "6579ec5a7d8f": { + "name": "githubProjectLoading", + "value": false, + "sent": 5 + }, + "6820b76533c9": { + "name": "githubProjectLoading", + "value": true, + "sent": 2 + }, + "6e64e24c633d": { + "name": "appliedGithubProjectSearch", "value": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "560b9ae7cb02": { - "name": "githubProjectViews", - "value": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] + "$rpc": "undefined" + }, + "sent": 5 }, "6f73e51854d5": { "name": "github.project.resolveRef#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" }, - "76881a7fdb8f": { + "708b116bab85": { "name": "githubProjectError", - "value": "outer refused" - }, - "7a0387e3a88a": { - "name": "githubProjectError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 5 }, "7e7f0e10b49d": { "name": "github.project.listViews#2", @@ -600,9 +624,23 @@ } } }, - "98491273f69c": { - "name": "githubProjectError", - "value": "inner refused" + "80ceb7c32703": { + "name": "githubProjects", + "value": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "sent": 1 + }, + "900becffe437": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 4 }, "98e1a8b95833": { "name": "github.project.listViews#2", @@ -712,6 +750,11 @@ } } }, + "a2836c7e5b97": { + "name": "githubProjectError", + "value": "inner refused", + "sent": 5 + }, "a3fbce1fcf8a": { "error": "Cannot read properties of undefined (reading 'ok')", "loading": false, @@ -789,10 +832,6 @@ } } }, - "a8502e95a4f7": { - "name": "githubProjectError", - "value": "Unknown method" - }, "abb28d0939d9": { "error": "Unknown method", "loading": false, @@ -831,15 +870,10 @@ } ] }, - "abd075971f7c": { - "name": "githubProjectPasteError", - "value": "" - }, - "b14931fed627": { - "name": "appliedGithubProjectSearch", - "value": { - "$rpc": "undefined" - } + "b05e50b1dc22": { + "name": "githubProjectPasteBusy", + "value": false, + "sent": 5 }, "b1b0d0b13d2e": { "error": "outer refused", @@ -879,6 +913,23 @@ } ] }, + "b2ddd7451862": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 2 + }, + "b3c9af8595f5": { + "name": "githubProjectError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 5 + }, "b4d6fa5183e5": { "name": "github.project.listViews#2", "args": [ @@ -913,9 +964,17 @@ } } }, - "b6fa4d826acb": { - "name": "githubProjectError", - "value": "Cannot read properties of null (reading 'ok')" + "b6255b367ac4": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 3 }, "be0da5b53ffb": { "status": "fulfilled", @@ -1004,9 +1063,12 @@ } } }, - "dbe747c32c99": { - "name": "githubProjectError", - "value": "" + "ddc3cac1e389": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "dec0f3dc00c9": { "name": "github.project.viewTable#1", @@ -1061,17 +1123,20 @@ } } }, - "e32cd29f23cb": { + "e4de887f1178": { + "name": "githubProjectError", + "value": "Unknown method", + "sent": 5 + }, + "e59d16f6cde5": { + "name": "githubProjectPasteError", + "value": "", + "sent": 3 + }, + "e8b0899e8eb2": { "name": "githubProjectPasteInput", - "value": "" - }, - "e42224cf3520": { - "name": "githubProjectSearch", - "value": "is:open" - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "value": "", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -1081,9 +1146,25 @@ "$rpc": "undefined" } }, - "ecb14ecb2ea8": { - "name": "githubProjectError", - "value": "transport failure" + "ebf1d6b98d33": { + "name": "githubProjectTable", + "value": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 }, "f1dd827578d3": { "error": "Cannot read properties of null (reading 'ok')", @@ -1123,9 +1204,10 @@ } ] }, - "fe4574f4cf7a": { - "name": "githubProjectPasteBusy", - "value": false + "f3e4bb3c6cb0": { + "name": "githubProjectError", + "value": "", + "sent": 2 }, "ff43b5ec92a9": { "error": "", @@ -1159,7 +1241,7 @@ "projects-0": "eb79a9b3682a" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1174,11 +1256,11 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862" ] } }, @@ -1195,17 +1277,17 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1235,27 +1317,27 @@ }, "state": "1b7a7437b046", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "2e598d8cc4d9", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "1ccd71976643", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1285,30 +1367,30 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1338,27 +1420,27 @@ }, "state": "a3fbce1fcf8a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "7a0387e3a88a", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "5757abe66f2b", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1388,27 +1470,27 @@ }, "state": "f1dd827578d3", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "b6fa4d826acb", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "b3c9af8595f5", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1438,27 +1520,27 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "dbe747c32c99", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "708b116bab85", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1488,27 +1570,27 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "dbe747c32c99", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "708b116bab85", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1538,27 +1620,27 @@ }, "state": "4cf1a3bc4178", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "98491273f69c", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "a2836c7e5b97", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1588,27 +1670,27 @@ }, "state": "b1b0d0b13d2e", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "76881a7fdb8f", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "24c2f17ad70b", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1638,27 +1720,27 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "dbe747c32c99", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "708b116bab85", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1688,27 +1770,27 @@ }, "state": "abb28d0939d9", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "a8502e95a4f7", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "e4de887f1178", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1738,27 +1820,27 @@ }, "state": "9fb985a7d8f6", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "ecb14ecb2ea8", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "1fc005bf68ed", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1788,27 +1870,27 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "dbe747c32c99", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "708b116bab85", + "6579ec5a7d8f", + "b05e50b1dc22" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.resolveref-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.resolveref-1.json index 3f2a94de9bb..ab58092a419 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.resolveref-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.resolveref-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "4ab4e4022cafd69cbc7af45ddf72d2dad3e8215df363511651d7faea014147d3", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02310a132254": { - "name": "githubProjectPartialFailures", - "value": [] - }, "02a4a58d8dfb": { "name": "github.project.listViews#2", "args": [ @@ -61,10 +57,6 @@ } } }, - "03a767961869": { - "name": "githubProjectLoading", - "value": true - }, "09d1a467c534": { "name": "github.project.listViews#1", "args": [ @@ -109,20 +101,15 @@ } } }, + "0bad1349dcef": { + "name": "githubProjectPasteError", + "value": "", + "sent": 4 + }, "0f1253424990": { "name": "github.project.listViews#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, - "11b132a242c1": { - "name": "githubProjectTable", - "value": { - "$rpc": "null" - } - }, - "1296da8e044e": { - "name": "githubProjectSearch", - "value": "" - }, "12ff41170090": { "error": "", "loading": false, @@ -161,13 +148,24 @@ } ] }, + "156064e9724d": { + "name": "githubProjectPasteBusy", + "value": true, + "sent": 3 + }, + "16712ed539ad": { + "name": "githubProjectSearch", + "value": "", + "sent": 5 + }, "1d3552e91192": { "name": "github.project.listAccessible#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" }, - "27ed3970f7fb": { - "name": "githubProjectPasteBusy", - "value": true + "25b0ac550549": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 1 }, "2ab1b35ff194": { "error": "", @@ -207,9 +205,10 @@ } ] }, - "2ae6c4fc165d": { + "32b1426d14c0": { "name": "githubProjectLoading", - "value": false + "value": false, + "sent": 3 }, "34c532a971ec": { "name": "github.project.resolveRef#1", @@ -268,6 +267,11 @@ } ] }, + "383da1c2fa1c": { + "name": "githubProjectLoading", + "value": true, + "sent": 4 + }, "39bc2fd66e3d": { "name": "github.project.viewTable#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" @@ -313,9 +317,10 @@ "name": "github.project.listViews#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, - "3f0b866f56f5": { - "name": "githubProjectPasteError", - "value": "Unknown method" + "42d96f8f44ae": { + "name": "githubProjectError", + "value": "", + "sent": 3 }, "43d044e8caea": { "name": "github.project.listAccessible#1", @@ -395,10 +400,6 @@ } } }, - "46b99ab68ae7": { - "name": "githubProjectPasteError", - "value": "transport failure" - }, "46bb2cca7c25": { "name": "github.project.resolveRef#1", "args": [ @@ -474,6 +475,23 @@ } ] }, + "47ebe03e8b7f": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 5 + }, + "4d6bf1149ea4": { + "name": "githubProjectError", + "value": "", + "sent": 4 + }, "500bc939e9f2": { "name": "github.project.resolveRef#1", "args": [ @@ -506,18 +524,6 @@ } } }, - "520e0f81bc2a": { - "name": "githubProjects", - "value": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ] - }, "542d281c736b": { "error": "", "loading": false, @@ -556,35 +562,25 @@ } ] }, - "54ea0f0a1191": { - "name": "githubProjectTable", - "value": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } + "54b9c49c04a8": { + "name": "githubProjectError", + "value": "", + "sent": 0 }, - "560b9ae7cb02": { - "name": "githubProjectViews", - "value": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] + "577154374a02": { + "name": "githubProjectPasteError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 4 + }, + "57acdd86193b": { + "name": "githubProjectSearch", + "value": "is:open", + "sent": 3 + }, + "5bd0110906b9": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 0 }, "5e0f133660e0": { "name": "github.project.resolveRef#1", @@ -621,15 +617,20 @@ } } }, - "618e264cbbab": { + "61559589d8d1": { "name": "githubProjectPasteError", - "value": "Cannot read properties of null (reading 'ok')" + "value": "Unknown method", + "sent": 4 }, - "66f958024dc4": { - "name": "githubProjectPasteError", - "value": { - "$rpc": "undefined" - } + "6579ec5a7d8f": { + "name": "githubProjectLoading", + "value": false, + "sent": 5 + }, + "6820b76533c9": { + "name": "githubProjectLoading", + "value": true, + "sent": 2 }, "6836d7fdd70a": { "name": "github.project.resolveRef#1", @@ -665,9 +666,17 @@ } } }, - "69c475303b93": { + "699bf714392b": { "name": "githubProjectPasteError", - "value": "Connection closed" + "value": "transport failure", + "sent": 4 + }, + "6e64e24c633d": { + "name": "appliedGithubProjectSearch", + "value": { + "$rpc": "undefined" + }, + "sent": 5 }, "6f73e51854d5": { "name": "github.project.resolveRef#1", @@ -711,6 +720,19 @@ } ] }, + "80ceb7c32703": { + "name": "githubProjects", + "value": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "sent": 1 + }, "8b44cdbe429d": { "name": "github.project.resolveRef#1", "args": [ @@ -745,6 +767,21 @@ } } }, + "8cc6c42c6cbc": { + "name": "githubProjectPasteError", + "value": "outer refused", + "sent": 4 + }, + "8ff10f29e8cd": { + "name": "githubProjectPasteError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 4 + }, + "900becffe437": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 4 + }, "933fa40d28dd": { "error": "", "loading": false, @@ -783,10 +820,6 @@ } ] }, - "9589db7547f2": { - "name": "githubProjectPasteError", - "value": "inner refused" - }, "9fa2b69acf20": { "error": "", "loading": false, @@ -825,19 +858,39 @@ } ] }, - "abd075971f7c": { + "9fb5dff2ed3c": { "name": "githubProjectPasteError", - "value": "" + "value": "inner refused", + "sent": 4 }, - "aec9d5639ed2": { - "name": "githubProjectPasteError", - "value": "Cannot read properties of undefined (reading 'ok')" + "b05e50b1dc22": { + "name": "githubProjectPasteBusy", + "value": false, + "sent": 5 }, - "b14931fed627": { - "name": "appliedGithubProjectSearch", - "value": { - "$rpc": "undefined" - } + "b2ddd7451862": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 2 + }, + "b6255b367ac4": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 3 }, "bce0d93ba4fe": { "name": "github.project.resolveRef#1", @@ -927,6 +980,11 @@ } } }, + "c9b4cd88639c": { + "name": "githubProjectPasteBusy", + "value": false, + "sent": 4 + }, "d73cf56a3eac": { "name": "github.project.resolveRef#1", "args": [ @@ -997,9 +1055,12 @@ } ] }, - "dbe747c32c99": { - "name": "githubProjectError", - "value": "" + "ddc3cac1e389": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "dec0f3dc00c9": { "name": "github.project.viewTable#1", @@ -1054,21 +1115,20 @@ } } }, - "e1cdc07ded44": { + "e1cc27695a3c": { "name": "githubProjectPasteError", - "value": "outer refused" + "value": "Connection closed", + "sent": 4 }, - "e32cd29f23cb": { + "e59d16f6cde5": { + "name": "githubProjectPasteError", + "value": "", + "sent": 3 + }, + "e8b0899e8eb2": { "name": "githubProjectPasteInput", - "value": "" - }, - "e42224cf3520": { - "name": "githubProjectSearch", - "value": "is:open" - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "value": "", + "sent": 4 }, "eaeb8885f03d": { "name": "github.project.resolveRef#1", @@ -1109,9 +1169,37 @@ "$rpc": "undefined" } }, - "fe4574f4cf7a": { - "name": "githubProjectPasteBusy", - "value": false + "ebf1d6b98d33": { + "name": "githubProjectTable", + "value": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, + "ec92d4b4669e": { + "name": "githubProjectPasteError", + "value": { + "$rpc": "undefined" + }, + "sent": 4 + }, + "f3e4bb3c6cb0": { + "name": "githubProjectError", + "value": "", + "sent": 2 }, "ff43b5ec92a9": { "error": "", @@ -1145,7 +1233,7 @@ "projects-0": "eb79a9b3682a" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1160,11 +1248,11 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862" ] } }, @@ -1181,17 +1269,17 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1209,22 +1297,22 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "69c475303b93", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e1cc27695a3c", + "c9b4cd88639c" ] } }, @@ -1254,30 +1342,30 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1295,22 +1383,22 @@ }, "state": "12ff41170090", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "aec9d5639ed2", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "577154374a02", + "c9b4cd88639c" ] } }, @@ -1328,22 +1416,22 @@ }, "state": "7a234b9d2ae3", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "618e264cbbab", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "8ff10f29e8cd", + "c9b4cd88639c" ] } }, @@ -1361,22 +1449,22 @@ }, "state": "47aa692d7dc9", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "66f958024dc4", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "ec92d4b4669e", + "c9b4cd88639c" ] } }, @@ -1394,22 +1482,22 @@ }, "state": "47aa692d7dc9", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "66f958024dc4", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "ec92d4b4669e", + "c9b4cd88639c" ] } }, @@ -1427,22 +1515,22 @@ }, "state": "542d281c736b", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "9589db7547f2", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "9fb5dff2ed3c", + "c9b4cd88639c" ] } }, @@ -1460,22 +1548,22 @@ }, "state": "9fa2b69acf20", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e1cdc07ded44", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "8cc6c42c6cbc", + "c9b4cd88639c" ] } }, @@ -1493,22 +1581,22 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "abd075971f7c", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "0bad1349dcef", + "c9b4cd88639c" ] } }, @@ -1526,22 +1614,22 @@ }, "state": "933fa40d28dd", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "3f0b866f56f5", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "61559589d8d1", + "c9b4cd88639c" ] } }, @@ -1559,22 +1647,22 @@ }, "state": "d76c24e12352", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "46b99ab68ae7", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "699bf714392b", + "c9b4cd88639c" ] } }, @@ -1592,22 +1680,22 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "abd075971f7c", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "0bad1349dcef", + "c9b4cd88639c" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.viewtable-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.viewtable-1.json index 5755aa733b2..b0caa1fdf7b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.viewtable-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.viewtable-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "cf64dd43e708ff953ba2cbb2a70378aa8ab5d13ede157af7ba0967d913755b82", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02310a132254": { - "name": "githubProjectPartialFailures", - "value": [] - }, "02a4a58d8dfb": { "name": "github.project.listViews#2", "args": [ @@ -61,10 +57,6 @@ } } }, - "03a767961869": { - "name": "githubProjectLoading", - "value": true - }, "09d1a467c534": { "name": "github.project.listViews#1", "args": [ @@ -113,20 +105,25 @@ "name": "github.project.listViews#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, - "11b132a242c1": { - "name": "githubProjectTable", - "value": { - "$rpc": "null" - } + "156064e9724d": { + "name": "githubProjectPasteBusy", + "value": true, + "sent": 3 }, - "1296da8e044e": { + "16712ed539ad": { "name": "githubProjectSearch", - "value": "" + "value": "", + "sent": 5 }, "1d3552e91192": { "name": "github.project.listAccessible#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" }, + "218236a33a96": { + "name": "githubProjectError", + "value": "Unknown method", + "sent": 3 + }, "2538fbdb9ee1": { "error": "Cannot read properties of undefined (reading 'ok')", "loading": false, @@ -152,9 +149,10 @@ } ] }, - "27ed3970f7fb": { - "name": "githubProjectPasteBusy", - "value": true + "25b0ac550549": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 1 }, "2a4866c4dda3": { "error": "outer refused", @@ -219,13 +217,10 @@ } ] }, - "2ae6c4fc165d": { + "32b1426d14c0": { "name": "githubProjectLoading", - "value": false - }, - "2e598d8cc4d9": { - "name": "githubProjectError", - "value": "Connection closed" + "value": false, + "sent": 3 }, "376c9e8bd72a": { "error": "", @@ -252,6 +247,11 @@ } ] }, + "383da1c2fa1c": { + "name": "githubProjectLoading", + "value": true, + "sent": 4 + }, "39bc2fd66e3d": { "name": "github.project.viewTable#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" @@ -298,6 +298,16 @@ "name": "github.project.listViews#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, + "4244a1d83025": { + "name": "githubProjectError", + "value": "transport failure", + "sent": 3 + }, + "42d96f8f44ae": { + "name": "githubProjectError", + "value": "", + "sent": 3 + }, "43d044e8caea": { "name": "github.project.listAccessible#1", "args": [ @@ -341,6 +351,18 @@ } } }, + "47ebe03e8b7f": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 5 + }, "482cebdadf7a": { "name": "github.project.viewTable#1", "args": [ @@ -376,47 +398,20 @@ } } }, - "520e0f81bc2a": { - "name": "githubProjects", - "value": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ] + "4d6bf1149ea4": { + "name": "githubProjectError", + "value": "", + "sent": 4 }, - "54ea0f0a1191": { - "name": "githubProjectTable", - "value": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } + "5325dcd76d4a": { + "name": "githubProjectError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 }, - "560b9ae7cb02": { - "name": "githubProjectViews", - "value": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] + "54b9c49c04a8": { + "name": "githubProjectError", + "value": "", + "sent": 0 }, "56f0120745a9": { "error": "inner refused", @@ -443,6 +438,11 @@ } ] }, + "57acdd86193b": { + "name": "githubProjectSearch", + "value": "is:open", + "sent": 3 + }, "5af49cca31cf": { "name": "github.project.viewTable#1", "args": [ @@ -483,6 +483,33 @@ } } }, + "5bd0110906b9": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 0 + }, + "6212bd36ceb5": { + "name": "githubProjectError", + "value": "inner refused", + "sent": 3 + }, + "6579ec5a7d8f": { + "name": "githubProjectLoading", + "value": false, + "sent": 5 + }, + "6820b76533c9": { + "name": "githubProjectLoading", + "value": true, + "sent": 2 + }, + "6e64e24c633d": { + "name": "appliedGithubProjectSearch", + "value": { + "$rpc": "undefined" + }, + "sent": 5 + }, "6f73e51854d5": { "name": "github.project.resolveRef#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" @@ -550,13 +577,35 @@ } } }, - "76881a7fdb8f": { - "name": "githubProjectError", - "value": "outer refused" + "80ceb7c32703": { + "name": "githubProjects", + "value": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "sent": 1 }, - "7a0387e3a88a": { + "8ba8c7b6d28e": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 3 + }, + "900becffe437": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 4 + }, + "90792bd17eb6": { "name": "githubProjectError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Connection closed", + "sent": 3 }, "91394970ae38": { "name": "github.project.viewTable#1", @@ -627,10 +676,6 @@ } } }, - "98491273f69c": { - "name": "githubProjectError", - "value": "inner refused" - }, "a09d190ee4fa": { "name": "github.project.viewTable#1", "args": [ @@ -668,23 +713,34 @@ } } }, - "a8502e95a4f7": { - "name": "githubProjectError", - "value": "Unknown method" + "b05e50b1dc22": { + "name": "githubProjectPasteBusy", + "value": false, + "sent": 5 }, - "abd075971f7c": { - "name": "githubProjectPasteError", - "value": "" + "b2ddd7451862": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 2 }, - "b14931fed627": { - "name": "appliedGithubProjectSearch", - "value": { - "$rpc": "undefined" - } - }, - "b6fa4d826acb": { - "name": "githubProjectError", - "value": "Cannot read properties of null (reading 'ok')" + "b6255b367ac4": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 3 }, "b7072d162a52": { "name": "github.project.viewTable#1", @@ -837,9 +893,17 @@ } ] }, - "dbe747c32c99": { + "d3f2d124fc2a": { "name": "githubProjectError", - "value": "" + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 + }, + "ddc3cac1e389": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "de19f9b2e75a": { "error": "transport failure", @@ -919,17 +983,15 @@ } } }, - "e32cd29f23cb": { + "e59d16f6cde5": { + "name": "githubProjectPasteError", + "value": "", + "sent": 3 + }, + "e8b0899e8eb2": { "name": "githubProjectPasteInput", - "value": "" - }, - "e42224cf3520": { - "name": "githubProjectSearch", - "value": "is:open" - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "value": "", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -939,6 +1001,26 @@ "$rpc": "undefined" } }, + "ebf1d6b98d33": { + "name": "githubProjectTable", + "value": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, "ebfd636aa78d": { "name": "github.project.viewTable#1", "args": [ @@ -977,9 +1059,15 @@ } } }, - "ecb14ecb2ea8": { + "f3e4bb3c6cb0": { "name": "githubProjectError", - "value": "transport failure" + "value": "", + "sent": 2 + }, + "f59e95d163d7": { + "name": "githubProjectError", + "value": "outer refused", + "sent": 3 }, "fab4d5ff43b8": { "name": "github.project.viewTable#1", @@ -1043,10 +1131,6 @@ } ] }, - "fe4574f4cf7a": { - "name": "githubProjectPasteBusy", - "value": false - }, "ff43b5ec92a9": { "error": "", "loading": false, @@ -1079,7 +1163,7 @@ "projects-0": "eb79a9b3682a" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -1094,11 +1178,11 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862" ] } }, @@ -1115,16 +1199,16 @@ }, "state": "74f8ab788f2e", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "2e598d8cc4d9", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "90792bd17eb6", + "32b1426d14c0" ] } }, @@ -1141,17 +1225,17 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -1181,30 +1265,30 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1221,16 +1305,16 @@ }, "state": "2538fbdb9ee1", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "7a0387e3a88a", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "5325dcd76d4a", + "32b1426d14c0" ] } }, @@ -1260,29 +1344,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "7a0387e3a88a", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "5325dcd76d4a", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1299,16 +1383,16 @@ }, "state": "c4615593811a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "b6fa4d826acb", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "d3f2d124fc2a", + "32b1426d14c0" ] } }, @@ -1338,29 +1422,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "b6fa4d826acb", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "d3f2d124fc2a", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1377,16 +1461,16 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0" ] } }, @@ -1416,29 +1500,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1455,16 +1539,16 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0" ] } }, @@ -1494,29 +1578,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1533,16 +1617,16 @@ }, "state": "56f0120745a9", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "98491273f69c", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "6212bd36ceb5", + "32b1426d14c0" ] } }, @@ -1572,29 +1656,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "98491273f69c", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "6212bd36ceb5", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1611,16 +1695,16 @@ }, "state": "2a4866c4dda3", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "76881a7fdb8f", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "f59e95d163d7", + "32b1426d14c0" ] } }, @@ -1650,29 +1734,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "76881a7fdb8f", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "f59e95d163d7", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1689,16 +1773,16 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0" ] } }, @@ -1728,29 +1812,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1767,16 +1851,16 @@ }, "state": "fd9fcbd54752", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "a8502e95a4f7", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "218236a33a96", + "32b1426d14c0" ] } }, @@ -1806,29 +1890,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "a8502e95a4f7", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "218236a33a96", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1845,16 +1929,16 @@ }, "state": "de19f9b2e75a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "ecb14ecb2ea8", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "4244a1d83025", + "32b1426d14c0" ] } }, @@ -1884,29 +1968,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "ecb14ecb2ea8", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "4244a1d83025", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } }, @@ -1923,16 +2007,16 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0" ] } }, @@ -1962,29 +2046,29 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "11b132a242c1", - "dbe747c32c99", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "8ba8c7b6d28e", + "42d96f8f44ae", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-repo-slugs-github.reposlug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-repo-slugs-github.reposlug-1.json index 3f9a21b95a7..b2bc2c16efc 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-repo-slugs-github.reposlug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-repo-slugs-github.reposlug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-repo-slugs", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "667a06cf9ff8129eee64327566012448abe1fe31f58c0d9b882b13e74db5a877", "platform": "darwin", @@ -49,6 +49,18 @@ } } }, + "067e0f525ca4": { + "name": "githubRepoSlugCache", + "value": { + "repo-1": { + "path": "/repo", + "repository": { + "$rpc": "undefined" + } + } + }, + "sent": 1 + }, "0caf56550963": { "cache": { "repo-1": { @@ -59,20 +71,6 @@ } } }, - "1442b25019e2": { - "name": "githubRepoSlugCache", - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "error": { - "message": "inner refused" - }, - "ok": false - } - } - } - }, "1b6c8cbfdc90": { "cache": { "repo-1": { @@ -84,6 +82,19 @@ } } }, + "204880c5c7ff": { + "name": "githubRepoSlugCache", + "value": { + "repo-1": { + "path": "/repo", + "repository": { + "error": "inner refused", + "ok": false + } + } + }, + "sent": 1 + }, "436770d5f8a8": { "name": "github.repoSlug#1", "args": [ @@ -231,6 +242,46 @@ } } }, + "7686fc340030": { + "name": "githubRepoSlugCache", + "value": { + "repo-1": { + "path": "/repo", + "repository": { + "$rpc": "null" + } + } + }, + "sent": 1 + }, + "76be317ac0fc": { + "name": "githubRepoSlugCache", + "value": { + "repo-1": { + "failed": true, + "path": "/repo", + "repository": { + "$rpc": "null" + } + } + }, + "sent": 1 + }, + "788ba90c1898": { + "name": "githubRepoSlugCache", + "value": { + "repo-1": { + "path": "/repo", + "repository": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + }, + "sent": 1 + }, "7de03629a406": { "name": "github.repoSlug#1", "args": [ @@ -307,7 +358,7 @@ } } }, - "a21757eb73fd": { + "a357afc033aa": { "name": "githubRepoSlugCache", "value": { "repo-1": { @@ -318,7 +369,8 @@ "repo": "repo" } } - } + }, + "sent": 1 }, "a4483defdd13": { "cache": { @@ -364,18 +416,6 @@ } } }, - "b2fd6f936f49": { - "name": "githubRepoSlugCache", - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "error": "inner refused", - "ok": false - } - } - } - }, "bdec8bbb3c04": { "cache": { "repo-1": { @@ -388,18 +428,6 @@ } } }, - "c3850497d116": { - "name": "githubRepoSlugCache", - "value": { - "repo-1": { - "failed": true, - "path": "/repo", - "repository": { - "$rpc": "null" - } - } - } - }, "dc2fd792171e": { "name": "github.repoSlug#1", "args": [ @@ -434,17 +462,6 @@ } } }, - "e2b2399bb17c": { - "name": "githubRepoSlugCache", - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "$rpc": "undefined" - } - } - } - }, "e933226b8b59": { "name": "github.repoSlug#1", "args": [ @@ -483,7 +500,7 @@ "$rpc": "undefined" } }, - "ed19813b2541": { + "efa8d7457ce2": { "name": "githubRepoSlugCache", "value": { "repo-1": { @@ -492,18 +509,8 @@ "error": "refused" } } - } - }, - "fd2aa51746f4": { - "name": "githubRepoSlugCache", - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "$rpc": "null" - } - } - } + }, + "sent": 1 }, "ffa0fb99ddcc": { "cache": { @@ -564,7 +571,7 @@ "mount": "eb79a9b3682a" }, "state": "bdec8bbb3c04", - "effects": ["a21757eb73fd"] + "effects": ["a357afc033aa"] } }, { @@ -576,7 +583,7 @@ "mount": "eb79a9b3682a" }, "state": "4cfa99d7eefa", - "effects": ["e2b2399bb17c"] + "effects": ["067e0f525ca4"] } }, { @@ -588,7 +595,7 @@ "mount": "eb79a9b3682a" }, "state": "a4483defdd13", - "effects": ["fd2aa51746f4"] + "effects": ["7686fc340030"] } }, { @@ -600,7 +607,7 @@ "mount": "eb79a9b3682a" }, "state": "0caf56550963", - "effects": ["ed19813b2541"] + "effects": ["efa8d7457ce2"] } }, { @@ -612,7 +619,7 @@ "mount": "eb79a9b3682a" }, "state": "8a9b6f06911d", - "effects": ["b2fd6f936f49"] + "effects": ["204880c5c7ff"] } }, { @@ -624,7 +631,7 @@ "mount": "eb79a9b3682a" }, "state": "ffa0fb99ddcc", - "effects": ["1442b25019e2"] + "effects": ["788ba90c1898"] } }, { @@ -636,7 +643,7 @@ "mount": "eb79a9b3682a" }, "state": "1b6c8cbfdc90", - "effects": ["c3850497d116"] + "effects": ["76be317ac0fc"] } }, { @@ -648,7 +655,7 @@ "mount": "eb79a9b3682a" }, "state": "1b6c8cbfdc90", - "effects": ["c3850497d116"] + "effects": ["76be317ac0fc"] } }, { @@ -660,7 +667,7 @@ "mount": "eb79a9b3682a" }, "state": "1b6c8cbfdc90", - "effects": ["c3850497d116"] + "effects": ["76be317ac0fc"] } }, { @@ -672,7 +679,7 @@ "mount": "eb79a9b3682a" }, "state": "1b6c8cbfdc90", - "effects": ["c3850497d116"] + "effects": ["76be317ac0fc"] } }, { @@ -684,7 +691,7 @@ "mount": "eb79a9b3682a" }, "state": "1b6c8cbfdc90", - "effects": ["c3850497d116"] + "effects": ["76be317ac0fc"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.addissuecommentbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.addissuecommentbyslug-1.json index 63b11f28cdf..c8adf2ec070 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.addissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.addissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "9fd4756c2224f3ecbc9ffc82e1ee11615a9e057e600bc56ccaf5c5e2c0e411d8", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 + }, "04cdd10ad87d": { "detail": { "assignees": ["octocat"], @@ -79,9 +84,10 @@ "itemType": "ISSUE" } }, - "057a0b5a420b": { + "058dd618a0c9": { "name": "projectRowDetailError", - "value": "" + "value": "Failed to add comment", + "sent": 2 }, "0646472479ae": { "detail": { @@ -149,21 +155,19 @@ "itemType": "ISSUE" } }, - "086a41047c19": { - "name": "projectCommentDraft", - "value": "" - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, "0ce8caa0cc82": { "name": "github.project.addIssueCommentBySlug#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" }, - "0f7851fe84bb": { + "0d3abde11044": { "name": "projectRowDetailError", - "value": "Failed to add comment" + "value": "Connection closed", + "sent": 2 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "144eca616682": { "detail": { @@ -235,81 +239,54 @@ "name": "github.project.updateIssueCommentBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" }, - "1749ae600a25": { - "name": "githubProjectTable", + "3d626a8131b4": { + "name": "projectRowDetail", "value": { - "fields": [ + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "name": "Status", - "options": [] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" + "author": "octocat", + "body": "an edited comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" }, { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" } ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "1782d901730e": { - "name": "projectEditingCommentDraft", - "value": "" - }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 }, "41b07d08a3e2": { "detail": { @@ -377,6 +354,21 @@ "itemType": "ISSUE" } }, + "466f8db9d238": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 2 + }, + "46b4c26d709a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 2 + }, + "4b9c688ebd34": { + "name": "projectEditingCommentDraft", + "value": "", + "sent": 3 + }, "4f1e1382f08b": { "name": "github.project.addIssueCommentBySlug#1", "args": [ @@ -556,6 +548,11 @@ "itemType": "ISSUE" } }, + "5278d0def4dc": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 2 + }, "585e4c6b6fac": { "name": "github.project.addIssueCommentBySlug#1", "args": [ @@ -698,6 +695,11 @@ "itemType": "ISSUE" } }, + "674a78fb6dfb": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 2 + }, "6b62a21f3537": { "detail": { "assignees": ["octocat"], @@ -764,10 +766,6 @@ "itemType": "ISSUE" } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, "6ef3aff4fc24": { "detail": { "assignees": ["octocat"], @@ -834,9 +832,20 @@ "itemType": "ISSUE" } }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 }, "7b395b440507": { "name": "github.project.addIssueCommentBySlug#1", @@ -876,59 +885,10 @@ } } }, - "8d7301a69c58": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8f5c8979ff80": { "name": "github.project.updateIssueCommentBySlug#1", @@ -1117,6 +1077,11 @@ "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\":{\"title\":\"Renamed\"}}}" }, + "9698ad92ebc9": { + "name": "projectCommentDraft", + "value": "", + "sent": 2 + }, "99357cb70ec5": { "name": "github.project.addIssueCommentBySlug#1", "args": [ @@ -1192,59 +1157,12 @@ } } }, - "9f682b8cbc1e": { - "name": "projectRowDetail", + "a26efea23f6c": { + "name": "projectEditingCommentId", "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "an edited comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "$rpc": "null" + }, + "sent": 3 }, "a3c003fbf907": { "name": "github.project.updateIssueBySlug#1", @@ -1320,29 +1238,60 @@ } } }, - "aff4cd03e232": { - "name": "projectRowItem", + "b1384e55e8cf": { + "name": "projectRowDetail", "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true + "reviewRequests": [] + }, + "sent": 2 }, "ca900f5bc97e": { "name": "github.project.addIssueCommentBySlug#1", @@ -1384,6 +1333,11 @@ } } }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, "d2f88225ac22": { "name": "github.project.addIssueCommentBySlug#1", "args": [ @@ -1419,16 +1373,6 @@ } } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" - }, - "d33f5097e2ec": { - "name": "projectEditingCommentId", - "value": { - "$rpc": "null" - } - }, "d4cb8b6bfc20": { "detail": { "assignees": ["octocat"], @@ -1495,6 +1439,67 @@ "itemType": "ISSUE" } }, + "e3226dc257b6": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1569,11 +1574,7 @@ "itemType": "ISSUE" } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" - }, - "fc2be803a0ee": { + "ee587f93f5f1": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -1596,6 +1597,12 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 } ], "files": [ @@ -1619,7 +1626,39 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 3 + }, + "f5260513deed": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 + }, + "fe748dc95970": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 2 + }, + "fed93fa7addb": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 2 }, "ffca882b5ac7": { "name": "github.project.addIssueCommentBySlug#1", @@ -1669,7 +1708,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "9188c83ef653", - "effects": ["c2a271fc5d97", "aff4cd03e232", "1749ae600a25", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "f5260513deed", "e3226dc257b6", "02839f22d2db"] } }, { @@ -1684,13 +1723,13 @@ }, "state": "ec5c4f3719fc", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "0d3abde11044", + "6f4f9198e5ff" ] } }, @@ -1706,14 +1745,14 @@ }, "state": "5198e17de9b3", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -1730,20 +1769,20 @@ }, "state": "527330ed2103", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -1759,13 +1798,13 @@ }, "state": "04cdd10ad87d", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "fed93fa7addb", + "6f4f9198e5ff" ] } }, @@ -1782,19 +1821,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "fed93fa7addb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -1810,13 +1849,13 @@ }, "state": "6b62a21f3537", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "5278d0def4dc", + "6f4f9198e5ff" ] } }, @@ -1833,19 +1872,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "5278d0def4dc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -1861,13 +1900,13 @@ }, "state": "144eca616682", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "0f7851fe84bb", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "058dd618a0c9", + "6f4f9198e5ff" ] } }, @@ -1884,19 +1923,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "0f7851fe84bb", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "058dd618a0c9", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -1912,13 +1951,13 @@ }, "state": "144eca616682", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "0f7851fe84bb", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "058dd618a0c9", + "6f4f9198e5ff" ] } }, @@ -1935,19 +1974,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "0f7851fe84bb", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "058dd618a0c9", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -1963,13 +2002,13 @@ }, "state": "6732613ec527", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "fe748dc95970", + "6f4f9198e5ff" ] } }, @@ -1986,19 +2025,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "fe748dc95970", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2014,13 +2053,13 @@ }, "state": "41b07d08a3e2", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "466f8db9d238", + "6f4f9198e5ff" ] } }, @@ -2037,19 +2076,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2065,13 +2104,13 @@ }, "state": "9188c83ef653", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -2088,19 +2127,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2116,13 +2155,13 @@ }, "state": "6ef3aff4fc24", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "46b4c26d709a", + "6f4f9198e5ff" ] } }, @@ -2139,19 +2178,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2167,13 +2206,13 @@ }, "state": "0646472479ae", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "674a78fb6dfb", + "6f4f9198e5ff" ] } }, @@ -2190,19 +2229,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2218,13 +2257,13 @@ }, "state": "9188c83ef653", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -2241,19 +2280,19 @@ }, "state": "d4cb8b6bfc20", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "fc2be803a0ee", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "3d626a8131b4", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuebyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuebyslug-1.json index 74ba2cebe4b..6396299ccd0 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuebyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuebyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "cfe0284f502001a57a9d18585222e5ae4b254d9bac32e0bb4080ee9363e8e019", "platform": "darwin", @@ -13,17 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "086a41047c19": { - "name": "projectCommentDraft", - "value": "" - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "0ce270f34372": { "detail": { @@ -100,6 +93,16 @@ "name": "github.project.addIssueCommentBySlug#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" }, + "0ef970845cc7": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 1 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, "13824903a84a": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -177,74 +180,15 @@ } } }, + "152580ec9e5a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 1 + }, "16637fd57f65": { "name": "github.project.updateIssueCommentBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" }, - "1749ae600a25": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "name": "Status", - "options": [] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "1782d901730e": { - "name": "projectEditingCommentDraft", - "value": "" - }, "1c06180a60fe": { "detail": { "assignees": ["octocat"], @@ -387,14 +331,6 @@ "itemType": "ISSUE" } }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2d926e5ab439": { "detail": { "assignees": ["octocat"], @@ -460,10 +396,6 @@ "itemType": "ISSUE" } }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "483cdc3c1f58": { "detail": { "assignees": ["octocat"], @@ -535,6 +467,16 @@ "itemType": "ISSUE" } }, + "4b9c688ebd34": { + "name": "projectEditingCommentDraft", + "value": "", + "sent": 3 + }, + "4c09a53c8150": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, "4d1ed5381bf1": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -901,10 +843,6 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, "6eadb971d40a": { "detail": { "assignees": ["octocat"], @@ -970,9 +908,20 @@ "itemType": "ISSUE" } }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 }, "7dbdb709990a": { "detail": { @@ -1045,59 +994,20 @@ "itemType": "ISSUE" } }, - "8d7301a69c58": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "8237b3a567bf": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 1 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8f5c8979ff80": { "name": "github.project.updateIssueCommentBySlug#1", @@ -1314,6 +1224,11 @@ "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\":{\"title\":\"Renamed\"}}}" }, + "9698ad92ebc9": { + "name": "projectCommentDraft", + "value": "", + "sent": 2 + }, "9e0614dcfad6": { "detail": { "assignees": ["octocat"], @@ -1385,59 +1300,12 @@ "itemType": "ISSUE" } }, - "9f682b8cbc1e": { - "name": "projectRowDetail", + "a26efea23f6c": { + "name": "projectEditingCommentId", "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "an edited comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "$rpc": "null" + }, + "sent": 3 }, "a2f2a0705e06": { "name": "github.project.updateIssueBySlug#1", @@ -1557,25 +1425,10 @@ } } }, - "aff4cd03e232": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "a7b76954b136": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 }, "b0b8eaa35966": { "name": "github.project.updateIssueBySlug#1", @@ -1614,6 +1467,61 @@ } } }, + "b1384e55e8cf": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, "bc53376d51ab": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -1654,23 +1562,10 @@ } } }, - "c2a271fc5d97": { + "d1bb762720d5": { "name": "projectMutating", - "value": true - }, - "cbdef49cc723": { - "name": "projectRowDetailError", - "value": "Failed to update GitHub item" - }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" - }, - "d33f5097e2ec": { - "name": "projectEditingCommentId", - "value": { - "$rpc": "null" - } + "value": true, + "sent": 1 }, "d4484ddd6b14": { "detail": { @@ -1743,6 +1638,11 @@ "itemType": "ISSUE" } }, + "da0f06b573ab": { + "name": "projectRowDetailError", + "value": "Failed to update GitHub item", + "sent": 1 + }, "db89c82fef5f": { "detail": { "assignees": ["octocat"], @@ -1879,6 +1779,67 @@ "itemType": "ISSUE" } }, + "e3226dc257b6": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 1 + }, "e477ca22990a": { "detail": { "assignees": ["octocat"], @@ -2152,6 +2113,87 @@ "id": "item-1", "itemType": "ISSUE" } + }, + "ee587f93f5f1": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "an edited comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, + "eff724250cc7": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 1 + }, + "f5260513deed": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 } }, "recording": { @@ -2167,7 +2209,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "9188c83ef653", - "effects": ["c2a271fc5d97", "aff4cd03e232", "1749ae600a25", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "f5260513deed", "e3226dc257b6", "02839f22d2db"] } }, { @@ -2182,14 +2224,14 @@ }, "state": "5198e17de9b3", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2206,20 +2248,20 @@ }, "state": "527330ed2103", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2233,7 +2275,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "ec46684b62db", - "effects": ["c2a271fc5d97", "2e2da1bbd7ed", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "4c09a53c8150", "02839f22d2db"] } }, { @@ -2248,13 +2290,13 @@ }, "state": "9e0614dcfad6", "effects": [ - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2271,19 +2313,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2297,7 +2339,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "e26c297a9155", - "effects": ["c2a271fc5d97", "d330309fabb3", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "a7b76954b136", "02839f22d2db"] } }, { @@ -2312,13 +2354,13 @@ }, "state": "d4484ddd6b14", "effects": [ - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2335,19 +2377,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2361,7 +2403,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "9188c83ef653", - "effects": ["c2a271fc5d97", "aff4cd03e232", "1749ae600a25", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "f5260513deed", "e3226dc257b6", "02839f22d2db"] } }, { @@ -2376,14 +2418,14 @@ }, "state": "5198e17de9b3", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2400,20 +2442,20 @@ }, "state": "527330ed2103", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2427,7 +2469,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "4e8e632ab029", - "effects": ["c2a271fc5d97", "cbdef49cc723", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "da0f06b573ab", "02839f22d2db"] } }, { @@ -2442,13 +2484,13 @@ }, "state": "1e1fa0e5367c", "effects": [ - "c2a271fc5d97", - "cbdef49cc723", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "da0f06b573ab", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2465,19 +2507,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "cbdef49cc723", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "da0f06b573ab", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2491,7 +2533,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "2d926e5ab439", - "effects": ["c2a271fc5d97", "6fe1c7d73e4d", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "eff724250cc7", "02839f22d2db"] } }, { @@ -2506,13 +2548,13 @@ }, "state": "0ce270f34372", "effects": [ - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2529,19 +2571,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2555,7 +2597,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "912346988e26", - "effects": ["c2a271fc5d97", "27f506c59cc7", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "0ef970845cc7", "02839f22d2db"] } }, { @@ -2570,13 +2612,13 @@ }, "state": "db89c82fef5f", "effects": [ - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2593,19 +2635,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2619,7 +2661,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "e477ca22990a", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } }, { @@ -2634,13 +2676,13 @@ }, "state": "ee3092e3ff92", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2657,19 +2699,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2683,7 +2725,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "6eadb971d40a", - "effects": ["c2a271fc5d97", "6b6431f01d00", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "152580ec9e5a", "02839f22d2db"] } }, { @@ -2698,13 +2740,13 @@ }, "state": "483cdc3c1f58", "effects": [ - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2721,19 +2763,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2747,7 +2789,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "e9a8d758f9c7", - "effects": ["c2a271fc5d97", "0924615699bf", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "8237b3a567bf", "02839f22d2db"] } }, { @@ -2762,13 +2804,13 @@ }, "state": "7dbdb709990a", "effects": [ - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2785,19 +2827,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -2811,7 +2853,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "e477ca22990a", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } }, { @@ -2826,13 +2868,13 @@ }, "state": "ee3092e3ff92", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -2849,19 +2891,19 @@ }, "state": "1c06180a60fe", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuecommentbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuecommentbyslug-1.json index 1b77f7cd741..8d5b3e24314 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "b21a3b3f568bf6caecca62272f4b7882062027684c70878fd5f883622ff2a9ea", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 + }, "046fcf1720b7": { "detail": { "assignees": ["octocat"], @@ -85,89 +90,23 @@ "itemType": "ISSUE" } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "086a41047c19": { - "name": "projectCommentDraft", - "value": "" - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, "0ce8caa0cc82": { "name": "github.project.addIssueCommentBySlug#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, "16637fd57f65": { "name": "github.project.updateIssueCommentBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" }, - "1749ae600a25": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "name": "Status", - "options": [] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "1782d901730e": { - "name": "projectEditingCommentDraft", - "value": "" + "1b30471b40d2": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 3 }, "249f844e5fd7": { "name": "github.project.updateIssueCommentBySlug#1", @@ -204,17 +143,10 @@ } } }, - "27f506c59cc7": { + "347fa6adc9f3": { "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 3 }, "435d84b75259": { "name": "github.project.updateIssueCommentBySlug#1", @@ -254,6 +186,11 @@ } } }, + "4b9c688ebd34": { + "name": "projectEditingCommentDraft", + "value": "", + "sent": 3 + }, "4ef3d6c081cc": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -436,13 +373,15 @@ "itemType": "ISSUE" } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 }, "7683733d824b": { "name": "github.project.updateIssueCommentBySlug#1", @@ -482,6 +421,11 @@ } } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, "8130cec409d0": { "detail": { "assignees": ["octocat"], @@ -663,59 +607,10 @@ } } }, - "8d7301a69c58": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8f5c8979ff80": { "name": "github.project.updateIssueCommentBySlug#1", @@ -797,6 +692,11 @@ } } }, + "9138850642c5": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 3 + }, "9188c83ef653": { "detail": { "assignees": ["octocat"], @@ -867,6 +767,11 @@ "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\":{\"title\":\"Renamed\"}}}" }, + "9698ad92ebc9": { + "name": "projectCommentDraft", + "value": "", + "sent": 2 + }, "98d03b78783e": { "detail": { "assignees": ["octocat"], @@ -939,60 +844,6 @@ "itemType": "ISSUE" } }, - "9f682b8cbc1e": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "an edited comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "a1ef0cf29aaa": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -1031,6 +882,13 @@ } } }, + "a26efea23f6c": { + "name": "projectEditingCommentId", + "value": { + "$rpc": "null" + }, + "sent": 3 + }, "a3404a53c58b": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -1105,25 +963,60 @@ } } }, - "aff4cd03e232": { - "name": "projectRowItem", + "b1384e55e8cf": { + "name": "projectRowDetail", "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "reviewRequests": [] + }, + "sent": 2 }, "b867fbc25fae": { "name": "github.project.updateIssueCommentBySlug#1", @@ -1165,19 +1058,10 @@ } } }, - "c2a271fc5d97": { + "d1bb762720d5": { "name": "projectMutating", - "value": true - }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" - }, - "d33f5097e2ec": { - "name": "projectEditingCommentId", - "value": { - "$rpc": "null" - } + "value": true, + "sent": 1 }, "d3919ddf3bd4": { "detail": { @@ -1323,6 +1207,77 @@ "itemType": "ISSUE" } }, + "d72ea315da15": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 3 + }, + "d856c0886ca0": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 3 + }, + "e3226dc257b6": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 1 + }, "e6decc8d528e": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -1360,6 +1315,11 @@ } } }, + "e7d38ed5fb03": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, "eb064eaa81a1": { "detail": { "assignees": ["octocat"], @@ -1432,6 +1392,11 @@ "itemType": "ISSUE" } }, + "eb612a2e1a87": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1440,6 +1405,61 @@ "$rpc": "undefined" } }, + "ee587f93f5f1": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "an edited comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, "ee5cfc07be28": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -1475,6 +1495,32 @@ } } }, + "f37a9bff665c": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 3 + }, + "f5260513deed": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 + }, "f5296aa6ec28": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -1508,10 +1554,6 @@ "ok": true } } - }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" } }, "recording": { @@ -1527,7 +1569,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "9188c83ef653", - "effects": ["c2a271fc5d97", "aff4cd03e232", "1749ae600a25", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "f5260513deed", "e3226dc257b6", "02839f22d2db"] } }, { @@ -1542,14 +1584,14 @@ }, "state": "5198e17de9b3", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -1566,18 +1608,18 @@ }, "state": "98d03b78783e", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f37a9bff665c", + "73c3051352c2" ] } }, @@ -1594,20 +1636,20 @@ }, "state": "527330ed2103", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -1624,18 +1666,18 @@ }, "state": "d3919ddf3bd4", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2" ] } }, @@ -1652,18 +1694,18 @@ }, "state": "848c29b901c6", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2" ] } }, @@ -1680,20 +1722,20 @@ }, "state": "527330ed2103", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } }, @@ -1710,18 +1752,18 @@ }, "state": "d42b872468e1", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2" ] } }, @@ -1738,18 +1780,18 @@ }, "state": "d42b872468e1", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2" ] } }, @@ -1766,18 +1808,18 @@ }, "state": "046fcf1720b7", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2" ] } }, @@ -1794,18 +1836,18 @@ }, "state": "5198e17de9b3", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -1822,18 +1864,18 @@ }, "state": "eb064eaa81a1", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2" ] } }, @@ -1850,18 +1892,18 @@ }, "state": "8130cec409d0", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2" ] } }, @@ -1878,18 +1920,18 @@ }, "state": "5198e17de9b3", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-pr-github.project.updatepullrequestbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-pr-github.project.updatepullrequestbyslug-1.json index d8ee7024494..f1f7f09d551 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-pr-github.project.updatepullrequestbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-pr-github.project.updatepullrequestbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-pr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "e286edb942c338fd844ce8437ac03c872838228515ce833cfd310332354da725", "platform": "darwin", @@ -13,13 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, - "0924615699bf": { + "0ef970845cc7": { "name": "projectRowDetailError", - "value": "transport failure" + "value": "outer refused", + "sent": 1 }, "0fa9db1cc7c0": { "name": "github.project.updatePullRequestBySlug#1", @@ -60,6 +62,11 @@ } } }, + "152580ec9e5a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 1 + }, "194a466e49bd": { "detail": { "assignees": ["octocat"], @@ -125,14 +132,6 @@ "itemType": "PULL_REQUEST" } }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2d1e8ede1fcf": { "detail": { "assignees": ["octocat"], @@ -199,10 +198,6 @@ "itemType": "PULL_REQUEST" } }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "470d3aa7b368": { "detail": { "assignees": ["octocat"], @@ -369,6 +364,11 @@ } } }, + "4c09a53c8150": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, "4cc5ce7ffda2": { "name": "github.project.updatePullRequestBySlug#1", "args": [ @@ -473,14 +473,6 @@ "itemType": "PULL_REQUEST" } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" - }, "71fe9d50f237": { "name": "github.project.updatePullRequestBySlug#1", "args": [ @@ -586,6 +578,11 @@ "itemType": "PULL_REQUEST" } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, "7b9270764362": { "name": "github.project.updatePullRequestBySlug#1", "args": [ @@ -630,25 +627,15 @@ "name": "github.project.updatePullRequestBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updatePullRequestBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":2,\"updates\":{\"title\":\"Renamed\"}}}" }, - "944afddca6db": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } + "8237b3a567bf": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 1 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, "97094e0009d2": { "name": "github.project.updatePullRequestBySlug#1", @@ -767,6 +754,11 @@ } } }, + "a7b76954b136": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, "bc87b4b6ed64": { "name": "github.project.updatePullRequestBySlug#1", "args": [ @@ -871,56 +863,28 @@ "itemType": "PULL_REQUEST" } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "cbdef49cc723": { - "name": "projectRowDetailError", - "value": "Failed to update GitHub item" - }, - "cff93cd7b1a7": { - "name": "github.project.updatePullRequestBySlug#1", - "args": [ - { - "name": "method", - "value": "github.project.updatePullRequestBySlug" + "c8e3f060e5f1": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/pull/2" }, - { - "name": "params", - "value": { - "host": "github.enterprise.test", - "number": 2, - "owner": "owner", - "repo": "repo", - "updates": { - "title": "Renamed" - } - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "transport failure", - "isRpcDeliveryUnknown": true - } - } + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + }, + "sent": 1 }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" - }, - "d8d5425b5f04": { + "c9abda0c6d89": { "name": "githubProjectTable", "value": { "fields": [ @@ -978,8 +942,51 @@ "name": "Table", "number": 1 } + }, + "sent": 1 + }, + "cff93cd7b1a7": { + "name": "github.project.updatePullRequestBySlug#1", + "args": [ + { + "name": "method", + "value": "github.project.updatePullRequestBySlug" + }, + { + "name": "params", + "value": { + "host": "github.enterprise.test", + "number": 2, + "owner": "owner", + "repo": "repo", + "updates": { + "title": "Renamed" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } } }, + "da0f06b573ab": { + "name": "projectRowDetailError", + "value": "Failed to update GitHub item", + "sent": 1 + }, "e07ed1ef7289": { "name": "github.project.updatePullRequestBySlug#1", "args": [ @@ -1030,6 +1037,11 @@ "$rpc": "undefined" } }, + "eff724250cc7": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 1 + }, "f7a965ae68e5": { "detail": { "assignees": ["octocat"], @@ -1174,7 +1186,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "2d1e8ede1fcf", - "effects": ["c2a271fc5d97", "944afddca6db", "d8d5425b5f04", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "c8e3f060e5f1", "c9abda0c6d89", "02839f22d2db"] } }, { @@ -1187,7 +1199,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "49d660b9acf0", - "effects": ["c2a271fc5d97", "2e2da1bbd7ed", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "4c09a53c8150", "02839f22d2db"] } }, { @@ -1200,7 +1212,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "f7a965ae68e5", - "effects": ["c2a271fc5d97", "d330309fabb3", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "a7b76954b136", "02839f22d2db"] } }, { @@ -1213,7 +1225,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "2d1e8ede1fcf", - "effects": ["c2a271fc5d97", "944afddca6db", "d8d5425b5f04", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "c8e3f060e5f1", "c9abda0c6d89", "02839f22d2db"] } }, { @@ -1226,7 +1238,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "fce902b2381c", - "effects": ["c2a271fc5d97", "cbdef49cc723", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "da0f06b573ab", "02839f22d2db"] } }, { @@ -1239,7 +1251,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "194a466e49bd", - "effects": ["c2a271fc5d97", "6fe1c7d73e4d", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "eff724250cc7", "02839f22d2db"] } }, { @@ -1252,7 +1264,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "c089d68bd230", - "effects": ["c2a271fc5d97", "27f506c59cc7", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "0ef970845cc7", "02839f22d2db"] } }, { @@ -1265,7 +1277,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "6764270f0dc1", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } }, { @@ -1278,7 +1290,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "79252b22d0fc", - "effects": ["c2a271fc5d97", "6b6431f01d00", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "152580ec9e5a", "02839f22d2db"] } }, { @@ -1291,7 +1303,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "470d3aa7b368", - "effects": ["c2a271fc5d97", "0924615699bf", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "8237b3a567bf", "02839f22d2db"] } }, { @@ -1304,7 +1316,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "6764270f0dc1", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-detail-github.project.workitemdetailsbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-detail-github.project.workitemdetailsbyslug-1.json index 4a607f2191d..c8a9c15f1bb 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-detail-github.project.workitemdetailsbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-detail-github.project.workitemdetailsbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-detail", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "52b2cc222d9819121ba99f8f603bc76abe420d731e5853116e802a4db59e2d3e", "platform": "darwin", @@ -13,23 +13,20 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { + "049372f27933": { + "name": "prFileContents", + "value": {}, + "sent": 0 + }, + "0e6d17a72b48": { + "name": "projectEditingCommentDraft", + "value": "", + "sent": 0 + }, + "0ef970845cc7": { "name": "projectRowDetailError", - "value": "" - }, - "086a41047c19": { - "name": "projectCommentDraft", - "value": "" - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } + "value": "outer refused", + "sent": 1 }, "0fa980ff8396": { "detail": { @@ -38,23 +35,29 @@ "error": "outer refused", "loading": false }, - "1057be813592": { + "152580ec9e5a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 1 + }, + "1948869d1aab": { + "name": "projectTitleDraft", + "value": { + "$rpc": "undefined" + }, + "sent": 0 + }, + "1ab0db6f980d": { + "name": "projectCommentDraft", + "value": "", + "sent": 0 + }, + "1e04ae13b692": { "name": "expandedPrFilePath", "value": { "$rpc": "null" - } - }, - "1782d901730e": { - "name": "projectEditingCommentDraft", - "value": "" - }, - "188585c3859c": { - "name": "projectFieldDrafts", - "value": {} - }, - "1ca3c6b62543": { - "name": "projectRowDetailLoading", - "value": true + }, + "sent": 0 }, "205699b4093c": { "detail": { @@ -63,9 +66,10 @@ "error": "inner refused", "loading": false }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" + "228957b08ee5": { + "name": "projectReviewersDraft", + "value": "", + "sent": 0 }, "2a5f104cc20a": { "name": "github.project.workItemDetailsBySlug#1", @@ -102,16 +106,6 @@ } } }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, "348c16318267": { "detail": { "$rpc": "null" @@ -119,9 +113,17 @@ "error": "transport failure", "loading": false }, - "3befcdf8b535": { - "name": "projectReviewersDraft", - "value": "" + "3690e3603bc7": { + "name": "projectEditingCommentId", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "3a8d8b837c22": { + "name": "projectRowDetailLoading", + "value": false, + "sent": 1 }, "41f7d0f4ab48": { "detail": { @@ -130,6 +132,13 @@ "error": "Unknown method", "loading": false }, + "4331036690d4": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, "45b703d1ba29": { "detail": { "$rpc": "null" @@ -175,25 +184,10 @@ } } }, - "4f9b2f35c45f": { - "name": "projectRowDetail", - "value": { - "assignees": [], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [], - "files": [], - "headSha": "head-sha", - "labels": [], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "undefined" - }, - "reviewRequests": [] - } + "4c09a53c8150": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 }, "5a7bbfc7f8af": { "name": "github.project.workItemDetailsBySlug#1", @@ -230,10 +224,6 @@ } } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, "629ca94bfed3": { "name": "github.project.workItemDetailsBySlug#1", "args": [ @@ -268,9 +258,10 @@ } } }, - "6918d0b7aab9": { - "name": "prFileContents", - "value": {} + "62fee54ba0b2": { + "name": "projectBodyDraft", + "value": "", + "sent": 0 }, "697a14434811": { "name": "github.project.workItemDetailsBySlug#1", @@ -309,23 +300,37 @@ } } }, - "6b6431f01d00": { + "73fd5eb0550e": { + "name": "projectRowDetailLoading", + "value": true, + "sent": 0 + }, + "80d38ca65a5d": { "name": "projectRowDetailError", - "value": "Unknown method" + "value": "", + "sent": 0 }, - "6fe1c7d73e4d": { + "8237b3a567bf": { "name": "projectRowDetailError", - "value": "inner refused" + "value": "transport failure", + "sent": 1 }, - "8f0c8ca9f6fc": { - "name": "projectBodyDraft", - "value": "" + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, - "9348720697e0": { - "name": "projectTitleDraft", + "8e5298b22c5f": { + "name": "projectRowDetail", "value": { - "$rpc": "undefined" - } + "$rpc": "null" + }, + "sent": 0 + }, + "9b91f921fbb2": { + "name": "projectFieldDrafts", + "value": {}, + "sent": 0 }, "9cbb2a5c7ddc": { "name": "github.project.workItemDetailsBySlug#1", @@ -365,6 +370,11 @@ } } }, + "a7b76954b136": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, "ab01782b6daf": { "name": "github.project.workItemDetailsBySlug#1", "args": [ @@ -471,6 +481,32 @@ "error": "Cannot read properties of undefined (reading 'ok')", "loading": false }, + "c3e75b813157": { + "name": "projectRowDetail", + "value": { + "assignees": [], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [], + "files": [], + "headSha": "head-sha", + "labels": [], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "undefined" + }, + "reviewRequests": [] + }, + "sent": 1 + }, + "ce991ff5560d": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 0 + }, "d1f95449bb04": { "name": "github.project.workItemDetailsBySlug#1", "args": [ @@ -521,16 +557,6 @@ } } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" - }, - "d33f5097e2ec": { - "name": "projectEditingCommentId", - "value": { - "$rpc": "null" - } - }, "e11a0d677154": { "name": "github.project.workItemDetailsBySlug#1", "args": [ @@ -581,6 +607,11 @@ "$rpc": "undefined" } }, + "eff724250cc7": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 1 + }, "f3a26e0bbdca": { "detail": { "$rpc": "null" @@ -588,10 +619,6 @@ "error": "Cannot read properties of null (reading 'ok')", "loading": false }, - "f78c32654fc4": { - "name": "projectRowDetailLoading", - "value": false - }, "fe08a0925a32": { "name": "github.project.workItemDetailsBySlug#1", "args": [ @@ -643,22 +670,22 @@ }, "state": "b2a01ad6d4fe", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "4f9b2f35c45f", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "c3e75b813157", + "3a8d8b837c22" ] } }, @@ -672,22 +699,22 @@ }, "state": "ba38fcc880dc", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "2e2da1bbd7ed", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "4c09a53c8150", + "3a8d8b837c22" ] } }, @@ -701,22 +728,22 @@ }, "state": "f3a26e0bbdca", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "d330309fabb3", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "a7b76954b136", + "3a8d8b837c22" ] } }, @@ -730,22 +757,22 @@ }, "state": "45b703d1ba29", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "057a0b5a420b", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "85f150b2df81", + "3a8d8b837c22" ] } }, @@ -759,22 +786,22 @@ }, "state": "45b703d1ba29", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "057a0b5a420b", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "85f150b2df81", + "3a8d8b837c22" ] } }, @@ -788,22 +815,22 @@ }, "state": "205699b4093c", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "6fe1c7d73e4d", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "eff724250cc7", + "3a8d8b837c22" ] } }, @@ -817,22 +844,22 @@ }, "state": "0fa980ff8396", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "27f506c59cc7", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "0ef970845cc7", + "3a8d8b837c22" ] } }, @@ -846,22 +873,22 @@ }, "state": "45b703d1ba29", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "057a0b5a420b", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "85f150b2df81", + "3a8d8b837c22" ] } }, @@ -875,22 +902,22 @@ }, "state": "41f7d0f4ab48", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "6b6431f01d00", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "152580ec9e5a", + "3a8d8b837c22" ] } }, @@ -904,22 +931,22 @@ }, "state": "348c16318267", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "0924615699bf", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "8237b3a567bf", + "3a8d8b837c22" ] } }, @@ -933,22 +960,22 @@ }, "state": "45b703d1ba29", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "057a0b5a420b", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "85f150b2df81", + "3a8d8b837c22" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.clearitemfield-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.clearitemfield-1.json index 805ecf817a1..f868ea173d8 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.clearitemfield-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.clearitemfield-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "0fe8c60631cf04d33b34371155f5f80c8426b07b1cbec2fabc5d6d619f2633b8", "platform": "darwin", @@ -13,116 +13,20 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "010155bc60dd": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, - "057a0b5a420b": { + "0d3abde11044": { "name": "projectRowDetailError", - "value": "" + "value": "Connection closed", + "sent": 2 }, - "06620643557d": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "11453f1749a4": { "error": "transport failure", @@ -223,72 +127,6 @@ } } }, - "1153dfcb2ccc": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "17d68b64c995": { "name": "github.project.clearItemField#1", "args": [ @@ -328,11 +166,10 @@ } } }, - "1939e469a4b3": { - "name": "projectFieldDrafts", - "value": { - "field-1": "" - } + "1bd08607e7f8": { + "name": "projectRowDetailError", + "value": "Failed to update project field", + "sent": 2 }, "1c2300267a50": { "name": "github.project.clearItemField#1", @@ -368,9 +205,80 @@ } } }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" + "208468d41a71": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 1 }, "292291b21e81": { "error": "Cannot read properties of null (reading 'ok')", @@ -471,14 +379,6 @@ } } }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "311a2f79b43d": { "error": "transport failure", "mutating": false, @@ -625,79 +525,33 @@ } } }, - "3a0ba35a3b28": { - "name": "githubProjectTable", + "34daaf185d9e": { + "name": "projectRowItem", "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 }, "3acce5b08290": { "error": "inner refused", @@ -897,6 +751,16 @@ } } }, + "466f8db9d238": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 2 + }, + "46b4c26d709a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 2 + }, "46c028c0d924": { "name": "github.project.clearItemField#1", "args": [ @@ -937,6 +801,103 @@ "name": "github.project.updateIssueTypeBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}" }, + "5278d0def4dc": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 2 + }, + "55107e6e9979": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 2 + }, + "574da420bac4": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 3 + }, "57a8b31d7765": { "error": "", "mutating": false, @@ -1353,6 +1314,11 @@ } } }, + "674a78fb6dfb": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 2 + }, "674d1327dcc8": { "error": "Cannot read properties of null (reading 'ok')", "mutating": false, @@ -1545,32 +1511,15 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "6be8b6473722": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 }, "759540f23b63": { "name": "github.project.clearItemField#1", @@ -1643,6 +1592,11 @@ } } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, "7da1fa6feb18": { "name": "github.project.clearItemField#1", "args": [ @@ -1677,38 +1631,167 @@ } } }, - "828b2d745070": { - "name": "projectRowDetailError", - "value": "Failed to update project field" - }, - "83ef3d3c2cac": { - "name": "projectRowItem", + "824d5b4543f1": { + "name": "githubProjectTable", "value": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 }, "895e7a6b9398": { "name": "github.project.updateItemField#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "99cdcb3796ac": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, "9b25901e2435": { "error": "Cannot read properties of undefined (reading 'ok')", "mutating": false, @@ -1818,6 +1901,13 @@ } } }, + "b2345144ca7e": { + "name": "projectFieldDrafts", + "value": { + "field-1": "" + }, + "sent": 2 + }, "bd34a3803a4e": { "error": "inner refused", "mutating": false, @@ -1927,13 +2017,18 @@ } } }, - "c28945c7087a": { + "c3317944bc82": { "name": "projectRowItem", "value": { "content": { "assignees": [], "issueType": { - "$rpc": "null" + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" }, "labels": [], "number": 1, @@ -1952,11 +2047,8 @@ }, "id": "item-1", "itemType": "ISSUE" - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true + }, + "sent": 3 }, "c5d817856415": { "error": "", @@ -2301,85 +2393,6 @@ } } }, - "ca40db170f48": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "cdb1e0ec3294": { "name": "github.project.clearItemField#1", "args": [ @@ -2566,9 +2579,30 @@ } } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d74cf538de66": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 2 }, "d7d194b8694f": { "name": "github.project.clearItemField#1", @@ -2917,9 +2951,15 @@ } } }, - "f871d643501c": { + "fe748dc95970": { "name": "projectRowDetailError", - "value": "Connection closed" + "value": "inner refused", + "sent": 2 + }, + "fed93fa7addb": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 2 } }, "recording": { @@ -2935,7 +2975,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "424e9a1ae7ed", - "effects": ["c2a271fc5d97", "c28945c7087a", "3a0ba35a3b28", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "34daaf185d9e", "208468d41a71", "02839f22d2db"] } }, { @@ -2950,13 +2990,13 @@ }, "state": "c5d817856415", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "0d3abde11044", + "6f4f9198e5ff" ] } }, @@ -2972,15 +3012,15 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2997,19 +3037,19 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -3025,13 +3065,13 @@ }, "state": "e0b55fd5ddd3", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "fed93fa7addb", + "6f4f9198e5ff" ] } }, @@ -3048,17 +3088,17 @@ }, "state": "9b25901e2435", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "fed93fa7addb", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3074,13 +3114,13 @@ }, "state": "292291b21e81", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "5278d0def4dc", + "6f4f9198e5ff" ] } }, @@ -3097,17 +3137,17 @@ }, "state": "674d1327dcc8", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "5278d0def4dc", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3123,15 +3163,15 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -3148,19 +3188,19 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -3176,13 +3216,13 @@ }, "state": "6294f739146e", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "828b2d745070", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "1bd08607e7f8", + "6f4f9198e5ff" ] } }, @@ -3199,17 +3239,17 @@ }, "state": "c70cb6df3f9c", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "828b2d745070", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "1bd08607e7f8", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3225,13 +3265,13 @@ }, "state": "3acce5b08290", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "fe748dc95970", + "6f4f9198e5ff" ] } }, @@ -3248,17 +3288,17 @@ }, "state": "bd34a3803a4e", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "fe748dc95970", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3274,13 +3314,13 @@ }, "state": "5f110d72ade0", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "466f8db9d238", + "6f4f9198e5ff" ] } }, @@ -3297,17 +3337,17 @@ }, "state": "cfc00f66b739", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3323,13 +3363,13 @@ }, "state": "424e9a1ae7ed", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -3346,17 +3386,17 @@ }, "state": "57a8b31d7765", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3372,13 +3412,13 @@ }, "state": "c668cb389101", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "46b4c26d709a", + "6f4f9198e5ff" ] } }, @@ -3395,17 +3435,17 @@ }, "state": "645856fd5e4f", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3421,13 +3461,13 @@ }, "state": "11453f1749a4", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "674a78fb6dfb", + "6f4f9198e5ff" ] } }, @@ -3444,17 +3484,17 @@ }, "state": "311a2f79b43d", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } }, @@ -3470,13 +3510,13 @@ }, "state": "424e9a1ae7ed", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -3493,17 +3533,17 @@ }, "state": "57a8b31d7765", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "06620643557d", - "ca40db170f48", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "c3317944bc82", + "99cdcb3796ac", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateissuetypebyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateissuetypebyslug-1.json index 84bad518059..6096906fb3c 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateissuetypebyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateissuetypebyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "8ad021e101d8ef17ed47472a5fbfbeaebb2690a4040c89a0e9ee133e69e4fecd", "platform": "darwin", @@ -13,80 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "010155bc60dd": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "06f1fbeb0d68": { "error": "inner refused", @@ -171,81 +101,15 @@ } } }, - "0924615699bf": { + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "1b30471b40d2": { "name": "projectRowDetailError", - "value": "transport failure" - }, - "1153dfcb2ccc": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "1939e469a4b3": { - "name": "projectFieldDrafts", - "value": { - "field-1": "" - } + "value": "inner refused", + "sent": 3 }, "1cac1b5d748f": { "name": "github.project.updateIssueTypeBySlug#1", @@ -285,19 +149,7 @@ } } }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "3a0ba35a3b28": { + "208468d41a71": { "name": "githubProjectTable", "value": { "fields": [ @@ -369,7 +221,41 @@ "name": "Table", "number": 1 } - } + }, + "sent": 1 + }, + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 + }, + "34daaf185d9e": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 }, "410042a82391": { "name": "github.project.updateIssueTypeBySlug#1", @@ -700,6 +586,73 @@ } } }, + "55107e6e9979": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 2 + }, "56f10066f7c7": { "error": "outer refused", "mutating": false, @@ -783,6 +736,31 @@ } } }, + "574da420bac4": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 3 + }, "609b678e071d": { "error": "Cannot read properties of null (reading 'ok')", "mutating": false, @@ -1020,29 +998,6 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, - "6be8b6473722": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, "6e1a42381897": { "error": "", "mutating": true, @@ -1126,9 +1081,20 @@ } } }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 }, "7c1d7cf7bffa": { "error": "Failed to update issue type", @@ -1213,34 +1179,87 @@ } } }, - "83ef3d3c2cac": { - "name": "projectRowItem", + "824d5b4543f1": { + "name": "githubProjectTable", "value": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 }, "895e7a6b9398": { "name": "github.project.updateItemField#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" }, + "9138850642c5": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 3 + }, "979b91030a71": { "error": "transport failure", "mutating": false, @@ -1397,36 +1416,12 @@ } } }, - "c28945c7087a": { - "name": "projectRowItem", + "b2345144ca7e": { + "name": "projectFieldDrafts", "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true + "field-1": "" + }, + "sent": 2 }, "d19660e0ba85": { "name": "github.project.updateItemField#1", @@ -1468,13 +1463,40 @@ } } }, - "d330309fabb3": { + "d1a1ddbea4f4": { "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "value": "Failed to update issue type", + "sent": 3 }, - "d61a2bdf170c": { + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d72ea315da15": { "name": "projectRowDetailError", - "value": "Failed to update issue type" + "value": "transport failure", + "sent": 3 + }, + "d74cf538de66": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 2 }, "d8504a4a27ff": { "name": "github.project.updateIssueTypeBySlug#1", @@ -1513,6 +1535,11 @@ } } }, + "d856c0886ca0": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 3 + }, "dca464e5bca3": { "name": "github.project.clearItemField#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}" @@ -1731,6 +1758,16 @@ } } }, + "e7d38ed5fb03": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, + "eb612a2e1a87": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1739,6 +1776,11 @@ "$rpc": "undefined" } }, + "f37a9bff665c": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 3 + }, "f4712f15d814": { "name": "github.project.updateIssueTypeBySlug#1", "args": [ @@ -1816,10 +1858,6 @@ } } } - }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" } }, "recording": { @@ -1835,7 +1873,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "424e9a1ae7ed", - "effects": ["c2a271fc5d97", "c28945c7087a", "3a0ba35a3b28", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "34daaf185d9e", "208468d41a71", "02839f22d2db"] } }, { @@ -1850,15 +1888,15 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -1875,18 +1913,18 @@ }, "state": "6e1a42381897", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "f37a9bff665c", + "73c3051352c2" ] } }, @@ -1903,19 +1941,19 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -1932,18 +1970,18 @@ }, "state": "e4b835fd05c7", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "e7d38ed5fb03", + "73c3051352c2" ] } }, @@ -1960,18 +1998,18 @@ }, "state": "609b678e071d", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "eb612a2e1a87", + "73c3051352c2" ] } }, @@ -1988,19 +2026,19 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2017,18 +2055,18 @@ }, "state": "7c1d7cf7bffa", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "d61a2bdf170c", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "d1a1ddbea4f4", + "73c3051352c2" ] } }, @@ -2045,18 +2083,18 @@ }, "state": "06f1fbeb0d68", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "1b30471b40d2", + "73c3051352c2" ] } }, @@ -2073,18 +2111,18 @@ }, "state": "56f10066f7c7", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "9138850642c5", + "73c3051352c2" ] } }, @@ -2101,18 +2139,18 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -2129,18 +2167,18 @@ }, "state": "4f9f6d6a111c", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "d856c0886ca0", + "73c3051352c2" ] } }, @@ -2157,18 +2195,18 @@ }, "state": "979b91030a71", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "d72ea315da15", + "73c3051352c2" ] } }, @@ -2185,18 +2223,18 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "347fa6adc9f3", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateitemfield-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateitemfield-1.json index 09f1580d957..d8d1034ee00 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateitemfield-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateitemfield-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "4d33ce12f3f35bea8a98fec2c0378e73caf7fbfb93085545e890b082a392cd60", "platform": "darwin", @@ -13,80 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "010155bc60dd": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "06f1fbeb0d68": { "error": "inner refused", @@ -171,9 +101,15 @@ } } }, - "0924615699bf": { + "0ef970845cc7": { "name": "projectRowDetailError", - "value": "transport failure" + "value": "outer refused", + "sent": 1 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "0f6f9457ff9b": { "error": "Cannot read properties of undefined (reading 'ok')", @@ -351,72 +287,6 @@ } } }, - "1153dfcb2ccc": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "1380b97742e8": { "error": "Unknown method", "mutating": false, @@ -510,25 +380,12 @@ } } }, - "1939e469a4b3": { - "name": "projectFieldDrafts", - "value": { - "field-1": "" - } - }, - "27f506c59cc7": { + "152580ec9e5a": { "name": "projectRowDetailError", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "3a0ba35a3b28": { + "208468d41a71": { "name": "githubProjectTable", "value": { "fields": [ @@ -600,7 +457,36 @@ "name": "Table", "number": 1 } - } + }, + "sent": 1 + }, + "34daaf185d9e": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 }, "3c5f3f30f302": { "name": "github.project.updateItemField#1", @@ -877,6 +763,11 @@ "name": "github.project.updateIssueTypeBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}" }, + "4c09a53c8150": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, "4f9f6d6a111c": { "error": "Unknown method", "mutating": false, @@ -960,6 +851,73 @@ } } }, + "55107e6e9979": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 2 + }, "5547ae3de041": { "name": "github.project.updateItemField#1", "args": [ @@ -1084,6 +1042,31 @@ } } }, + "574da420bac4": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 3 + }, "609b678e071d": { "error": "Cannot read properties of null (reading 'ok')", "mutating": false, @@ -1421,32 +1404,20 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "6be8b6473722": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 }, "807f89a51704": { "error": "inner refused", @@ -1541,38 +1512,97 @@ } } }, - "828b2d745070": { + "8237b3a567bf": { "name": "projectRowDetailError", - "value": "Failed to update project field" + "value": "transport failure", + "sent": 1 }, - "83ef3d3c2cac": { - "name": "projectRowItem", + "824d5b4543f1": { + "name": "githubProjectTable", "value": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, "895e7a6b9398": { "name": "github.project.updateItemField#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" }, + "8a3a29ab638a": { + "name": "projectRowDetailError", + "value": "Failed to update project field", + "sent": 1 + }, "9187aa80af70": { "error": "Cannot read properties of null (reading 'ok')", "mutating": false, @@ -1824,6 +1854,18 @@ } } }, + "a7b76954b136": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, + "b2345144ca7e": { + "name": "projectFieldDrafts", + "value": { + "field-1": "" + }, + "sent": 2 + }, "c06c70888019": { "name": "github.project.updateItemField#1", "args": [ @@ -1865,37 +1907,6 @@ } } }, - "c28945c7087a": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "d0b8df2afede": { "name": "github.project.updateItemField#1", "args": [ @@ -2069,9 +2080,10 @@ } } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 }, "d3d3d8af379c": { "name": "github.project.updateItemField#1", @@ -2114,6 +2126,26 @@ } } }, + "d74cf538de66": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 2 + }, "d8504a4a27ff": { "name": "github.project.updateIssueTypeBySlug#1", "args": [ @@ -2379,6 +2411,11 @@ "value": { "$rpc": "undefined" } + }, + "eff724250cc7": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 1 } }, "recording": { @@ -2394,7 +2431,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "424e9a1ae7ed", - "effects": ["c2a271fc5d97", "c28945c7087a", "3a0ba35a3b28", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "34daaf185d9e", "208468d41a71", "02839f22d2db"] } }, { @@ -2409,15 +2446,15 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2434,19 +2471,19 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2460,7 +2497,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "e4b835fd05c7", - "effects": ["c2a271fc5d97", "2e2da1bbd7ed", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "4c09a53c8150", "02839f22d2db"] } }, { @@ -2475,14 +2512,14 @@ }, "state": "e4b835fd05c7", "effects": [ - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2499,18 +2536,18 @@ }, "state": "0f6f9457ff9b", "effects": [ - "c2a271fc5d97", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2524,7 +2561,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "609b678e071d", - "effects": ["c2a271fc5d97", "d330309fabb3", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "a7b76954b136", "02839f22d2db"] } }, { @@ -2539,14 +2576,14 @@ }, "state": "609b678e071d", "effects": [ - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2563,18 +2600,18 @@ }, "state": "9187aa80af70", "effects": [ - "c2a271fc5d97", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2588,7 +2625,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "424e9a1ae7ed", - "effects": ["c2a271fc5d97", "c28945c7087a", "3a0ba35a3b28", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "34daaf185d9e", "208468d41a71", "02839f22d2db"] } }, { @@ -2603,15 +2640,15 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2628,19 +2665,19 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2654,7 +2691,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "100344e42a25", - "effects": ["c2a271fc5d97", "828b2d745070", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "8a3a29ab638a", "02839f22d2db"] } }, { @@ -2669,14 +2706,14 @@ }, "state": "100344e42a25", "effects": [ - "c2a271fc5d97", - "828b2d745070", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "8a3a29ab638a", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2693,18 +2730,18 @@ }, "state": "4535ac294dad", "effects": [ - "c2a271fc5d97", - "828b2d745070", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "8a3a29ab638a", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2718,7 +2755,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "06f1fbeb0d68", - "effects": ["c2a271fc5d97", "6fe1c7d73e4d", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "eff724250cc7", "02839f22d2db"] } }, { @@ -2733,14 +2770,14 @@ }, "state": "06f1fbeb0d68", "effects": [ - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2757,18 +2794,18 @@ }, "state": "807f89a51704", "effects": [ - "c2a271fc5d97", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2782,7 +2819,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "56f10066f7c7", - "effects": ["c2a271fc5d97", "27f506c59cc7", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "0ef970845cc7", "02839f22d2db"] } }, { @@ -2797,14 +2834,14 @@ }, "state": "56f10066f7c7", "effects": [ - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2821,18 +2858,18 @@ }, "state": "6550473ac304", "effects": [ - "c2a271fc5d97", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2846,7 +2883,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "68296a29ee63", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } }, { @@ -2861,14 +2898,14 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2885,18 +2922,18 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2910,7 +2947,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "4f9f6d6a111c", - "effects": ["c2a271fc5d97", "6b6431f01d00", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "152580ec9e5a", "02839f22d2db"] } }, { @@ -2925,14 +2962,14 @@ }, "state": "4f9f6d6a111c", "effects": [ - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -2949,18 +2986,18 @@ }, "state": "1380b97742e8", "effects": [ - "c2a271fc5d97", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -2974,7 +3011,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "979b91030a71", - "effects": ["c2a271fc5d97", "0924615699bf", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "8237b3a567bf", "02839f22d2db"] } }, { @@ -2989,14 +3026,14 @@ }, "state": "979b91030a71", "effects": [ - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -3013,18 +3050,18 @@ }, "state": "d19825f17e38", "effects": [ - "c2a271fc5d97", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } }, @@ -3038,7 +3075,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "68296a29ee63", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "85f150b2df81", "02839f22d2db"] } }, { @@ -3053,14 +3090,14 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -3077,18 +3114,18 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.addprreviewcomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.addprreviewcomment-1.json index 7382f774285..d768ef6fb1a 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.addprreviewcomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.addprreviewcomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "0cec6c7e6322135772132c15af4f5cec7ddc667ba3476ad871ed92625293036f", "platform": "darwin", @@ -50,13 +50,21 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "066ce15717c8": { + "02b52513bb0d": { "name": "mutatingStatus", - "value": true + "value": true, + "sent": 4 + }, + "065a8cd07789": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 1 }, "06d1e3906e8b": { "name": "github.addPRReviewComment#1", @@ -103,6 +111,11 @@ "name": "github.updatePRState#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" }, + "06eb2ab576a1": { + "name": "projectRowDetailError", + "value": "[object Object]", + "sent": 2 + }, "0735075cd3b2": { "contents": { "src/index.ts": { @@ -130,11 +143,253 @@ "itemType": "PULL_REQUEST" } }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" + "0a7c13874fce": { + "contents": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "error": "[object Object]", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } }, - "094bf6975c7c": { + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0d3abde11044": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 2 + }, + "0e34127a891f": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000", + "line": 12, + "path": "src/index.ts" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "13ab8771d5c0": { + "name": "github.updatePRState#1", + "args": [ + { + "name": "method", + "value": "github.updatePRState" + }, + { + "name": "params", + "value": { + "prNumber": 12, + "repo": "id:repo-1", + "updates": { + "state": "closed" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-5", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "18ffd2f97a51": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 2 + }, + "1cd93d62cbf1": { + "name": "github.addPRReviewComment#1", + "args": [ + { + "name": "method", + "value": "github.addPRReviewComment" + }, + { + "name": "params", + "value": { + "body": "a review comment", + "commitId": "head-sha", + "line": 12, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "251de2865843": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" + }, + "252f3a25533f": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "287030eca79a": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 0 + }, + "29ab02f35956": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" + }, + "359e5860abb8": { + "name": "github.mergePR#1", + "args": [ + { + "name": "method", + "value": "github.mergePR" + }, + { + "name": "params", + "value": { + "method": "squash", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 60000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "396f274f2717": { "name": "githubProjectTable", "value": { "fields": [ @@ -191,177 +446,8 @@ "name": "Table", "number": 1 } - } - }, - "0a7c13874fce": { - "contents": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } }, - "error": "[object Object]", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } - }, - "13ab8771d5c0": { - "name": "github.updatePRState#1", - "args": [ - { - "name": "method", - "value": "github.updatePRState" - }, - { - "name": "params", - "value": { - "prNumber": 12, - "repo": "id:repo-1", - "updates": { - "state": "closed" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-5", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "1cd93d62cbf1": { - "name": "github.addPRReviewComment#1", - "args": [ - { - "name": "method", - "value": "github.addPRReviewComment" - }, - { - "name": "params", - "value": { - "body": "a review comment", - "commitId": "head-sha", - "line": 12, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-2", - "ok": true - } - } - }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "359e5860abb8": { - "name": "github.mergePR#1", - "args": [ - { - "name": "method", - "value": "github.mergePR" - }, - { - "name": "params", - "value": { - "method": "squash", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 60000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "ok": true - } - } - } + "sent": 3 }, "3c2e1eec734d": { "name": "github.addPRReviewComment#1", @@ -409,6 +495,36 @@ } } }, + "421abd55bc0e": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + }, + "sent": 3 + }, + "466f8db9d238": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 2 + }, + "46b4c26d709a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 2 + }, "4737ca53031e": { "contents": { "src/index.ts": { @@ -483,9 +599,15 @@ } } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} + "5278d0def4dc": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 2 + }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 }, "5ea47b04351c": { "contents": { @@ -514,23 +636,20 @@ "itemType": "PULL_REQUEST" } }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, - "6b6431f01d00": { + "674a78fb6dfb": { "name": "projectRowDetailError", - "value": "Unknown method" + "value": "transport failure", + "sent": 2 }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 }, "73a4d4d7ddfb": { "contents": { @@ -559,6 +678,11 @@ "itemType": "PULL_REQUEST" } }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, "7583b52fa89a": { "name": "github.addPRReviewComment#1", "args": [ @@ -600,84 +724,15 @@ } } }, - "7db3219ad526": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 }, - "7ed15e1dbd33": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000", - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "82cd71d524c8": { - "name": "error", - "value": "" + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, "888469387359": { "contents": { @@ -706,6 +761,11 @@ "itemType": "PULL_REQUEST" } }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, "8aa4781c9f62": { "name": "github.addPRReviewComment#1", "args": [ @@ -749,10 +809,6 @@ } } }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, "97a226118637": { "contents": { "src/index.ts": { @@ -824,62 +880,6 @@ } } }, - "9963bc10a55b": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "ab7c5c2480a4": { "contents": { "src/index.ts": { @@ -907,12 +907,6 @@ "itemType": "PULL_REQUEST" } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, "acad7a1dbf23": { "name": "github.addPRReviewComment#1", "args": [ @@ -1002,9 +996,12 @@ "name": "github.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 }, "c274925d7845": { "name": "github.addPRReviewComment#1", @@ -1057,10 +1054,6 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "cb3d443fc9be": { "name": "github.prFileContents#1", "args": [ @@ -1136,9 +1129,72 @@ "itemType": "PULL_REQUEST" } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d632883158cc": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 }, "dc1b4dd901b7": { "name": "github.addPRReviewComment#1", @@ -1184,6 +1240,11 @@ } } }, + "e02a62a4ddf5": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 0 + }, "e8f51e29a7d9": { "name": "github.addPRReviewComment#1", "args": [ @@ -1236,17 +1297,12 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" - }, - "f9222c9368b1": { - "name": "projectRowDetailError", - "value": "[object Object]" + "f070b17abcde": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "fdf15056fb68": { "contents": { @@ -1274,6 +1330,16 @@ "id": "item-2", "itemType": "PULL_REQUEST" } + }, + "fe748dc95970": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 2 + }, + "fed93fa7addb": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 2 } }, "recording": { @@ -1290,11 +1356,11 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde" ] } }, @@ -1310,15 +1376,15 @@ }, "state": "888469387359", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "0d3abde11044", + "6f4f9198e5ff" ] } }, @@ -1334,16 +1400,16 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -1360,21 +1426,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1392,25 +1458,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1441,29 +1507,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1479,15 +1545,15 @@ }, "state": "97a226118637", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fed93fa7addb", + "6f4f9198e5ff" ] } }, @@ -1504,20 +1570,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fed93fa7addb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1535,24 +1601,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fed93fa7addb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1583,28 +1649,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fed93fa7addb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1620,15 +1686,15 @@ }, "state": "ab7c5c2480a4", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "5278d0def4dc", + "6f4f9198e5ff" ] } }, @@ -1645,20 +1711,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "5278d0def4dc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1676,24 +1742,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "5278d0def4dc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1724,28 +1790,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "5278d0def4dc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1761,16 +1827,16 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "7ed15e1dbd33", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "0e34127a891f", + "6f4f9198e5ff" ] } }, @@ -1787,21 +1853,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "7ed15e1dbd33", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "0e34127a891f", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1819,25 +1885,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "7ed15e1dbd33", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "0e34127a891f", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1868,29 +1934,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "7ed15e1dbd33", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "0e34127a891f", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1906,15 +1972,15 @@ }, "state": "5ea47b04351c", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fe748dc95970", + "6f4f9198e5ff" ] } }, @@ -1931,20 +1997,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fe748dc95970", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1962,24 +2028,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fe748dc95970", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2010,28 +2076,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "fe748dc95970", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2047,15 +2113,15 @@ }, "state": "0a7c13874fce", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "06eb2ab576a1", + "6f4f9198e5ff" ] } }, @@ -2072,20 +2138,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "06eb2ab576a1", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2103,24 +2169,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "06eb2ab576a1", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2151,28 +2217,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "06eb2ab576a1", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2188,15 +2254,15 @@ }, "state": "cb79f3d4a1da", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff" ] } }, @@ -2213,20 +2279,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2244,24 +2310,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2292,28 +2358,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2329,15 +2395,15 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -2354,20 +2420,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2385,24 +2451,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2433,28 +2499,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2470,15 +2536,15 @@ }, "state": "0735075cd3b2", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff" ] } }, @@ -2495,20 +2561,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2526,24 +2592,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2574,28 +2640,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2611,15 +2677,15 @@ }, "state": "73a4d4d7ddfb", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff" ] } }, @@ -2636,20 +2702,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2667,24 +2733,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2715,28 +2781,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2752,15 +2818,15 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -2777,20 +2843,20 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2808,24 +2874,24 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2856,28 +2922,28 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.mergepr-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.mergepr-1.json index b1923316066..ebdc013ff2b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.mergepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.mergepr-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "754d93c552864ab693a5fd2776ba917a1c0f155f6bf8fb2873eafe9b97fd02b0", "platform": "darwin", @@ -50,13 +50,21 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "066ce15717c8": { + "02b52513bb0d": { "name": "mutatingStatus", - "value": true + "value": true, + "sent": 4 + }, + "065a8cd07789": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 1 }, "06d558d172f7": { "name": "github.updatePRState#1", @@ -89,69 +97,6 @@ "itemType": "PULL_REQUEST" } }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, - "094bf6975c7c": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "name": "Status", - "options": [] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "0a7c13874fce": { "contents": { "src/index.ts": { @@ -179,11 +124,15 @@ "itemType": "PULL_REQUEST" } }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "0f72c1f3a2e3": { "name": "github.mergePR#1", @@ -304,13 +253,36 @@ } } }, + "18ffd2f97a51": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 2 + }, + "1b30471b40d2": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 3 + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, "251de2865843": { "name": "github.mergePR#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" + "252f3a25533f": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "287030eca79a": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 0 }, "29ab02f35956": { "name": "github.prFileContents#1", @@ -397,13 +369,10 @@ } } }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { + "347fa6adc9f3": { "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 3 }, "359e5860abb8": { "name": "github.mergePR#1", @@ -445,6 +414,66 @@ } } }, + "396f274f2717": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, "401d2f559a6e": { "name": "github.mergePR#1", "args": [ @@ -482,6 +511,26 @@ } } }, + "421abd55bc0e": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + }, + "sent": 3 + }, "4737ca53031e": { "contents": { "src/index.ts": { @@ -509,6 +558,11 @@ "itemType": "PULL_REQUEST" } }, + "4a73d878a19a": { + "name": "projectRowDetailError", + "value": "[object Object]", + "sent": 3 + }, "4d1d017cea91": { "name": "github.addPRReviewComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" @@ -554,9 +608,10 @@ } } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 }, "5ea47b04351c": { "contents": { @@ -625,23 +680,15 @@ } } }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 }, "73a4d4d7ddfb": { "contents": { @@ -670,6 +717,11 @@ "itemType": "PULL_REQUEST" } }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, "79d7b1bb5ebd": { "name": "github.mergePR#1", "args": [ @@ -710,28 +762,15 @@ } } }, - "7db3219ad526": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, "888469387359": { "contents": { @@ -760,9 +799,15 @@ "itemType": "PULL_REQUEST" } }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "9138850642c5": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 3 }, "965aaa80409b": { "name": "github.mergePR#1", @@ -829,62 +874,6 @@ "itemType": "PULL_REQUEST" } }, - "9963bc10a55b": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "a2f430756265": { "name": "github.mergePR#1", "args": [ @@ -950,19 +939,16 @@ "itemType": "PULL_REQUEST" } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, "c02d6dba8a29": { "name": "github.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 }, "c274925d7845": { "name": "github.addPRReviewComment#1", @@ -1015,10 +1001,6 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "cb3d443fc9be": { "name": "github.prFileContents#1", "args": [ @@ -1094,9 +1076,97 @@ "itemType": "PULL_REQUEST" } }, - "d330309fabb3": { + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d632883158cc": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "d72ea315da15": { "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "value": "transport failure", + "sent": 3 + }, + "d856c0886ca0": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 3 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, + "e02a62a4ddf5": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 0 + }, + "e7d38ed5fb03": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, + "eb612a2e1a87": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 }, "eb79a9b3682a": { "status": "fulfilled", @@ -1106,9 +1176,17 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f070b17abcde": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "f37a9bff665c": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 3 }, "f547e50c8503": { "name": "github.mergePR#1", @@ -1151,14 +1229,6 @@ } } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" - }, - "f9222c9368b1": { - "name": "projectRowDetailError", - "value": "[object Object]" - }, "fdf15056fb68": { "contents": { "src/index.ts": { @@ -1201,11 +1271,11 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde" ] } }, @@ -1221,16 +1291,16 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -1247,20 +1317,20 @@ }, "state": "888469387359", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f37a9bff665c", + "73c3051352c2" ] } }, @@ -1277,21 +1347,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1309,25 +1379,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1358,29 +1428,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1397,20 +1467,20 @@ }, "state": "97a226118637", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2" ] } }, @@ -1428,24 +1498,24 @@ }, "state": "97a226118637", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1476,28 +1546,28 @@ }, "state": "97a226118637", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1514,20 +1584,20 @@ }, "state": "ab7c5c2480a4", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2" ] } }, @@ -1545,24 +1615,24 @@ }, "state": "ab7c5c2480a4", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1593,28 +1663,28 @@ }, "state": "ab7c5c2480a4", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1631,21 +1701,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1663,25 +1733,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1712,29 +1782,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1751,20 +1821,20 @@ }, "state": "5ea47b04351c", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2" ] } }, @@ -1782,24 +1852,24 @@ }, "state": "5ea47b04351c", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1830,28 +1900,28 @@ }, "state": "5ea47b04351c", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1868,20 +1938,20 @@ }, "state": "0a7c13874fce", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "4a73d878a19a", + "73c3051352c2" ] } }, @@ -1899,24 +1969,24 @@ }, "state": "0a7c13874fce", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "4a73d878a19a", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1947,28 +2017,28 @@ }, "state": "0a7c13874fce", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "4a73d878a19a", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1985,20 +2055,20 @@ }, "state": "cb79f3d4a1da", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2" ] } }, @@ -2016,24 +2086,24 @@ }, "state": "cb79f3d4a1da", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2064,28 +2134,28 @@ }, "state": "cb79f3d4a1da", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2102,20 +2172,20 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -2133,24 +2203,24 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2181,28 +2251,28 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2219,20 +2289,20 @@ }, "state": "0735075cd3b2", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2" ] } }, @@ -2250,24 +2320,24 @@ }, "state": "0735075cd3b2", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2298,28 +2368,28 @@ }, "state": "0735075cd3b2", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2336,20 +2406,20 @@ }, "state": "73a4d4d7ddfb", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2" ] } }, @@ -2367,24 +2437,24 @@ }, "state": "73a4d4d7ddfb", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2415,28 +2485,28 @@ }, "state": "73a4d4d7ddfb", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2453,20 +2523,20 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -2484,24 +2554,24 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2532,28 +2602,28 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.prfilecontents-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.prfilecontents-1.json index 58021e11f45..442e617f845 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.prfilecontents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.prfilecontents-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "d8838276fb40a8ccb2dbedc269b970f85c1c800466b9813ac06f409ea44ffaff", "platform": "darwin", @@ -13,6 +13,18 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "005f1e8ab7dc": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "error": { + "message": "inner refused" + }, + "ok": false + } + }, + "sent": 1 + }, "02509b3a87d5": { "name": "github.updateIssue#1", "args": [ @@ -50,86 +62,40 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "066ce15717c8": { + "02b52513bb0d": { "name": "mutatingStatus", - "value": true + "value": true, + "sent": 4 + }, + "065a8cd07789": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 1 }, "06d558d172f7": { "name": "github.updatePRState#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" }, - "0924615699bf": { + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0ef970845cc7": { "name": "projectRowDetailError", - "value": "transport failure" + "value": "outer refused", + "sent": 1 }, - "094bf6975c7c": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "name": "Status", - "options": [] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "10fc9bd3f197": { "contents": { @@ -238,6 +204,30 @@ } } }, + "152580ec9e5a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 1 + }, + "18ffd2f97a51": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 2 + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "20bb8fdf1756": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "$rpc": "undefined" + } + }, + "sent": 1 + }, "22fd0e0131d4": { "contents": { "src/index.ts": { @@ -313,9 +303,12 @@ "name": "github.mergePR#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" + "252f3a25533f": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "27fdd77feed1": { "name": "github.prFileContents#1", @@ -361,14 +354,15 @@ } } }, + "287030eca79a": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 0 + }, "29ab02f35956": { "name": "github.prFileContents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "359e5860abb8": { "name": "github.mergePR#1", "args": [ @@ -456,13 +450,85 @@ } } }, - "41d159823e94": { - "name": "prFileContents", + "396f274f2717": { + "name": "githubProjectTable", "value": { - "src/index.ts": { - "error": "refused" + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 } - } + }, + "sent": 3 + }, + "421abd55bc0e": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + }, + "sent": 3 }, "45c48181b1af": { "name": "github.prFileContents#1", @@ -588,6 +654,11 @@ "name": "github.addPRReviewComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "5823f67a2c34": { "name": "github.prFileContents#1", "args": [ @@ -725,28 +796,6 @@ } } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, - "6675a3209313": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "$rpc": "undefined" - } - } - }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, "688948cddf49": { "contents": {}, "error": "", @@ -768,18 +817,10 @@ "itemType": "PULL_REQUEST" } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, - "6d11036fbd9f": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "error": "inner refused", - "ok": false - } - } + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, "6ff1a00346a2": { "contents": {}, @@ -802,6 +843,11 @@ "itemType": "PULL_REQUEST" } }, + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 + }, "708ba51de239": { "contents": { "src/index.ts": { @@ -830,32 +876,10 @@ "itemType": "PULL_REQUEST" } }, - "7aeaf5f9e363": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "$rpc": "null" - } - } - }, - "7db3219ad526": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 }, "80d305d2ab51": { "name": "github.prFileContents#1", @@ -906,6 +930,11 @@ } } }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, "80de19bea023": { "contents": { "src/index.ts": { @@ -931,20 +960,15 @@ "itemType": "PULL_REQUEST" } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "8237b3a567bf": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 1 }, - "88669240de7c": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "error": { - "message": "inner refused" - }, - "ok": false - } - } + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, "88a25ad142bb": { "contents": { @@ -971,11 +995,288 @@ "itemType": "PULL_REQUEST" } }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, - "9963bc10a55b": { + "9d1e84daf78b": { + "contents": {}, + "error": "", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + }, + "a849f43252c8": { + "contents": { + "src/index.ts": { + "error": { + "message": "inner refused" + }, + "ok": false + } + }, + "error": "", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + }, + "a927adec2d59": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "error": "refused" + } + }, + "sent": 1 + }, + "ae5da2018f44": { + "name": "github.prFileContents#1", + "args": [ + { + "name": "method", + "value": "github.prFileContents" + }, + { + "name": "params", + "value": { + "baseSha": "base-sha", + "headSha": "head-sha", + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1", + "status": "modified" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "b1e42b117fc4": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "error": "inner refused", + "ok": false + } + }, + "sent": 1 + }, + "b561de642030": { + "contents": {}, + "error": "Unknown method", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + }, + "be2bf5177055": { + "contents": { + "src/index.ts": { + "error": "inner refused", + "ok": false + } + }, + "error": "", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + }, + "c02d6dba8a29": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + }, + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, + "c274925d7845": { + "name": "github.addPRReviewComment#1", + "args": [ + { + "name": "method", + "value": "github.addPRReviewComment" + }, + { + "name": "params", + "value": { + "body": "a review comment", + "commitId": "head-sha", + "line": 12, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "comment": { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + }, + "ok": true + } + } + } + }, + "cb3d443fc9be": { + "name": "github.prFileContents#1", + "args": [ + { + "name": "method", + "value": "github.prFileContents" + }, + { + "name": "params", + "value": { + "baseSha": "base-sha", + "headSha": "head-sha", + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1", + "status": "modified" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + } + } + }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d632883158cc": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -1029,266 +1330,18 @@ "$rpc": "null" }, "reviewRequests": [] - } - }, - "9d1e84daf78b": { - "contents": {}, - "error": "", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - }, - "a849f43252c8": { - "contents": { - "src/index.ts": { - "error": { - "message": "inner refused" - }, - "ok": false - } }, - "error": "", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } + "sent": 2 }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 }, - "ae5da2018f44": { - "name": "github.prFileContents#1", - "args": [ - { - "name": "method", - "value": "github.prFileContents" - }, - { - "name": "params", - "value": { - "baseSha": "base-sha", - "headSha": "head-sha", - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1", - "status": "modified" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "$rpc": "null" - } - } - } - }, - "b561de642030": { - "contents": {}, - "error": "Unknown method", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - }, - "be2bf5177055": { - "contents": { - "src/index.ts": { - "error": "inner refused", - "ok": false - } - }, - "error": "", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" - }, - "c05d98f543b7": { + "e02a62a4ddf5": { "name": "expandedPrFilePath", - "value": "src/index.ts" - }, - "c274925d7845": { - "name": "github.addPRReviewComment#1", - "args": [ - { - "name": "method", - "value": "github.addPRReviewComment" - }, - { - "name": "params", - "value": { - "body": "a review comment", - "commitId": "head-sha", - "line": 12, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-2", - "ok": true, - "result": { - "comment": { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - }, - "ok": true - } - } - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "cb3d443fc9be": { - "name": "github.prFileContents#1", - "args": [ - { - "name": "method", - "value": "github.prFileContents" - }, - { - "name": "params", - "value": { - "baseSha": "base-sha", - "headSha": "head-sha", - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1", - "status": "modified" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - } + "value": "src/index.ts", + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -1298,9 +1351,21 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f070b17abcde": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "f0d0b64ae0b7": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "$rpc": "null" + } + }, + "sent": 1 }, "f462ab28ddde": { "contents": { @@ -1394,11 +1459,11 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde" ] } }, @@ -1414,16 +1479,16 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -1440,21 +1505,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1472,25 +1537,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1521,29 +1586,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1558,11 +1623,11 @@ }, "state": "22fd0e0131d4", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6675a3209313", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "20bb8fdf1756", + "f070b17abcde" ] } }, @@ -1578,16 +1643,16 @@ }, "state": "22fd0e0131d4", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6675a3209313", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "20bb8fdf1756", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -1604,21 +1669,21 @@ }, "state": "88a25ad142bb", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6675a3209313", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "20bb8fdf1756", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1636,25 +1701,25 @@ }, "state": "88a25ad142bb", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6675a3209313", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "20bb8fdf1756", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1685,29 +1750,29 @@ }, "state": "88a25ad142bb", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6675a3209313", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "20bb8fdf1756", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1722,11 +1787,11 @@ }, "state": "f462ab28ddde", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "7aeaf5f9e363", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "f0d0b64ae0b7", + "f070b17abcde" ] } }, @@ -1742,16 +1807,16 @@ }, "state": "f462ab28ddde", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "7aeaf5f9e363", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "f0d0b64ae0b7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -1768,21 +1833,21 @@ }, "state": "fe5e9e5c827c", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "7aeaf5f9e363", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "f0d0b64ae0b7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1800,25 +1865,25 @@ }, "state": "fe5e9e5c827c", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "7aeaf5f9e363", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "f0d0b64ae0b7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1849,29 +1914,29 @@ }, "state": "fe5e9e5c827c", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "7aeaf5f9e363", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "f0d0b64ae0b7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1886,11 +1951,11 @@ }, "state": "80de19bea023", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "41d159823e94", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "a927adec2d59", + "f070b17abcde" ] } }, @@ -1906,16 +1971,16 @@ }, "state": "80de19bea023", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "41d159823e94", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "a927adec2d59", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -1932,21 +1997,21 @@ }, "state": "4778f4df22e3", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "41d159823e94", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "a927adec2d59", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1964,25 +2029,25 @@ }, "state": "4778f4df22e3", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "41d159823e94", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "a927adec2d59", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2013,29 +2078,29 @@ }, "state": "4778f4df22e3", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "41d159823e94", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "a927adec2d59", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2050,11 +2115,11 @@ }, "state": "be2bf5177055", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6d11036fbd9f", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "b1e42b117fc4", + "f070b17abcde" ] } }, @@ -2070,16 +2135,16 @@ }, "state": "be2bf5177055", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6d11036fbd9f", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "b1e42b117fc4", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -2096,21 +2161,21 @@ }, "state": "10fc9bd3f197", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6d11036fbd9f", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "b1e42b117fc4", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2128,25 +2193,25 @@ }, "state": "10fc9bd3f197", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6d11036fbd9f", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "b1e42b117fc4", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2177,29 +2242,29 @@ }, "state": "10fc9bd3f197", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6d11036fbd9f", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "b1e42b117fc4", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2214,11 +2279,11 @@ }, "state": "a849f43252c8", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "88669240de7c", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "005f1e8ab7dc", + "f070b17abcde" ] } }, @@ -2234,16 +2299,16 @@ }, "state": "a849f43252c8", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "88669240de7c", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "005f1e8ab7dc", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -2260,21 +2325,21 @@ }, "state": "708ba51de239", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "88669240de7c", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "005f1e8ab7dc", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2292,25 +2357,25 @@ }, "state": "708ba51de239", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "88669240de7c", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "005f1e8ab7dc", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2341,29 +2406,29 @@ }, "state": "708ba51de239", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "88669240de7c", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "005f1e8ab7dc", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2378,11 +2443,11 @@ }, "state": "6ff1a00346a2", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "27f506c59cc7", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "0ef970845cc7", + "f070b17abcde" ] } }, @@ -2398,16 +2463,16 @@ }, "state": "9d1e84daf78b", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "27f506c59cc7", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "0ef970845cc7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -2424,21 +2489,21 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "27f506c59cc7", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "0ef970845cc7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2456,25 +2521,25 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "27f506c59cc7", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "0ef970845cc7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2505,29 +2570,29 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "27f506c59cc7", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "0ef970845cc7", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2542,11 +2607,11 @@ }, "state": "9d1e84daf78b", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde" ] } }, @@ -2562,16 +2627,16 @@ }, "state": "9d1e84daf78b", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -2588,21 +2653,21 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2620,25 +2685,25 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2669,29 +2734,29 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2706,11 +2771,11 @@ }, "state": "b561de642030", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6b6431f01d00", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "152580ec9e5a", + "f070b17abcde" ] } }, @@ -2726,16 +2791,16 @@ }, "state": "9d1e84daf78b", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6b6431f01d00", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "152580ec9e5a", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -2752,21 +2817,21 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6b6431f01d00", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "152580ec9e5a", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2784,25 +2849,25 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6b6431f01d00", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "152580ec9e5a", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2833,29 +2898,29 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "6b6431f01d00", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "152580ec9e5a", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -2870,11 +2935,11 @@ }, "state": "49630b84cbb4", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "0924615699bf", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "8237b3a567bf", + "f070b17abcde" ] } }, @@ -2890,16 +2955,16 @@ }, "state": "9d1e84daf78b", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "0924615699bf", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "8237b3a567bf", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -2916,21 +2981,21 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "0924615699bf", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "8237b3a567bf", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -2948,25 +3013,25 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "0924615699bf", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "8237b3a567bf", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -2997,29 +3062,29 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "0924615699bf", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "8237b3a567bf", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -3034,11 +3099,11 @@ }, "state": "9d1e84daf78b", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde" ] } }, @@ -3054,16 +3119,16 @@ }, "state": "9d1e84daf78b", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -3080,21 +3145,21 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -3112,25 +3177,25 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -3161,29 +3226,29 @@ }, "state": "688948cddf49", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "057a0b5a420b", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "85f150b2df81", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateissue-1.json index d86b1588165..071df4aa764 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "785dad70a0e382a6cc2b030cec2077a1e816e84ba60b082f60c9a96ec56b47c5", "platform": "darwin", @@ -50,19 +50,187 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "066ce15717c8": { + "02b52513bb0d": { "name": "mutatingStatus", - "value": true + "value": true, + "sent": 4 + }, + "065a8cd07789": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 1 }, "06d558d172f7": { "name": "github.updatePRState#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" }, - "094bf6975c7c": { + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "13ab8771d5c0": { + "name": "github.updatePRState#1", + "args": [ + { + "name": "method", + "value": "github.updatePRState" + }, + { + "name": "params", + "value": { + "prNumber": 12, + "repo": "id:repo-1", + "updates": { + "state": "closed" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-5", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "18ffd2f97a51": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 2 + }, + "19ba7281c684": { + "name": "github.updateIssue#1", + "args": [ + { + "name": "method", + "value": "github.updateIssue" + }, + { + "name": "params", + "value": { + "number": 9, + "repo": "id:repo-1", + "updates": { + "state": "closed" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-4", + "ok": false + } + } + }, + "1b37ac207e48": { + "name": "error", + "value": "inner refused", + "sent": 4 + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "251de2865843": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" + }, + "252f3a25533f": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "287030eca79a": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 0 + }, + "29ab02f35956": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" + }, + "359e5860abb8": { + "name": "github.mergePR#1", + "args": [ + { + "name": "method", + "value": "github.mergePR" + }, + { + "name": "params", + "value": { + "method": "squash", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 60000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "396f274f2717": { "name": "githubProjectTable", "value": { "fields": [ @@ -119,148 +287,28 @@ "name": "Table", "number": 1 } - } + }, + "sent": 3 }, - "0c85499cb425": { - "name": "prFileLoadingPath", + "421abd55bc0e": { + "name": "projectRowItem", "value": { - "$rpc": "null" - } - }, - "13ab8771d5c0": { - "name": "github.updatePRState#1", - "args": [ - { - "name": "method", - "value": "github.updatePRState" - }, - { - "name": "params", - "value": { - "prNumber": 12, - "repo": "id:repo-1", - "updates": { - "state": "closed" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-5", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" - }, - "19ba7281c684": { - "name": "github.updateIssue#1", - "args": [ - { - "name": "method", - "value": "github.updateIssue" - }, - { - "name": "params", - "value": { - "number": 9, - "repo": "id:repo-1", - "updates": { - "state": "closed" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": { - "code": "refused", - "message": "" + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" }, - "id": "frame-4", - "ok": false - } - } - }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, - "359e5860abb8": { - "name": "github.mergePR#1", - "args": [ - { - "name": "method", - "value": "github.mergePR" + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" }, - { - "name": "params", - "value": { - "method": "squash", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 60000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "ok": true - } - } - } + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + }, + "sent": 3 }, "4737ca53031e": { "contents": { @@ -289,10 +337,20 @@ "itemType": "PULL_REQUEST" } }, + "4a38f5d5d245": { + "name": "error", + "value": "Connection closed", + "sent": 4 + }, "4d1d017cea91": { "name": "github.addPRReviewComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "574e384ff29d": { "name": "github.updateIssue#1", "args": [ @@ -327,19 +385,10 @@ } } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } + "598d95f891dc": { + "name": "error", + "value": "Unknown method", + "sent": 4 }, "6ee59968996b": { "name": "github.updateIssue#1", @@ -379,28 +428,40 @@ } } }, - "7db3219ad526": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "82cd71d524c8": { + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, + "85fe4aac509f": { "name": "error", - "value": "" + "value": "[object Object]", + "sent": 4 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8aa55e932cab": { "name": "github.updateIssue#1", @@ -440,13 +501,10 @@ } } }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, - "945ea389c1ef": { + "8dbfbb161772": { "name": "error", - "value": "transport failure" + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 4 }, "96e6092073a3": { "name": "github.updateIssue#1", @@ -488,66 +546,6 @@ } } }, - "9963bc10a55b": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "9f82f10075a3": { - "name": "error", - "value": "Connection closed" - }, "a4f2970b0b80": { "name": "github.updateIssue#1", "args": [ @@ -618,15 +616,10 @@ } } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "ae5be7de2632": { + "abbcd2a93f15": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Cannot read properties of null (reading 'ok')", + "sent": 4 }, "b1aaaf697117": { "name": "github.updateIssue#1", @@ -663,21 +656,16 @@ } } }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, "c02d6dba8a29": { "name": "github.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 }, "c274925d7845": { "name": "github.addPRReviewComment#1", @@ -730,10 +718,6 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "c49440be2f91": { "name": "github.updateIssue#1", "args": [ @@ -820,6 +804,88 @@ } } }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d632883158cc": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, + "e02a62a4ddf5": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 0 + }, + "e57a3f9ecfc9": { + "name": "error", + "value": "outer refused", + "sent": 4 + }, + "e594e65c588c": { + "name": "error", + "value": "transport failure", + "sent": 4 + }, "e8927dceb988": { "name": "github.updateIssue#1", "args": [ @@ -865,13 +931,12 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f070b17abcde": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "f6b15e92940a": { "name": "github.updateIssue#1", @@ -952,11 +1017,11 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde" ] } }, @@ -972,16 +1037,16 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -998,21 +1063,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1030,25 +1095,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "4a38f5d5d245", + "70678ab6df9a" ] } }, @@ -1066,25 +1131,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1115,29 +1180,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1155,25 +1220,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "8dbfbb161772", + "70678ab6df9a" ] } }, @@ -1204,29 +1269,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "8dbfbb161772", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1244,25 +1309,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "abbcd2a93f15", + "70678ab6df9a" ] } }, @@ -1293,29 +1358,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "abbcd2a93f15", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1333,25 +1398,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1382,29 +1447,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1422,25 +1487,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "1b37ac207e48", + "70678ab6df9a" ] } }, @@ -1471,29 +1536,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "1b37ac207e48", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1511,25 +1576,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "85fe4aac509f", + "70678ab6df9a" ] } }, @@ -1560,29 +1625,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "85fe4aac509f", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1600,25 +1665,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "e57a3f9ecfc9", + "70678ab6df9a" ] } }, @@ -1649,29 +1714,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "e57a3f9ecfc9", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1689,25 +1754,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "1e34370849ff", + "70678ab6df9a" ] } }, @@ -1738,29 +1803,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "1e34370849ff", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1778,25 +1843,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "598d95f891dc", + "70678ab6df9a" ] } }, @@ -1827,29 +1892,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "598d95f891dc", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1867,25 +1932,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "e594e65c588c", + "70678ab6df9a" ] } }, @@ -1916,29 +1981,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "e594e65c588c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1956,25 +2021,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "1e34370849ff", + "70678ab6df9a" ] } }, @@ -2005,29 +2070,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "1e34370849ff", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateprstate-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateprstate-1.json index fff2aac860e..2dd6a667eaa 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateprstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateprstate-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "8d31245ea6869184de082cf9ef3af8d6e0806ab48b6f159e5076f786745c4413", "platform": "darwin", @@ -50,82 +50,35 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "066ce15717c8": { + "02b52513bb0d": { "name": "mutatingStatus", - "value": true + "value": true, + "sent": 4 + }, + "065a8cd07789": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 1 }, "06d558d172f7": { "name": "github.updatePRState#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" }, - "094bf6975c7c": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "name": "Status", - "options": [] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "100ba187880b": { "name": "github.updatePRState#1", @@ -234,25 +187,50 @@ } } }, - "186f44bc465a": { + "18ffd2f97a51": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 2 + }, + "1e34370849ff": { "name": "error", - "value": "Unknown method" + "value": "", + "sent": 4 }, "251de2865843": { "name": "github.mergePR#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" }, + "252f3a25533f": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "287030eca79a": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 0 + }, "29ab02f35956": { "name": "github.prFileContents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2d711d96f190": { + "2dcc3610aa80": { "name": "error", - "value": "Cannot read properties of null (reading 'ok')" + "value": "Cannot read properties of null (reading 'ok')", + "sent": 5 + }, + "2e81adcfbca6": { + "name": "error", + "value": "Unknown method", + "sent": 5 + }, + "30f161ec011f": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 5 }, "34718313adf4": { "name": "github.updatePRState#1", @@ -334,6 +312,11 @@ } } }, + "36bcd0cc2219": { + "name": "error", + "value": "[object Object]", + "sent": 5 + }, "3825598c02f7": { "name": "github.updatePRState#1", "args": [ @@ -369,6 +352,91 @@ } } }, + "396f274f2717": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, + "4174675282eb": { + "name": "error", + "value": "transport failure", + "sent": 5 + }, + "421abd55bc0e": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + }, + "sent": 3 + }, "4737ca53031e": { "contents": { "src/index.ts": { @@ -438,9 +506,10 @@ } } }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 }, "6203f9c80a3e": { "name": "github.updatePRState#1", @@ -479,16 +548,6 @@ } } }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, "6a8206273d9c": { "name": "github.updatePRState#1", "args": [ @@ -527,6 +586,21 @@ } } }, + "6ba526833af0": { + "name": "error", + "value": "", + "sent": 5 + }, + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 + }, "718ebcf73f73": { "name": "github.updatePRState#1", "args": [ @@ -564,32 +638,25 @@ } } }, - "7db3219ad526": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8e0d841c499e": { "name": "github.updatePRState#1", @@ -625,11 +692,203 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "9a4ad458f55c": { + "name": "github.updatePRState#1", + "args": [ + { + "name": "method", + "value": "github.updatePRState" + }, + { + "name": "params", + "value": { + "prNumber": 12, + "repo": "id:repo-1", + "updates": { + "state": "closed" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-5", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } }, - "9963bc10a55b": { + "c02d6dba8a29": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + }, + "c0bf26bdb1b1": { + "name": "github.updatePRState#1", + "args": [ + { + "name": "method", + "value": "github.updatePRState" + }, + { + "name": "params", + "value": { + "prNumber": 12, + "repo": "id:repo-1", + "updates": { + "state": "closed" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-5", + "ok": false + } + } + }, + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, + "c274925d7845": { + "name": "github.addPRReviewComment#1", + "args": [ + { + "name": "method", + "value": "github.addPRReviewComment" + }, + { + "name": "params", + "value": { + "body": "a review comment", + "commitId": "head-sha", + "line": 12, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "comment": { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + }, + "ok": true + } + } + } + }, + "cb3d443fc9be": { + "name": "github.prFileContents#1", + "args": [ + { + "name": "method", + "value": "github.prFileContents" + }, + { + "name": "params", + "value": { + "baseSha": "base-sha", + "headSha": "head-sha", + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1", + "status": "modified" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + } + } + }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d27db8a11567": { + "name": "error", + "value": "inner refused", + "sent": 5 + }, + "d632883158cc": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -683,216 +942,23 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 }, - "9a4ad458f55c": { - "name": "github.updatePRState#1", - "args": [ - { - "name": "method", - "value": "github.updatePRState" - }, - { - "name": "params", - "value": { - "prNumber": 12, - "repo": "id:repo-1", - "updates": { - "state": "closed" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-5", - "ok": true, - "result": { - "error": "inner refused", - "ok": false - } - } - } - }, - "9f82f10075a3": { + "dbbebbd74a18": { "name": "error", - "value": "Connection closed" + "value": "", + "sent": 3 }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" - }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" - }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" - }, - "c05d98f543b7": { + "e02a62a4ddf5": { "name": "expandedPrFilePath", - "value": "src/index.ts" + "value": "src/index.ts", + "sent": 0 }, - "c0bf26bdb1b1": { - "name": "github.updatePRState#1", - "args": [ - { - "name": "method", - "value": "github.updatePRState" - }, - { - "name": "params", - "value": { - "prNumber": 12, - "repo": "id:repo-1", - "updates": { - "state": "closed" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": { - "code": "refused", - "message": "" - }, - "id": "frame-5", - "ok": false - } - } - }, - "c274925d7845": { - "name": "github.addPRReviewComment#1", - "args": [ - { - "name": "method", - "value": "github.addPRReviewComment" - }, - { - "name": "params", - "value": { - "body": "a review comment", - "commitId": "head-sha", - "line": 12, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-2", - "ok": true, - "result": { - "comment": { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - }, - "ok": true - } - } - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "cb3d443fc9be": { - "name": "github.prFileContents#1", - "args": [ - { - "name": "method", - "value": "github.prFileContents" - }, - { - "name": "params", - "value": { - "baseSha": "base-sha", - "headSha": "head-sha", - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1", - "status": "modified" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - } + "e87d71fbc115": { + "name": "error", + "value": "Connection closed", + "sent": 5 }, "eb79a9b3682a": { "status": "fulfilled", @@ -902,13 +968,17 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" + "f070b17abcde": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 1 }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f673fac7d1d0": { + "name": "error", + "value": "outer refused", + "sent": 5 }, "fdf15056fb68": { "contents": { @@ -952,11 +1022,11 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde" ] } }, @@ -972,16 +1042,16 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -998,21 +1068,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -1030,25 +1100,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -1079,29 +1149,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "9f82f10075a3", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "e87d71fbc115", + "5467502970f1" ] } }, @@ -1132,29 +1202,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1185,29 +1255,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ae5be7de2632", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "30f161ec011f", + "5467502970f1" ] } }, @@ -1238,29 +1308,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2d711d96f190", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "2dcc3610aa80", + "5467502970f1" ] } }, @@ -1291,29 +1361,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } }, @@ -1344,29 +1414,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "c008e85e2d06", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "d27db8a11567", + "5467502970f1" ] } }, @@ -1397,29 +1467,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ecc1b4e0914f", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "36bcd0cc2219", + "5467502970f1" ] } }, @@ -1450,29 +1520,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ba65a7abe43b", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "f673fac7d1d0", + "5467502970f1" ] } }, @@ -1503,29 +1573,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "6ba526833af0", + "5467502970f1" ] } }, @@ -1556,29 +1626,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "186f44bc465a", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "2e81adcfbca6", + "5467502970f1" ] } }, @@ -1609,29 +1679,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "945ea389c1ef", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "4174675282eb", + "5467502970f1" ] } }, @@ -1662,29 +1732,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "82cd71d524c8", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "6ba526833af0", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listassignableusersbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listassignableusersbyslug-1.json index 5e21e81aa25..781e8bbe0a6 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listassignableusersbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listassignableusersbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "2303fc902e5a6cf6a43db58ef2938538a7b770d1509cc22a9811f4c83051aea1", "platform": "darwin", @@ -13,34 +13,40 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0ec535506ef6": { - "name": "projectIssueTypesLoading", - "value": true - }, - "13110f6c348f": { - "name": "projectAvailableLabels", - "value": ["bug"] - }, - "15a2c52c35d3": { - "name": "projectAvailableLabels", - "value": [] - }, - "1dbbc2014563": { + "019b572d889b": { "name": "projectAssignableUsersError", - "value": "outer refused" + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 }, - "1ea80133c336": { + "09f12e10766e": { + "name": "projectIssueTypesLoading", + "value": false, + "sent": 3 + }, + "193e408831dc": { + "name": "projectAssignableUsersError", + "value": "Unknown method", + "sent": 3 + }, + "26e63cedd53f": { + "name": "projectAssignableUsersError", + "value": "transport failure", + "sent": 3 + }, + "2ef615f214b1": { "name": "projectAssignableUsers", "value": [ { "login": "octocat", "name": "Octo" } - ] + ], + "sent": 3 }, - "3d9f892630c2": { - "name": "projectAssignableUsersLoading", - "value": false + "32b4277def9a": { + "name": "projectAvailableLabels", + "value": ["bug"], + "sent": 3 }, "3f5d8df504de": { "name": "github.project.listLabelsBySlug#1", @@ -78,10 +84,6 @@ } } }, - "3f82f874744e": { - "name": "projectAssignableUsersError", - "value": "Unknown method" - }, "422b5b394c6c": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -157,10 +159,6 @@ } } }, - "4532c39efcc5": { - "name": "projectLabelsLoading", - "value": false - }, "45c516d96c02": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -244,6 +242,11 @@ } } }, + "57d4746ddb82": { + "name": "projectAssignableUsersLoading", + "value": true, + "sent": 1 + }, "580a93d48297": { "labels": ["bug"], "labelsError": "", @@ -257,6 +260,11 @@ "users": [], "usersError": "Unknown method" }, + "5fd1b0e4ca3a": { + "name": "projectAssignableUsersLoading", + "value": false, + "sent": 3 + }, "63501635672a": { "labels": ["bug"], "labelsError": "", @@ -270,9 +278,25 @@ "users": [], "usersError": "Cannot read properties of null (reading 'ok')" }, - "6b42f445e370": { + "6375bbcea315": { "name": "projectAssignableUsersError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "inner refused", + "sent": 3 + }, + "6c910b6dc2fa": { + "name": "projectIssueTypesError", + "value": "", + "sent": 2 + }, + "7122de433e6a": { + "name": "projectIssueTypes", + "value": [ + { + "id": "type-1", + "name": "Bug" + } + ], + "sent": 3 }, "739399640862": { "name": "github.project.listAssignableUsersBySlug#1", @@ -348,10 +372,6 @@ } } }, - "7b69f54a8a5a": { - "name": "projectAssignableUsers", - "value": [] - }, "7e5e42c91283": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -389,18 +409,6 @@ } } }, - "822c655b8d01": { - "name": "projectLabelsError", - "value": "" - }, - "83bfe2deb7bf": { - "name": "projectAssignableUsersError", - "value": "" - }, - "83c1f676e233": { - "name": "projectIssueTypes", - "value": [] - }, "84c3fb2868bd": { "name": "github.project.listIssueTypesBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" @@ -439,9 +447,15 @@ } } }, - "8d8599f1ba0f": { - "name": "projectIssueTypesError", - "value": "" + "8ebe151a4e7c": { + "name": "projectAssignableUsersError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 + }, + "8f395e09a24b": { + "name": "projectAvailableLabels", + "value": [], + "sent": 0 }, "8fbb806f8730": { "name": "github.project.listIssueTypesBySlug#1", @@ -535,22 +549,25 @@ "users": [], "usersError": "" }, - "a149427e545f": { + "a9da2a563a6c": { "name": "projectLabelsLoading", - "value": true + "value": false, + "sent": 3 }, - "a1ecaf05ee5c": { + "bf0887cbf7f3": { + "name": "projectAssignableUsersError", + "value": "", + "sent": 1 + }, + "bfd812ba86c3": { "name": "projectIssueTypesLoading", - "value": false + "value": true, + "sent": 2 }, - "b65199d523ec": { - "name": "projectIssueTypes", - "value": [ - { - "id": "type-1", - "name": "Bug" - } - ] + "bfdd7df58f9b": { + "name": "projectLabelsError", + "value": "", + "sent": 0 }, "c1ec04d6cffb": { "labels": ["bug"], @@ -565,9 +582,15 @@ "users": [], "usersError": "inner refused" }, - "c5b7a97798ac": { - "name": "projectAssignableUsersError", - "value": "inner refused" + "d14a772531e0": { + "name": "projectLabelsLoading", + "value": true, + "sent": 0 + }, + "d17d55e4fee3": { + "name": "projectAssignableUsers", + "value": [], + "sent": 1 }, "d41a9829423a": { "labels": ["bug"], @@ -600,21 +623,24 @@ ], "usersError": "" }, - "d6be96273c26": { - "name": "projectAssignableUsersLoading", - "value": true + "d8ccdd1938bf": { + "name": "projectAssignableUsersError", + "value": "", + "sent": 3 }, "da36de1a5410": { "name": "github.project.listLabelsBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" }, - "df4e8bbcb961": { + "de5d251f09d0": { "name": "projectAssignableUsersError", - "value": "Cannot read properties of null (reading 'ok')" + "value": "Failed to load assignees", + "sent": 3 }, - "e08296c9ec58": { + "ea3458d66e88": { "name": "projectAssignableUsersError", - "value": "Failed to load assignees" + "value": "outer refused", + "sent": 3 }, "eb79a9b3682a": { "status": "fulfilled", @@ -624,6 +650,11 @@ "$rpc": "undefined" } }, + "ee43aa13c95f": { + "name": "projectIssueTypes", + "value": [], + "sent": 2 + }, "ef507c348d21": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -727,10 +758,6 @@ "typesError": "", "users": [], "usersError": "transport failure" - }, - "fb7de183d1dc": { - "name": "projectAssignableUsersError", - "value": "transport failure" } }, "recording": { @@ -746,21 +773,21 @@ }, "state": "d5d91d8a5bac", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -774,21 +801,21 @@ }, "state": "554d6896d32c", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "6b42f445e370", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "019b572d889b", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -802,21 +829,21 @@ }, "state": "63501635672a", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "df4e8bbcb961", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "8ebe151a4e7c", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -830,21 +857,21 @@ }, "state": "d41a9829423a", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "e08296c9ec58", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "de5d251f09d0", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -858,21 +885,21 @@ }, "state": "d41a9829423a", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "e08296c9ec58", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "de5d251f09d0", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -886,21 +913,21 @@ }, "state": "c1ec04d6cffb", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "c5b7a97798ac", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "6375bbcea315", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -914,21 +941,21 @@ }, "state": "f1e41c753708", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1dbbc2014563", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "ea3458d66e88", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -942,21 +969,21 @@ }, "state": "9b3320d7d510", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "83bfe2deb7bf", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "d8ccdd1938bf", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -970,21 +997,21 @@ }, "state": "580a93d48297", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "3f82f874744e", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "193e408831dc", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -998,21 +1025,21 @@ }, "state": "faf207372749", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "fb7de183d1dc", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "26e63cedd53f", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -1026,21 +1053,21 @@ }, "state": "9b3320d7d510", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "83bfe2deb7bf", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "d8ccdd1938bf", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listissuetypesbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listissuetypesbyslug-1.json index 23857d97422..83210fae006 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listissuetypesbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listissuetypesbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "8b75854487566ca6da98d391b6822c81c99e61011fc094458ae038905c1c9287", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0ec535506ef6": { + "0329856b8162": { + "name": "projectIssueTypesError", + "value": "Unknown method", + "sent": 3 + }, + "09f12e10766e": { "name": "projectIssueTypesLoading", - "value": true + "value": false, + "sent": 3 }, "10e6f0eb4832": { "name": "github.project.listIssueTypesBySlug#1", @@ -84,13 +90,10 @@ } } }, - "13110f6c348f": { - "name": "projectAvailableLabels", - "value": ["bug"] - }, - "15a2c52c35d3": { - "name": "projectAvailableLabels", - "value": [] + "1dbe4f4ee3a9": { + "name": "projectIssueTypesError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 }, "1e4a42e12fe1": { "labels": ["bug"], @@ -105,22 +108,10 @@ ], "usersError": "" }, - "1ea80133c336": { - "name": "projectAssignableUsers", - "value": [ - { - "login": "octocat", - "name": "Octo" - } - ] - }, - "20a3073fc5ae": { + "240e8dbe86a2": { "name": "projectIssueTypesError", - "value": "transport failure" - }, - "2210882137a5": { - "name": "projectIssueTypesError", - "value": "outer refused" + "value": "outer refused", + "sent": 3 }, "2654bf3eaeb5": { "name": "github.project.listIssueTypesBySlug#1", @@ -160,9 +151,25 @@ } } }, - "3d9f892630c2": { - "name": "projectAssignableUsersLoading", - "value": false + "2ef615f214b1": { + "name": "projectAssignableUsers", + "value": [ + { + "login": "octocat", + "name": "Octo" + } + ], + "sent": 3 + }, + "3172adfa8033": { + "name": "projectIssueTypesError", + "value": "Failed to load issue types", + "sent": 3 + }, + "32b4277def9a": { + "name": "projectAvailableLabels", + "value": ["bug"], + "sent": 3 }, "3f5d8df504de": { "name": "github.project.listLabelsBySlug#1", @@ -213,10 +220,6 @@ ], "usersError": "" }, - "4532c39efcc5": { - "name": "projectLabelsLoading", - "value": false - }, "470cb6d8e135": { "name": "github.project.listIssueTypesBySlug#1", "args": [ @@ -253,6 +256,21 @@ } } }, + "48ae65ccd05f": { + "name": "projectIssueTypesError", + "value": "inner refused", + "sent": 3 + }, + "57d4746ddb82": { + "name": "projectAssignableUsersLoading", + "value": true, + "sent": 1 + }, + "5fd1b0e4ca3a": { + "name": "projectAssignableUsersLoading", + "value": false, + "sent": 3 + }, "61b9b973f3c5": { "name": "github.project.listIssueTypesBySlug#1", "args": [ @@ -319,9 +337,10 @@ } } }, - "6a3a5470c82e": { + "6c910b6dc2fa": { "name": "projectIssueTypesError", - "value": "Cannot read properties of null (reading 'ok')" + "value": "", + "sent": 2 }, "6d0473328c78": { "name": "github.project.listIssueTypesBySlug#1", @@ -359,6 +378,16 @@ } } }, + "7122de433e6a": { + "name": "projectIssueTypes", + "value": [ + { + "id": "type-1", + "name": "Bug" + } + ], + "sent": 3 + }, "78836b1c1374": { "labels": ["bug"], "labelsError": "", @@ -372,10 +401,6 @@ ], "usersError": "" }, - "7b69f54a8a5a": { - "name": "projectAssignableUsers", - "value": [] - }, "7c837b386969": { "labels": ["bug"], "labelsError": "", @@ -389,30 +414,15 @@ ], "usersError": "" }, - "7d235c436696": { + "7dce712a128e": { "name": "projectIssueTypesError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "822c655b8d01": { - "name": "projectLabelsError", - "value": "" - }, - "83bfe2deb7bf": { - "name": "projectAssignableUsersError", - "value": "" - }, - "83c1f676e233": { - "name": "projectIssueTypes", - "value": [] + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 }, "84c3fb2868bd": { "name": "github.project.listIssueTypesBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" }, - "84cd73de9431": { - "name": "projectIssueTypesError", - "value": "Failed to load issue types" - }, "85dea4f0ec45": { "labels": ["bug"], "labelsError": "", @@ -439,9 +449,10 @@ ], "usersError": "" }, - "8d8599f1ba0f": { - "name": "projectIssueTypesError", - "value": "" + "8f395e09a24b": { + "name": "projectAvailableLabels", + "value": [], + "sent": 0 }, "8fbb806f8730": { "name": "github.project.listIssueTypesBySlug#1", @@ -488,18 +499,6 @@ "name": "github.project.listAssignableUsersBySlug#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}" }, - "a149427e545f": { - "name": "projectLabelsLoading", - "value": true - }, - "a1ecaf05ee5c": { - "name": "projectIssueTypesLoading", - "value": false - }, - "a52f2267470a": { - "name": "projectIssueTypesError", - "value": "inner refused" - }, "a5fc70778afe": { "labels": ["bug"], "labelsError": "", @@ -513,14 +512,30 @@ ], "usersError": "" }, - "b65199d523ec": { - "name": "projectIssueTypes", - "value": [ - { - "id": "type-1", - "name": "Bug" - } - ] + "a9da2a563a6c": { + "name": "projectLabelsLoading", + "value": false, + "sent": 3 + }, + "bf0887cbf7f3": { + "name": "projectAssignableUsersError", + "value": "", + "sent": 1 + }, + "bfd812ba86c3": { + "name": "projectIssueTypesLoading", + "value": true, + "sent": 2 + }, + "bfdd7df58f9b": { + "name": "projectLabelsError", + "value": "", + "sent": 0 + }, + "c573e0717658": { + "name": "projectIssueTypesError", + "value": "", + "sent": 3 }, "ce078ca67d81": { "name": "github.project.listIssueTypesBySlug#1", @@ -558,6 +573,11 @@ } } }, + "d14a772531e0": { + "name": "projectLabelsLoading", + "value": true, + "sent": 0 + }, "d174aa9012c0": { "labels": ["bug"], "labelsError": "", @@ -571,6 +591,11 @@ ], "usersError": "" }, + "d17d55e4fee3": { + "name": "projectAssignableUsers", + "value": [], + "sent": 1 + }, "d5d91d8a5bac": { "labels": ["bug"], "labelsError": "", @@ -589,10 +614,6 @@ ], "usersError": "" }, - "d6be96273c26": { - "name": "projectAssignableUsersLoading", - "value": true - }, "da36de1a5410": { "name": "github.project.listLabelsBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" @@ -676,6 +697,11 @@ "$rpc": "undefined" } }, + "ee43aa13c95f": { + "name": "projectIssueTypes", + "value": [], + "sent": 2 + }, "ef507c348d21": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -718,9 +744,10 @@ } } }, - "faa936060915": { + "f0ab50bf91b1": { "name": "projectIssueTypesError", - "value": "Unknown method" + "value": "transport failure", + "sent": 3 } }, "recording": { @@ -736,21 +763,21 @@ }, "state": "d5d91d8a5bac", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -764,21 +791,21 @@ }, "state": "78836b1c1374", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "7d235c436696", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "1dbe4f4ee3a9", + "09f12e10766e" ] } }, @@ -792,21 +819,21 @@ }, "state": "8cec5485d355", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "6a3a5470c82e", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7dce712a128e", + "09f12e10766e" ] } }, @@ -820,21 +847,21 @@ }, "state": "a5fc70778afe", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "84cd73de9431", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "3172adfa8033", + "09f12e10766e" ] } }, @@ -848,21 +875,21 @@ }, "state": "a5fc70778afe", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "84cd73de9431", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "3172adfa8033", + "09f12e10766e" ] } }, @@ -876,21 +903,21 @@ }, "state": "85dea4f0ec45", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "a52f2267470a", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "48ae65ccd05f", + "09f12e10766e" ] } }, @@ -904,21 +931,21 @@ }, "state": "1e4a42e12fe1", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "2210882137a5", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "240e8dbe86a2", + "09f12e10766e" ] } }, @@ -932,21 +959,21 @@ }, "state": "404aee2280bc", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "8d8599f1ba0f", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "c573e0717658", + "09f12e10766e" ] } }, @@ -960,21 +987,21 @@ }, "state": "7c837b386969", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "faa936060915", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "0329856b8162", + "09f12e10766e" ] } }, @@ -988,21 +1015,21 @@ }, "state": "d174aa9012c0", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "20a3073fc5ae", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "f0ab50bf91b1", + "09f12e10766e" ] } }, @@ -1016,21 +1043,21 @@ }, "state": "404aee2280bc", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "8d8599f1ba0f", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "c573e0717658", + "09f12e10766e" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listlabelsbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listlabelsbyslug-1.json index 576ec97d255..57aa678cdcc 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listlabelsbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listlabelsbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "7c948e76afb331e4038298215181adc97cd533c4f79e205e183c08e8a2db20fc", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "054e440d55a6": { - "name": "projectLabelsError", - "value": "transport failure" - }, - "0ec535506ef6": { + "09f12e10766e": { "name": "projectIssueTypesLoading", - "value": true + "value": false, + "sent": 3 }, "0ef05fd70152": { "name": "github.project.listLabelsBySlug#1", @@ -59,18 +56,6 @@ } } }, - "13110f6c348f": { - "name": "projectAvailableLabels", - "value": ["bug"] - }, - "14dbb900a4a0": { - "name": "projectLabelsError", - "value": "Cannot read properties of null (reading 'ok')" - }, - "15a2c52c35d3": { - "name": "projectAvailableLabels", - "value": [] - }, "19e6a8232bfe": { "name": "github.project.listLabelsBySlug#1", "args": [ @@ -107,19 +92,6 @@ } } }, - "1ea80133c336": { - "name": "projectAssignableUsers", - "value": [ - { - "login": "octocat", - "name": "Octo" - } - ] - }, - "28b6a2a05d79": { - "name": "projectLabelsError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "28bac89de584": { "labels": [], "labelsError": "inner refused", @@ -138,6 +110,21 @@ ], "usersError": "" }, + "2ef615f214b1": { + "name": "projectAssignableUsers", + "value": [ + { + "login": "octocat", + "name": "Octo" + } + ], + "sent": 3 + }, + "32b4277def9a": { + "name": "projectAvailableLabels", + "value": ["bug"], + "sent": 3 + }, "33456346b818": { "name": "github.project.listLabelsBySlug#1", "args": [ @@ -171,9 +158,10 @@ } } }, - "382ee5a3bb42": { + "38bb5568ec06": { "name": "projectLabelsError", - "value": "Unknown method" + "value": "transport failure", + "sent": 3 }, "3a740cb021bb": { "name": "github.project.listLabelsBySlug#1", @@ -243,10 +231,6 @@ } } }, - "3d9f892630c2": { - "name": "projectAssignableUsersLoading", - "value": false - }, "3f5d8df504de": { "name": "github.project.listLabelsBySlug#1", "args": [ @@ -283,13 +267,15 @@ } } }, - "4532c39efcc5": { - "name": "projectLabelsLoading", - "value": false - }, - "45ebbda6a772": { + "4898092f9671": { "name": "projectLabelsError", - "value": "outer refused" + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, + "50071e824d24": { + "name": "projectLabelsError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 }, "52e20d57bbfa": { "name": "github.project.listLabelsBySlug#1", @@ -344,6 +330,11 @@ ], "usersError": "" }, + "57d4746ddb82": { + "name": "projectAssignableUsersLoading", + "value": true, + "sent": 1 + }, "58119434ee38": { "labels": [], "labelsError": "outer refused", @@ -362,6 +353,21 @@ ], "usersError": "" }, + "5fd1b0e4ca3a": { + "name": "projectAssignableUsersLoading", + "value": false, + "sent": 3 + }, + "696fa42cb11c": { + "name": "projectLabelsError", + "value": "outer refused", + "sent": 3 + }, + "6c910b6dc2fa": { + "name": "projectIssueTypesError", + "value": "", + "sent": 2 + }, "6cc4cd12a170": { "labels": [], "labelsError": "", @@ -380,6 +386,16 @@ ], "usersError": "" }, + "7122de433e6a": { + "name": "projectIssueTypes", + "value": [ + { + "id": "type-1", + "name": "Bug" + } + ], + "sent": 3 + }, "792eafc160d3": { "labels": [], "labelsError": "Unknown method", @@ -398,33 +414,14 @@ ], "usersError": "" }, - "7b69f54a8a5a": { - "name": "projectAssignableUsers", - "value": [] - }, - "822c655b8d01": { - "name": "projectLabelsError", - "value": "" - }, - "83bfe2deb7bf": { - "name": "projectAssignableUsersError", - "value": "" - }, - "83c1f676e233": { - "name": "projectIssueTypes", - "value": [] - }, "84c3fb2868bd": { "name": "github.project.listIssueTypesBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" }, - "8d8599f1ba0f": { - "name": "projectIssueTypesError", - "value": "" - }, - "8e21c3ec86f2": { - "name": "projectLabelsError", - "value": "inner refused" + "8f395e09a24b": { + "name": "projectAvailableLabels", + "value": [], + "sent": 0 }, "8fbb806f8730": { "name": "github.project.listIssueTypesBySlug#1", @@ -525,14 +522,6 @@ "name": "github.project.listAssignableUsersBySlug#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}" }, - "a149427e545f": { - "name": "projectLabelsLoading", - "value": true - }, - "a1ecaf05ee5c": { - "name": "projectIssueTypesLoading", - "value": false - }, "a7f75837a806": { "name": "github.project.listLabelsBySlug#1", "args": [ @@ -565,14 +554,25 @@ } } }, - "b65199d523ec": { - "name": "projectIssueTypes", - "value": [ - { - "id": "type-1", - "name": "Bug" - } - ] + "a9da2a563a6c": { + "name": "projectLabelsLoading", + "value": false, + "sent": 3 + }, + "bf0887cbf7f3": { + "name": "projectAssignableUsersError", + "value": "", + "sent": 1 + }, + "bfd812ba86c3": { + "name": "projectIssueTypesLoading", + "value": true, + "sent": 2 + }, + "bfdd7df58f9b": { + "name": "projectLabelsError", + "value": "", + "sent": 0 }, "c2c98ef22b43": { "name": "github.project.listLabelsBySlug#1", @@ -610,9 +610,15 @@ } } }, - "d2dde6efd0a7": { - "name": "projectLabelsError", - "value": "Failed to load labels" + "d14a772531e0": { + "name": "projectLabelsLoading", + "value": true, + "sent": 0 + }, + "d17d55e4fee3": { + "name": "projectAssignableUsers", + "value": [], + "sent": 1 }, "d5d91d8a5bac": { "labels": ["bug"], @@ -632,10 +638,6 @@ ], "usersError": "" }, - "d6be96273c26": { - "name": "projectAssignableUsersLoading", - "value": true - }, "da36de1a5410": { "name": "github.project.listLabelsBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" @@ -658,6 +660,16 @@ ], "usersError": "" }, + "dc5159e02876": { + "name": "projectLabelsError", + "value": "inner refused", + "sent": 3 + }, + "e35fa77345c3": { + "name": "projectLabelsError", + "value": "Unknown method", + "sent": 3 + }, "e493dc6bdc13": { "name": "github.project.listLabelsBySlug#1", "args": [ @@ -694,6 +706,11 @@ } } }, + "e93c4c960261": { + "name": "projectLabelsError", + "value": "Failed to load labels", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -702,6 +719,11 @@ "$rpc": "undefined" } }, + "ee43aa13c95f": { + "name": "projectIssueTypes", + "value": [], + "sent": 2 + }, "ef507c348d21": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -744,6 +766,11 @@ } } }, + "f8160d8f0119": { + "name": "projectLabelsError", + "value": "", + "sent": 3 + }, "f9bf509bfe31": { "labels": [], "labelsError": "Cannot read properties of null (reading 'ok')", @@ -776,21 +803,21 @@ }, "state": "d5d91d8a5bac", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -804,21 +831,21 @@ }, "state": "dba8d8f1c7df", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "28b6a2a05d79", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "4898092f9671", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -832,21 +859,21 @@ }, "state": "f9bf509bfe31", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "14dbb900a4a0", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "50071e824d24", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -860,21 +887,21 @@ }, "state": "903819696961", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "d2dde6efd0a7", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "e93c4c960261", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -888,21 +915,21 @@ }, "state": "903819696961", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "d2dde6efd0a7", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "e93c4c960261", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -916,21 +943,21 @@ }, "state": "28bac89de584", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "8e21c3ec86f2", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "dc5159e02876", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -944,21 +971,21 @@ }, "state": "58119434ee38", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "45ebbda6a772", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "696fa42cb11c", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -972,21 +999,21 @@ }, "state": "6cc4cd12a170", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "822c655b8d01", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "f8160d8f0119", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -1000,21 +1027,21 @@ }, "state": "792eafc160d3", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "382ee5a3bb42", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "e35fa77345c3", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -1028,21 +1055,21 @@ }, "state": "53a82e75f637", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "054e440d55a6", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "38bb5568ec06", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } }, @@ -1056,21 +1083,21 @@ }, "state": "6cc4cd12a170", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "822c655b8d01", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "f8160d8f0119", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.prchecks-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.prchecks-1.json index eb25656d9b3..3c3fe782173 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.prchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.prchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "20e9631df87e40e64d35cee0c0e06b922fe53bd93e3d9e4078633b85a5278b7e", "platform": "darwin", @@ -52,9 +52,10 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "065cd72ecfab": { "name": "github.prChecks#1", @@ -100,9 +101,15 @@ } } }, - "0924615699bf": { + "0d3abde11044": { "name": "projectRowDetailError", - "value": "transport failure" + "value": "Connection closed", + "sent": 2 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "126adb332144": { "name": "github.prChecks#1", @@ -316,10 +323,6 @@ } } }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, "2a1ffe6c7f4c": { "detail": { "assignees": ["octocat"], @@ -381,10 +384,6 @@ "mutating": true, "refreshSeq": 0 }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -450,125 +449,10 @@ "name": "github.requestPRReviewers#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" }, - "37d9097c7885": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "3be9b42f18ea": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "3befcdf8b535": { - "name": "projectReviewersDraft", - "value": "" + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 }, "3c5cb4768846": { "name": "github.prChecks#1", @@ -647,6 +531,16 @@ } } }, + "466f8db9d238": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 2 + }, + "46b4c26d709a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 2 + }, "4b9b887ee27f": { "name": "github.setPRFileViewed#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" @@ -719,71 +613,6 @@ "mutating": false, "refreshSeq": 1 }, - "5ffd15276a38": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, "62edc52051d6": { "detail": { "assignees": ["octocat"], @@ -852,6 +681,11 @@ "mutating": false, "refreshSeq": 1 }, + "674a78fb6dfb": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 2 + }, "694581af73a0": { "name": "github.setPRFileViewed#1", "args": [ @@ -891,9 +725,10 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, "735789ad613e": { "detail": { @@ -956,6 +791,16 @@ "mutating": false, "refreshSeq": 0 }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 + }, "78e4c95a24b3": { "name": "github.prChecks#1", "args": [ @@ -1044,11 +889,202 @@ } } }, - "87d5e8116a07": { - "name": "projectRowDetailRefreshSeq", - "value": 1 + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 }, - "89a13247ebe8": { + "7fde07c7539a": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 2 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "8bb4bae45cc1": { + "name": "github.requestPRReviewers#1", + "args": [ + { + "name": "method", + "value": "github.requestPRReviewers" + }, + { + "name": "params", + "value": { + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1", + "reviewers": ["octocat"] + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "90f25d344500": { + "name": "projectRowDetailError", + "value": "Invalid checks response", + "sent": 2 + }, + "914b1bd28569": { + "name": "projectReviewersDraft", + "value": "", + "sent": 1 + }, + "93b879a81965": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, + "97fbbfe4cfb6": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -1111,51 +1147,8 @@ } } ] - } - }, - "8bb4bae45cc1": { - "name": "github.requestPRReviewers#1", - "args": [ - { - "name": "method", - "value": "github.requestPRReviewers" - }, - { - "name": "params", - "value": { - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1", - "reviewers": ["octocat"] - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "8da131c5ddea": { - "name": "projectRowDetailError", - "value": "Invalid checks response" + }, + "sent": 4 }, "98fec6b761cc": { "name": "github.prChecks#1", @@ -1406,9 +1399,64 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true + "ce55ed88159e": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 4 }, "d10f79760196": { "name": "github.rerunPRChecks#1", @@ -1451,6 +1499,11 @@ } } }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, "d543cbf9ae9e": { "name": "github.prChecks#1", "args": [ @@ -1626,9 +1679,15 @@ "$rpc": "undefined" } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" + "f14882f2981f": { + "name": "projectRowDetailRefreshSeq", + "value": 1, + "sent": 3 + }, + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 } }, "recording": { @@ -1645,11 +1704,11 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db" ] } }, @@ -1665,15 +1724,15 @@ }, "state": "2a1ffe6c7f4c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "0d3abde11044", + "6f4f9198e5ff" ] } }, @@ -1689,15 +1748,15 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff" ] } }, @@ -1714,19 +1773,19 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -1744,23 +1803,23 @@ }, "state": "5cdba004ba6c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -1776,15 +1835,15 @@ }, "state": "735789ad613e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff" ] } }, @@ -1801,19 +1860,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -1831,23 +1890,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -1863,15 +1922,15 @@ }, "state": "735789ad613e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff" ] } }, @@ -1888,19 +1947,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -1918,23 +1977,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -1950,15 +2009,15 @@ }, "state": "735789ad613e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff" ] } }, @@ -1975,19 +2034,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2005,23 +2064,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -2037,15 +2096,15 @@ }, "state": "735789ad613e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff" ] } }, @@ -2062,19 +2121,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2092,23 +2151,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -2124,15 +2183,15 @@ }, "state": "735789ad613e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff" ] } }, @@ -2149,19 +2208,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2179,23 +2238,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "8da131c5ddea", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "90f25d344500", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -2211,15 +2270,15 @@ }, "state": "1fd8ba4fe09e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff" ] } }, @@ -2236,19 +2295,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2266,23 +2325,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -2298,15 +2357,15 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -2323,19 +2382,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2353,23 +2412,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -2385,15 +2444,15 @@ }, "state": "d7be83edec32", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff" ] } }, @@ -2410,19 +2469,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2440,23 +2499,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -2472,15 +2531,15 @@ }, "state": "d71bf87d2c40", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff" ] } }, @@ -2497,19 +2556,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2527,23 +2586,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } }, @@ -2559,15 +2618,15 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -2584,19 +2643,19 @@ }, "state": "9f7761a3afec", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2614,23 +2673,23 @@ }, "state": "b2fdd4b38834", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "3be9b42f18ea", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ce55ed88159e", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.requestprreviewers-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.requestprreviewers-1.json index cec8e3beb20..3cd7cff47ad 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.requestprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.requestprreviewers-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "2d947b63fb35dad9bbe201061cb51d0b3c5a5e6f3e8018eeda2ec1f962952809", "platform": "darwin", @@ -64,13 +64,10 @@ "mutating": false, "refreshSeq": 0 }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "0a57c2f7f62b": { "name": "github.requestPRReviewers#1", @@ -112,6 +109,72 @@ } } }, + "0ef970845cc7": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 1 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "12e19b3aa95b": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 + }, "1394649d889f": { "detail": { "assignees": ["octocat"], @@ -170,6 +233,11 @@ "mutating": false, "refreshSeq": 0 }, + "152580ec9e5a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 1 + }, "2115fb7ac9fb": { "name": "github.requestPRReviewers#1", "args": [ @@ -423,14 +491,6 @@ "mutating": false, "refreshSeq": 1 }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -492,75 +552,14 @@ "mutating": false, "refreshSeq": 0 }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "2eee910f375e": { "name": "github.requestPRReviewers#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" }, - "37d9097c7885": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "3befcdf8b535": { - "name": "projectReviewersDraft", - "value": "" + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 }, "3c2fa1277556": { "detail": { @@ -624,6 +623,11 @@ "name": "github.setPRFileViewed#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" }, + "4c09a53c8150": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, "5cdba004ba6c": { "detail": { "assignees": ["octocat"], @@ -692,71 +696,6 @@ "mutating": false, "refreshSeq": 1 }, - "5ffd15276a38": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, "62edc52051d6": { "detail": { "assignees": ["octocat"], @@ -905,68 +844,20 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 }, - "7306a516d733": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 }, "78c4e6dc05ef": { "name": "github.requestPRReviewers#1", @@ -1055,11 +946,12 @@ } } }, - "87d5e8116a07": { - "name": "projectRowDetailRefreshSeq", - "value": 1 + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 }, - "89a13247ebe8": { + "7fde07c7539a": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -1100,7 +992,7 @@ }, "path": "src/index.ts", "status": "modified", - "viewerViewedState": "VIEWED" + "viewerViewedState": "UNVIEWED" } ], "headSha": "head-sha", @@ -1122,7 +1014,28 @@ } } ] - } + }, + "sent": 2 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "8237b3a567bf": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 1 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8a4f69f488e2": { "name": "github.requestPRReviewers#1", @@ -1244,6 +1157,141 @@ } } }, + "8d4c89b2a786": { + "name": "projectRowDetailError", + "value": "[object Object]", + "sent": 1 + }, + "914b1bd28569": { + "name": "projectReviewersDraft", + "value": "", + "sent": 1 + }, + "93b879a81965": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, + "97fbbfe4cfb6": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 4 + }, "98fec6b761cc": { "name": "github.prChecks#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" @@ -1339,6 +1387,11 @@ "mutating": false, "refreshSeq": 0 }, + "a7b76954b136": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, "b147405e45ea": { "detail": { "assignees": ["octocat"], @@ -1533,11 +1586,7 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "c4fe8e18f6a3": { + "cc986c7cc7e7": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -1590,7 +1639,8 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 }, "d10f79760196": { "name": "github.rerunPRChecks#1", @@ -1633,9 +1683,10 @@ } } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 }, "d388d0dd9c9c": { "detail": { @@ -1751,9 +1802,20 @@ "$rpc": "undefined" } }, - "f9222c9368b1": { + "eff724250cc7": { "name": "projectRowDetailError", - "value": "[object Object]" + "value": "inner refused", + "sent": 1 + }, + "f14882f2981f": { + "name": "projectRowDetailRefreshSeq", + "value": 1, + "sent": 3 + }, + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 }, "fd1710c7e153": { "name": "github.requestPRReviewers#1", @@ -1811,11 +1873,11 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db" ] } }, @@ -1831,15 +1893,15 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff" ] } }, @@ -1856,19 +1918,19 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -1886,23 +1948,23 @@ }, "state": "5cdba004ba6c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -1916,7 +1978,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "024c8bcbe9d9", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2e2da1bbd7ed", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "4c09a53c8150", "02839f22d2db"] } }, { @@ -1931,14 +1993,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -1955,18 +2017,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -1984,22 +2046,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2013,7 +2075,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "23acafa856fa", - "effects": ["c2a271fc5d97", "057a0b5a420b", "d330309fabb3", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "a7b76954b136", "02839f22d2db"] } }, { @@ -2028,14 +2090,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2052,18 +2114,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2081,22 +2143,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2111,11 +2173,11 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db" ] } }, @@ -2131,15 +2193,15 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff" ] } }, @@ -2156,19 +2218,19 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2186,23 +2248,23 @@ }, "state": "5cdba004ba6c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2216,7 +2278,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "bca6ebb96154", - "effects": ["c2a271fc5d97", "057a0b5a420b", "6fe1c7d73e4d", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "eff724250cc7", "02839f22d2db"] } }, { @@ -2231,14 +2293,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2255,18 +2317,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2284,22 +2346,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2313,7 +2375,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "dfafb40d73d4", - "effects": ["c2a271fc5d97", "057a0b5a420b", "f9222c9368b1", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "8d4c89b2a786", "02839f22d2db"] } }, { @@ -2328,14 +2390,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8d4c89b2a786", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2352,18 +2414,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8d4c89b2a786", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2381,22 +2443,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8d4c89b2a786", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2410,7 +2472,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "b147405e45ea", - "effects": ["c2a271fc5d97", "057a0b5a420b", "27f506c59cc7", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "0ef970845cc7", "02839f22d2db"] } }, { @@ -2425,14 +2487,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2449,18 +2511,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2478,22 +2540,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2507,7 +2569,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "d388d0dd9c9c", - "effects": ["c2a271fc5d97", "057a0b5a420b", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "85f150b2df81", "02839f22d2db"] } }, { @@ -2522,14 +2584,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2546,18 +2608,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2575,22 +2637,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2604,7 +2666,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "c14c0c1159d1", - "effects": ["c2a271fc5d97", "057a0b5a420b", "6b6431f01d00", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "152580ec9e5a", "02839f22d2db"] } }, { @@ -2619,14 +2681,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2643,18 +2705,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2672,22 +2734,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2701,7 +2763,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "a2c3811d26b3", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0924615699bf", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "8237b3a567bf", "02839f22d2db"] } }, { @@ -2716,14 +2778,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2740,18 +2802,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2769,22 +2831,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } }, @@ -2798,7 +2860,7 @@ "reviewers-0": "eb79a9b3682a" }, "state": "d388d0dd9c9c", - "effects": ["c2a271fc5d97", "057a0b5a420b", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "85f150b2df81", "02839f22d2db"] } }, { @@ -2813,14 +2875,14 @@ }, "state": "1394649d889f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff" ] } }, @@ -2837,18 +2899,18 @@ }, "state": "253a401313b2", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2866,22 +2928,22 @@ }, "state": "3c2fa1277556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c4fe8e18f6a3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7306a516d733", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "cc986c7cc7e7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "12e19b3aa95b", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.rerunprchecks-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.rerunprchecks-1.json index 2ba71166333..dc01034bdee 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.rerunprchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.rerunprchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "ca6b0d81b19811806ce332a776361a40e526a73bef90cfa3df05a764e2ee83b6", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "0aba735e014b": { "detail": { @@ -133,6 +130,16 @@ } } }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "1b30471b40d2": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 3 + }, "1edba0a1a262": { "name": "github.rerunPRChecks#1", "args": [ @@ -243,14 +250,6 @@ "mutating": false, "refreshSeq": 0 }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -312,10 +311,6 @@ "mutating": false, "refreshSeq": 0 }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "2eee910f375e": { "name": "github.requestPRReviewers#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" @@ -388,6 +383,11 @@ "mutating": false, "refreshSeq": 0 }, + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 + }, "371b50f433c2": { "name": "github.rerunPRChecks#1", "args": [ @@ -430,68 +430,6 @@ } } }, - "37d9097c7885": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "3befcdf8b535": { - "name": "projectReviewersDraft", - "value": "" - }, "427bd9508150": { "name": "github.rerunPRChecks#1", "args": [ @@ -570,6 +508,11 @@ } } }, + "4a73d878a19a": { + "name": "projectRowDetailError", + "value": "[object Object]", + "sent": 3 + }, "4b8f240addf4": { "name": "github.rerunPRChecks#1", "args": [ @@ -752,71 +695,6 @@ "mutating": false, "refreshSeq": 1 }, - "5ffd15276a38": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, "62edc52051d6": { "detail": { "assignees": ["octocat"], @@ -924,13 +802,15 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 }, "755b3a374ed8": { "detail": { @@ -1000,6 +880,11 @@ "mutating": false, "refreshSeq": 0 }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 + }, "7941a2b950be": { "name": "github.prChecks#1", "args": [ @@ -1046,6 +931,87 @@ } } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "7fde07c7539a": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 2 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, "867da7ac1013": { "name": "github.rerunPRChecks#1", "args": [ @@ -1088,74 +1054,10 @@ } } }, - "87d5e8116a07": { - "name": "projectRowDetailRefreshSeq", - "value": 1 - }, - "89a13247ebe8": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8aad67679b45": { "name": "github.rerunPRChecks#1", @@ -1236,6 +1138,141 @@ } } }, + "9138850642c5": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 3 + }, + "914b1bd28569": { + "name": "projectReviewersDraft", + "value": "", + "sent": 1 + }, + "93b879a81965": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, + "97fbbfe4cfb6": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 4 + }, "98fec6b761cc": { "name": "github.prChecks#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" @@ -1308,10 +1345,6 @@ "mutating": true, "refreshSeq": 0 }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "cf5e20449a3b": { "name": "github.rerunPRChecks#1", "args": [ @@ -1394,9 +1427,10 @@ } } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 }, "d4610f44ebca": { "detail": { @@ -1466,6 +1500,16 @@ "mutating": false, "refreshSeq": 0 }, + "d72ea315da15": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 3 + }, + "d856c0886ca0": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 3 + }, "db0eb1b27029": { "detail": { "assignees": ["octocat"], @@ -1674,6 +1718,16 @@ "mutating": false, "refreshSeq": 0 }, + "e7d38ed5fb03": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, + "eb612a2e1a87": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1723,13 +1777,20 @@ } } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" + "f14882f2981f": { + "name": "projectRowDetailRefreshSeq", + "value": 1, + "sent": 3 }, - "f9222c9368b1": { + "f37a9bff665c": { "name": "projectRowDetailError", - "value": "[object Object]" + "value": "Connection closed", + "sent": 3 + }, + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 }, "ffae5011e8b3": { "name": "github.rerunPRChecks#1", @@ -1784,11 +1845,11 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db" ] } }, @@ -1804,15 +1865,15 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff" ] } }, @@ -1829,19 +1890,19 @@ }, "state": "b9377f5f763b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f37a9bff665c", + "73c3051352c2" ] } }, @@ -1858,19 +1919,19 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -1888,23 +1949,23 @@ }, "state": "5cdba004ba6c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -1921,19 +1982,19 @@ }, "state": "755b3a374ed8", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2" ] } }, @@ -1951,23 +2012,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -1984,19 +2045,19 @@ }, "state": "e32b4c3c9b04", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2" ] } }, @@ -2014,23 +2075,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2047,19 +2108,19 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -2077,23 +2138,23 @@ }, "state": "5cdba004ba6c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2110,19 +2171,19 @@ }, "state": "db0eb1b27029", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2" ] } }, @@ -2140,23 +2201,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2173,19 +2234,19 @@ }, "state": "d4610f44ebca", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "4a73d878a19a", + "73c3051352c2" ] } }, @@ -2203,23 +2264,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "4a73d878a19a", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2236,19 +2297,19 @@ }, "state": "316daba13a9c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2" ] } }, @@ -2266,23 +2327,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2299,19 +2360,19 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -2329,23 +2390,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2362,19 +2423,19 @@ }, "state": "4be4f71a6ab7", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2" ] } }, @@ -2392,23 +2453,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2425,19 +2486,19 @@ }, "state": "e465cc97907a", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2" ] } }, @@ -2455,23 +2516,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -2488,19 +2549,19 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -2518,23 +2579,23 @@ }, "state": "0aba735e014b", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.setprfileviewed-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.setprfileviewed-1.json index 4ed3098e976..cb34c10bc98 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.setprfileviewed-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.setprfileviewed-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "bd58d88e0534366e281869ee79eb75fe65b418d02523d815d8d0d58799edc31b", "platform": "darwin", @@ -57,13 +57,20 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, - "0924615699bf": { + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "134f75ab5b29": { "name": "projectRowDetailError", - "value": "transport failure" + "value": "Failed to sync viewed state with GitHub.", + "sent": 4 }, "22ffca652b36": { "detail": { @@ -133,14 +140,6 @@ "mutating": false, "refreshSeq": 0 }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -206,63 +205,10 @@ "name": "github.requestPRReviewers#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" }, - "37d9097c7885": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 }, "38bdf0f6645e": { "name": "github.setPRFileViewed#1", @@ -302,9 +248,15 @@ } } }, - "3befcdf8b535": { - "name": "projectReviewersDraft", - "value": "" + "3d423b72401d": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 4 + }, + "4a9746552893": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 4 }, "4b9b887ee27f": { "name": "github.setPRFileViewed#1", @@ -352,6 +304,11 @@ } } }, + "558fe933adba": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 4 + }, "5cdba004ba6c": { "detail": { "assignees": ["octocat"], @@ -420,71 +377,6 @@ "mutating": false, "refreshSeq": 1 }, - "5ffd15276a38": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, "60688af118fb": { "name": "github.setPRFileViewed#1", "args": [ @@ -670,9 +562,20 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 }, "7941a2b950be": { "name": "github.prChecks#1", @@ -720,6 +623,87 @@ } } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "7fde07c7539a": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 2 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, "867c89335556": { "detail": { "assignees": ["octocat"], @@ -788,11 +772,121 @@ "mutating": false, "refreshSeq": 1 }, - "87d5e8116a07": { - "name": "projectRowDetailRefreshSeq", - "value": 1 + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, - "89a13247ebe8": { + "8bb4bae45cc1": { + "name": "github.requestPRReviewers#1", + "args": [ + { + "name": "method", + "value": "github.requestPRReviewers" + }, + { + "name": "params", + "value": { + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1", + "reviewers": ["octocat"] + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "914b1bd28569": { + "name": "projectReviewersDraft", + "value": "", + "sent": 1 + }, + "93b879a81965": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, + "976f63e51ba2": { + "name": "projectRowDetailError", + "value": "", + "sent": 4 + }, + "97fbbfe4cfb6": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -855,47 +949,8 @@ } } ] - } - }, - "8bb4bae45cc1": { - "name": "github.requestPRReviewers#1", - "args": [ - { - "name": "method", - "value": "github.requestPRReviewers" - }, - { - "name": "params", - "value": { - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1", - "reviewers": ["octocat"] - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "ok": true - } - } - } + }, + "sent": 4 }, "98d5e7155129": { "name": "github.setPRFileViewed#1", @@ -1230,10 +1285,6 @@ } } }, - "b8bda8418e94": { - "name": "projectRowDetailError", - "value": "Failed to sync viewed state with GitHub." - }, "b98956c1eea2": { "name": "github.setPRFileViewed#1", "args": [ @@ -1276,10 +1327,6 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "c744ecbe18a1": { "name": "github.setPRFileViewed#1", "args": [ @@ -1362,6 +1409,11 @@ } } }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, "dc5439b12876": { "name": "github.rerunPRChecks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}" @@ -1434,6 +1486,11 @@ "mutating": true, "refreshSeq": 1 }, + "e0a1028e48ba": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 4 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1442,9 +1499,15 @@ "$rpc": "undefined" } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" + "f14882f2981f": { + "name": "projectRowDetailRefreshSeq", + "value": 1, + "sent": 3 + }, + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 }, "ff78e7952ee7": { "name": "github.setPRFileViewed#1", @@ -1500,11 +1563,11 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db" ] } }, @@ -1520,15 +1583,15 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff" ] } }, @@ -1545,19 +1608,19 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -1575,23 +1638,23 @@ }, "state": "ddbf3cb813dc", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "558fe933adba", + "fa2e7b92e1d5" ] } }, @@ -1609,23 +1672,23 @@ }, "state": "5cdba004ba6c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } }, @@ -1643,23 +1706,23 @@ }, "state": "9e2bd15c2270", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "b8bda8418e94", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "134f75ab5b29", + "fa2e7b92e1d5" ] } }, @@ -1677,23 +1740,23 @@ }, "state": "9e2bd15c2270", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "b8bda8418e94", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "134f75ab5b29", + "fa2e7b92e1d5" ] } }, @@ -1711,23 +1774,23 @@ }, "state": "9e2bd15c2270", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "b8bda8418e94", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "134f75ab5b29", + "fa2e7b92e1d5" ] } }, @@ -1745,23 +1808,23 @@ }, "state": "9e2bd15c2270", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "b8bda8418e94", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "134f75ab5b29", + "fa2e7b92e1d5" ] } }, @@ -1779,23 +1842,23 @@ }, "state": "9e2bd15c2270", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "b8bda8418e94", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "134f75ab5b29", + "fa2e7b92e1d5" ] } }, @@ -1813,23 +1876,23 @@ }, "state": "9e89a1c8c40d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "e0a1028e48ba", + "fa2e7b92e1d5" ] } }, @@ -1847,23 +1910,23 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "976f63e51ba2", + "fa2e7b92e1d5" ] } }, @@ -1881,23 +1944,23 @@ }, "state": "acc9618c23f3", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "3d423b72401d", + "fa2e7b92e1d5" ] } }, @@ -1915,23 +1978,23 @@ }, "state": "867c89335556", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "4a9746552893", + "fa2e7b92e1d5" ] } }, @@ -1949,23 +2012,23 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "976f63e51ba2", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addissuecomment-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addissuecomment-1.json index 5217e1576b9..f247766235e 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "0f220b97bbb64ef8d347973690e6fab4b305eaaa54c9b7883340415c54e61206", "platform": "darwin", @@ -13,19 +13,12 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, - "0ea6faa5db5f": { + "02df4d991595": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -61,7 +54,17 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 1 + }, + "095ff0ea9c3e": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "1689d9f91f40": { "name": "github.resolveReviewThread#1", @@ -164,21 +167,15 @@ "error": "", "mutating": false }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} - }, - "27f506c59cc7": { + "33c9edfc8631": { "name": "projectRowDetailError", - "value": "outer refused" + "value": "inner refused", + "sent": 4 }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { + "347fa6adc9f3": { "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 3 }, "3616b3bb9bd2": { "name": "github.addIssueComment#1", @@ -222,58 +219,15 @@ } } }, - "3b43982aa2b2": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "3d423b72401d": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 4 + }, + "3eed5086ca8e": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 4 }, "43de89e6550f": { "detail": { @@ -323,6 +277,50 @@ "error": "[object Object]", "mutating": false }, + "4a9746552893": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 4 + }, + "4c677c52a54e": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, "550f58aa00a7": { "detail": { "assignees": ["octocat"], @@ -371,6 +369,16 @@ "error": "", "mutating": true }, + "558fe933adba": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 4 + }, + "55b83fbfcc09": { + "name": "projectRowDetailError", + "value": "[object Object]", + "sent": 4 + }, "5e4d75ca8adc": { "name": "github.addIssueComment#1", "args": [ @@ -413,6 +421,11 @@ } } }, + "6332aa2e35ef": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 4 + }, "680d3e2ff566": { "detail": { "assignees": ["octocat"], @@ -461,10 +474,6 @@ "error": "Unknown method", "mutating": false }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, "6d3be646bec9": { "name": "github.addIssueComment#1", "args": [ @@ -554,9 +563,20 @@ "error": "Cannot read properties of undefined (reading 'ok')", "mutating": false }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 }, "78c52015aa43": { "detail": { @@ -606,6 +626,21 @@ "error": "inner refused", "mutating": false }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, "874009380ba6": { "detail": { "assignees": ["octocat"], @@ -660,6 +695,21 @@ "error": "", "mutating": false }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "8bbb5efeadaf": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 4 + }, + "976f63e51ba2": { + "name": "projectRowDetailError", + "value": "", + "sent": 4 + }, "979e7cec91d8": { "name": "github.addIssueComment#1", "args": [ @@ -698,6 +748,54 @@ } } }, + "a7e90307fc74": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, "b6b9452c2348": { "detail": { "assignees": ["octocat"], @@ -815,9 +913,68 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true + "c283c93a5619": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "local-1767225600000", + "line": { + "$rpc": "undefined" + }, + "path": { + "$rpc": "undefined" + }, + "threadId": { + "$rpc": "undefined" + } + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 }, "c3f765625de5": { "name": "github.addIssueComment#1", @@ -858,12 +1015,6 @@ } } }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", - "value": { - "comment-2": "a reply" - } - }, "cc8e9797ff26": { "name": "github.addIssueComment#1", "args": [ @@ -990,10 +1141,22 @@ "error": "transport failure", "mutating": false }, + "cf1e9d4fc0c3": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 3 + }, "cf954aa5f6bf": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, "d1d6434fd325": { "name": "github.addIssueComment#1", "args": [ @@ -1035,9 +1198,59 @@ } } }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d515951be1e3": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 }, "d7467bca27a7": { "name": "github.project.deleteIssueCommentBySlug#1", @@ -1138,6 +1351,11 @@ } } }, + "e0a1028e48ba": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 4 + }, "e3ad9b260dec": { "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" @@ -1190,53 +1408,6 @@ "error": "", "mutating": false }, - "e87dc5b12fb8": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1245,68 +1416,6 @@ "$rpc": "undefined" } }, - "f0582a460a01": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "local-1767225600000", - "line": { - "$rpc": "undefined" - }, - "path": { - "$rpc": "undefined" - }, - "threadId": { - "$rpc": "undefined" - } - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "f27ce2e53696": { "name": "github.addIssueComment#1", "args": [ @@ -1402,13 +1511,10 @@ } } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" - }, - "f9222c9368b1": { - "name": "projectRowDetailError", - "value": "[object Object]" + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 }, "fa87419c6c2e": { "detail": { @@ -1516,7 +1622,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b6b9452c2348", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0ea6faa5db5f", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "02df4d991595", "02839f22d2db"] } }, { @@ -1531,14 +1637,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff" ] } }, @@ -1555,19 +1661,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1585,23 +1691,23 @@ }, "state": "550f58aa00a7", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "558fe933adba", + "fa2e7b92e1d5" ] } }, @@ -1619,24 +1725,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1654,23 +1760,23 @@ }, "state": "6eb252a289a0", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "3eed5086ca8e", + "fa2e7b92e1d5" ] } }, @@ -1688,23 +1794,23 @@ }, "state": "fa87419c6c2e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "6332aa2e35ef", + "fa2e7b92e1d5" ] } }, @@ -1722,24 +1828,24 @@ }, "state": "192db8712646", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "f0582a460a01", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "c283c93a5619", + "fa2e7b92e1d5" ] } }, @@ -1757,23 +1863,23 @@ }, "state": "78c52015aa43", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "33c9edfc8631", + "fa2e7b92e1d5" ] } }, @@ -1791,23 +1897,23 @@ }, "state": "43de89e6550f", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "55b83fbfcc09", + "fa2e7b92e1d5" ] } }, @@ -1825,23 +1931,23 @@ }, "state": "d846e6d21f1e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "e0a1028e48ba", + "fa2e7b92e1d5" ] } }, @@ -1859,23 +1965,23 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "976f63e51ba2", + "fa2e7b92e1d5" ] } }, @@ -1893,23 +1999,23 @@ }, "state": "680d3e2ff566", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "3d423b72401d", + "fa2e7b92e1d5" ] } }, @@ -1927,23 +2033,23 @@ }, "state": "cdb73ed7cd45", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "4a9746552893", + "fa2e7b92e1d5" ] } }, @@ -1961,23 +2067,23 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "976f63e51ba2", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addprreviewcommentreply-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addprreviewcommentreply-1.json index b272d57a702..8ec9073ed6d 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addprreviewcommentreply-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addprreviewcommentreply-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "85160836c5a5c9bae76aff82c834ceb908f9262a90facd6e055c289362664eaa", "platform": "darwin", @@ -52,19 +52,12 @@ "error": "outer refused", "mutating": false }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, - "0ea6faa5db5f": { + "02df4d991595": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -100,9 +93,19 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 1 }, - "11c3166b0343": { + "095ff0ea9c3e": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "1324001a72ab": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -153,7 +156,8 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 4 }, "14f66e7d5055": { "name": "github.addPRReviewCommentReply#1", @@ -327,21 +331,10 @@ "error": "", "mutating": false }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} - }, - "27f506c59cc7": { + "1b30471b40d2": { "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "inner refused", + "sent": 3 }, "32874acc8cbf": { "name": "github.addPRReviewCommentReply#1", @@ -385,6 +378,11 @@ } } }, + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 + }, "3a2a78903010": { "detail": { "assignees": ["octocat"], @@ -424,59 +422,6 @@ "error": "Cannot read properties of null (reading 'ok')", "mutating": false }, - "3b43982aa2b2": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "3f6d3565acae": { "detail": { "assignees": ["octocat"], @@ -594,6 +539,50 @@ "error": "", "mutating": true }, + "4a73d878a19a": { + "name": "projectRowDetailError", + "value": "[object Object]", + "sent": 3 + }, + "4c677c52a54e": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, "4dfa7307143d": { "detail": { "assignees": ["octocat"], @@ -639,12 +628,6 @@ "error": "", "mutating": false }, - "5d05e3b0fb72": { - "name": "itemReplyDrafts", - "value": { - "501": "a reply" - } - }, "66da313dd708": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -686,15 +669,7 @@ } } }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" - }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" - }, - "801d93296a5e": { + "6c4e721aaeba": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -736,7 +711,33 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 4 + }, + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 }, "82f7fb9e61e0": { "detail": { @@ -792,6 +793,11 @@ "error": "", "mutating": false }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, "874009380ba6": { "detail": { "assignees": ["octocat"], @@ -846,6 +852,21 @@ "error": "", "mutating": false }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "8bbb5efeadaf": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 4 + }, + "9138850642c5": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 3 + }, "97cb3dc78363": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -891,6 +912,54 @@ } } }, + "a7e90307fc74": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, "a8022b068249": { "detail": { "assignees": ["octocat"], @@ -1216,16 +1285,6 @@ "error": "transport failure", "mutating": false }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", - "value": { - "comment-2": "a reply" - } - }, "cd005a64924e": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -1271,15 +1330,77 @@ } } }, + "cf1e9d4fc0c3": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 3 + }, "cf954aa5f6bf": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 }, - "d61474a31f6c": { + "d515951be1e3": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 + }, + "d653fc1f4a8e": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -1324,12 +1445,23 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 3 + }, + "d72ea315da15": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 3 }, "d7467bca27a7": { "name": "github.project.deleteIssueCommentBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" }, + "d856c0886ca0": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 3 + }, "de7e00504f8b": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -1474,52 +1606,15 @@ "error": "", "mutating": false }, - "e87dc5b12fb8": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "e7d38ed5fb03": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 3 + }, + "eb612a2e1a87": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 3 }, "eb79a9b3682a": { "status": "fulfilled", @@ -1529,6 +1624,11 @@ "$rpc": "undefined" } }, + "f37a9bff665c": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 3 + }, "f59816cbb4a7": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -1627,13 +1727,17 @@ } } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 }, - "f9222c9368b1": { - "name": "projectRowDetailError", - "value": "[object Object]" + "ffcb3fbaf068": { + "name": "itemReplyDrafts", + "value": { + "501": "a reply" + }, + "sent": 4 } }, "recording": { @@ -1649,7 +1753,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b6b9452c2348", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0ea6faa5db5f", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "02df4d991595", "02839f22d2db"] } }, { @@ -1664,14 +1768,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff" ] } }, @@ -1688,18 +1792,18 @@ }, "state": "486aee98d14d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f37a9bff665c", + "73c3051352c2" ] } }, @@ -1716,19 +1820,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1746,24 +1850,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1780,18 +1884,18 @@ }, "state": "3f6d3565acae", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2" ] } }, @@ -1809,23 +1913,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "e7d38ed5fb03", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -1842,18 +1946,18 @@ }, "state": "3a2a78903010", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2" ] } }, @@ -1871,23 +1975,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "eb612a2e1a87", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -1904,19 +2008,19 @@ }, "state": "18a73ab69ff6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "d61474a31f6c", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "d653fc1f4a8e", + "73c3051352c2" ] } }, @@ -1934,24 +2038,24 @@ }, "state": "82f7fb9e61e0", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "d61474a31f6c", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "11c3166b0343", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "d653fc1f4a8e", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "1324001a72ab", + "fa2e7b92e1d5" ] } }, @@ -1968,18 +2072,18 @@ }, "state": "a8022b068249", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2" ] } }, @@ -1997,23 +2101,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "1b30471b40d2", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -2030,18 +2134,18 @@ }, "state": "446f11c345d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "4a73d878a19a", + "73c3051352c2" ] } }, @@ -2059,23 +2163,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f9222c9368b1", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "4a73d878a19a", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -2092,18 +2196,18 @@ }, "state": "0063efc2d666", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2" ] } }, @@ -2121,23 +2225,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "9138850642c5", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -2154,18 +2258,18 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -2183,23 +2287,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -2216,18 +2320,18 @@ }, "state": "bf65c598102e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2" ] } }, @@ -2245,23 +2349,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d856c0886ca0", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -2278,18 +2382,18 @@ }, "state": "c18900f349d0", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2" ] } }, @@ -2307,23 +2411,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "d72ea315da15", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } }, @@ -2340,18 +2444,18 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2" ] } }, @@ -2369,23 +2473,23 @@ }, "state": "4dfa7307143d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5d05e3b0fb72", - "801d93296a5e", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "347fa6adc9f3", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "ffcb3fbaf068", + "6c4e721aaeba", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.project.deleteissuecommentbyslug-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.project.deleteissuecommentbyslug-1.json index 2b61fb3c997..289558db71c 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.project.deleteissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.project.deleteissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "5bc59cfd0d951ae5193df5c49ce3618d9536be0bc8f8192a7b03000963c2001b", "platform": "darwin", @@ -13,7 +13,12 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02d41907e381": { + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 + }, + "02df4d991595": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -21,16 +26,6 @@ "body": "body", "checks": [], "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, { "author": "octocat", "body": "a thought", @@ -59,7 +54,8 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 1 }, "03b995b7d1e5": { "name": "github.project.deleteIssueCommentBySlug#1", @@ -98,57 +94,11 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, "095ff0ea9c3e": { "name": "github.addPRReviewCommentReply#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" }, - "0ea6faa5db5f": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, - "133d25b43e51": { + "0e2253940af4": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -180,12 +130,6 @@ "line": 12, "path": "src/index.ts", "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 } ], "files": [ @@ -209,7 +153,23 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 3 + }, + "0ef970845cc7": { + "name": "projectRowDetailError", + "value": "outer refused", + "sent": 1 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "152580ec9e5a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 1 }, "1689d9f91f40": { "name": "github.resolveReviewThread#1", @@ -249,22 +209,6 @@ } } }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} - }, - "27f506c59cc7": { - "name": "projectRowDetailError", - "value": "outer refused" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "2e2da1bbd7ed": { - "name": "projectRowDetailError", - "value": "Cannot read properties of undefined (reading 'ok')" - }, "3113ec0eb967": { "detail": { "assignees": ["octocat"], @@ -457,7 +401,17 @@ } } }, - "3b43982aa2b2": { + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 + }, + "4c09a53c8150": { + "name": "projectRowDetailError", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "4c677c52a54e": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -470,21 +424,6 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 } ], "files": [ @@ -508,15 +447,23 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 }, - "6b6431f01d00": { - "name": "projectRowDetailError", - "value": "Unknown method" + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "6fe1c7d73e4d": { - "name": "projectRowDetailError", - "value": "inner refused" + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 }, "77d646fb0b5b": { "name": "github.project.deleteIssueCommentBySlug#1", @@ -591,6 +538,16 @@ } } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, "80ed3cd5fa12": { "detail": { "assignees": ["octocat"], @@ -640,6 +597,16 @@ "error": "outer refused", "mutating": false }, + "8237b3a567bf": { + "name": "projectRowDetailError", + "value": "transport failure", + "sent": 1 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, "874009380ba6": { "detail": { "assignees": ["octocat"], @@ -694,6 +661,16 @@ "error": "", "mutating": false }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "8bbb5efeadaf": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 4 + }, "92b802be86b7": { "detail": { "assignees": ["octocat"], @@ -780,6 +757,59 @@ } } }, + "a7b76954b136": { + "name": "projectRowDetailError", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, + "a7e90307fc74": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, "b48fad669af7": { "detail": { "assignees": ["octocat"], @@ -938,16 +968,6 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", - "value": { - "comment-2": "a reply" - } - }, "cf092130ba77": { "name": "github.project.deleteIssueCommentBySlug#1", "args": [ @@ -985,13 +1005,21 @@ } } }, + "cf1e9d4fc0c3": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 3 + }, "cf954aa5f6bf": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" }, - "d330309fabb3": { - "name": "projectRowDetailError", - "value": "Cannot read properties of null (reading 'ok')" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 }, "d4042c0e5798": { "detail": { @@ -1042,6 +1070,60 @@ "error": "transport failure", "mutating": false }, + "d515951be1e3": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 + }, "d5c97305d438": { "detail": { "assignees": ["octocat"], @@ -1224,6 +1306,70 @@ } } }, + "e12f71818831": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 + }, "e2d6e04c1984": { "detail": { "assignees": ["octocat"], @@ -1374,7 +1520,15 @@ "error": "", "mutating": false }, - "e87dc5b12fb8": { + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ef2a66cf57a7": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -1384,18 +1538,19 @@ "comments": [ { "author": "octocat", - "body": "a thought", + "body": "please fix", "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, + "id": 501, + "isResolved": true, "line": 12, "path": "src/index.ts", "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" } ], "files": [ @@ -1419,15 +1574,13 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 }, - "eb79a9b3682a": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "$rpc": "undefined" - } + "eff724250cc7": { + "name": "projectRowDetailError", + "value": "inner refused", + "sent": 1 }, "f674d050fe62": { "name": "github.addPRReviewCommentReply#1", @@ -1482,62 +1635,10 @@ } } }, - "f776f578bd72": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 }, "fb3c6772749f": { "name": "github.project.deleteIssueCommentBySlug#1", @@ -1592,7 +1693,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b6b9452c2348", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0ea6faa5db5f", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "02df4d991595", "02839f22d2db"] } }, { @@ -1607,14 +1708,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff" ] } }, @@ -1631,19 +1732,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1661,24 +1762,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1692,7 +1793,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "31aef5de0b63", - "effects": ["c2a271fc5d97", "057a0b5a420b", "2e2da1bbd7ed", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "4c09a53c8150", "02839f22d2db"] } }, { @@ -1707,14 +1808,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -1731,19 +1832,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -1761,24 +1862,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "2e2da1bbd7ed", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "4c09a53c8150", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -1792,7 +1893,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "3202574ed4db", - "effects": ["c2a271fc5d97", "057a0b5a420b", "d330309fabb3", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "a7b76954b136", "02839f22d2db"] } }, { @@ -1807,14 +1908,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -1831,19 +1932,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -1861,24 +1962,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "d330309fabb3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "a7b76954b136", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -1892,7 +1993,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b6b9452c2348", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0ea6faa5db5f", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "02df4d991595", "02839f22d2db"] } }, { @@ -1907,14 +2008,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff" ] } }, @@ -1931,19 +2032,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1961,24 +2062,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1992,7 +2093,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "e2d6e04c1984", - "effects": ["c2a271fc5d97", "057a0b5a420b", "6fe1c7d73e4d", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "eff724250cc7", "02839f22d2db"] } }, { @@ -2007,14 +2108,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -2031,19 +2132,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -2061,24 +2162,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -2092,7 +2193,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "e2d6e04c1984", - "effects": ["c2a271fc5d97", "057a0b5a420b", "6fe1c7d73e4d", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "eff724250cc7", "02839f22d2db"] } }, { @@ -2107,14 +2208,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -2131,19 +2232,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -2161,24 +2262,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6fe1c7d73e4d", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "eff724250cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -2192,7 +2293,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "80ed3cd5fa12", - "effects": ["c2a271fc5d97", "057a0b5a420b", "27f506c59cc7", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "0ef970845cc7", "02839f22d2db"] } }, { @@ -2207,14 +2308,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -2231,19 +2332,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -2261,24 +2362,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "0ef970845cc7", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -2292,7 +2393,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b48fad669af7", - "effects": ["c2a271fc5d97", "057a0b5a420b", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "85f150b2df81", "02839f22d2db"] } }, { @@ -2307,14 +2408,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -2331,19 +2432,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -2361,24 +2462,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -2392,7 +2493,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "92b802be86b7", - "effects": ["c2a271fc5d97", "057a0b5a420b", "6b6431f01d00", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "152580ec9e5a", "02839f22d2db"] } }, { @@ -2407,14 +2508,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -2431,19 +2532,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -2461,24 +2562,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "152580ec9e5a", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -2492,7 +2593,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "d4042c0e5798", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0924615699bf", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "8237b3a567bf", "02839f22d2db"] } }, { @@ -2507,14 +2608,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -2531,19 +2632,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -2561,24 +2662,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "8237b3a567bf", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } }, @@ -2592,7 +2693,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b48fad669af7", - "effects": ["c2a271fc5d97", "057a0b5a420b", "057a0b5a420b", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "85f150b2df81", "02839f22d2db"] } }, { @@ -2607,14 +2708,14 @@ }, "state": "e5dc2384d2f9", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff" ] } }, @@ -2631,19 +2732,19 @@ }, "state": "3113ec0eb967", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2" ] } }, @@ -2661,24 +2762,24 @@ }, "state": "d5c97305d438", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "02d41907e381", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "f776f578bd72", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "133d25b43e51", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "85f150b2df81", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "ef2a66cf57a7", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "0e2253940af4", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "e12f71818831", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.resolvereviewthread-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.resolvereviewthread-1.json index 680320d6d5b..72feb83b1bf 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.resolvereviewthread-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.resolvereviewthread-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "0d8c240718b3911464a6fc486114d67cd6f60aa295cd0886ff755b77d5036014", "platform": "darwin", @@ -52,9 +52,49 @@ "error": "outer refused", "mutating": false }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 + }, + "02df4d991595": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 }, "08c323b47aa3": { "name": "github.resolveReviewThread#1", @@ -96,14 +136,15 @@ } } }, - "0924615699bf": { - "name": "projectRowDetailError", - "value": "transport failure" - }, "095ff0ea9c3e": { "name": "github.addPRReviewCommentReply#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" }, + "0d3abde11044": { + "name": "projectRowDetailError", + "value": "Connection closed", + "sent": 2 + }, "0e7a55514902": { "name": "github.resolveReviewThread#1", "args": [ @@ -145,43 +186,10 @@ } } }, - "0ea6faa5db5f": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "10db8439521b": { "name": "github.resolveReviewThread#1", @@ -224,6 +232,11 @@ } } }, + "14a659a554e8": { + "name": "projectRowDetailError", + "value": "Failed to resolve thread", + "sent": 2 + }, "1689d9f91f40": { "name": "github.resolveReviewThread#1", "args": [ @@ -300,74 +313,20 @@ } } }, - "1f2dca44fac3": { + "347fa6adc9f3": { "name": "projectRowDetailError", - "value": "Failed to resolve thread" + "value": "", + "sent": 3 }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} - }, - "27f506c59cc7": { + "466f8db9d238": { "name": "projectRowDetailError", - "value": "outer refused" + "value": "outer refused", + "sent": 2 }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "3b43982aa2b2": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "46b4c26d709a": { + "name": "projectRowDetailError", + "value": "Unknown method", + "sent": 2 }, "486aee98d14d": { "detail": { @@ -408,6 +367,45 @@ "error": "", "mutating": true }, + "4c677c52a54e": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, "5aaa87a861a5": { "name": "github.resolveReviewThread#1", "args": [ @@ -451,9 +449,40 @@ } } }, - "6b6431f01d00": { + "674a78fb6dfb": { "name": "projectRowDetailError", - "value": "Unknown method" + "value": "transport failure", + "sent": 2 + }, + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, "863f823011a7": { "name": "github.resolveReviewThread#1", @@ -546,6 +575,64 @@ "error": "", "mutating": false }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "8bbb5efeadaf": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 4 + }, + "a7e90307fc74": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, "b44e99aa86c4": { "detail": { "assignees": ["octocat"], @@ -738,10 +825,6 @@ "error": "transport failure", "mutating": false }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "c803a3716a6b": { "name": "github.resolveReviewThread#1", "args": [ @@ -782,16 +865,76 @@ } } }, - "c9ebd6cbea9b": { + "cf1e9d4fc0c3": { "name": "itemReplyDrafts", "value": { "comment-2": "a reply" - } + }, + "sent": 3 }, "cf954aa5f6bf": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d515951be1e3": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 + }, "d7467bca27a7": { "name": "github.project.deleteIssueCommentBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" @@ -936,53 +1079,6 @@ "error": "", "mutating": false }, - "e87dc5b12fb8": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1161,9 +1257,10 @@ } } }, - "f871d643501c": { - "name": "projectRowDetailError", - "value": "Connection closed" + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 } }, "recording": { @@ -1179,7 +1276,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b6b9452c2348", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0ea6faa5db5f", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "02df4d991595", "02839f22d2db"] } }, { @@ -1194,14 +1291,14 @@ }, "state": "486aee98d14d", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "f871d643501c", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "0d3abde11044", + "6f4f9198e5ff" ] } }, @@ -1217,14 +1314,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff" ] } }, @@ -1241,19 +1338,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1271,24 +1368,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1304,14 +1401,14 @@ }, "state": "b44e99aa86c4", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff" ] } }, @@ -1328,19 +1425,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1358,24 +1455,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1391,14 +1488,14 @@ }, "state": "b44e99aa86c4", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff" ] } }, @@ -1415,19 +1512,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1445,24 +1542,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1478,14 +1575,14 @@ }, "state": "b44e99aa86c4", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff" ] } }, @@ -1502,19 +1599,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1532,24 +1629,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1565,14 +1662,14 @@ }, "state": "b44e99aa86c4", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff" ] } }, @@ -1589,19 +1686,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1619,24 +1716,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1652,14 +1749,14 @@ }, "state": "b44e99aa86c4", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff" ] } }, @@ -1676,19 +1773,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1706,24 +1803,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "1f2dca44fac3", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "14a659a554e8", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1739,14 +1836,14 @@ }, "state": "0063efc2d666", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff" ] } }, @@ -1763,19 +1860,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1793,24 +1890,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "27f506c59cc7", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "466f8db9d238", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1826,14 +1923,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -1850,19 +1947,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1880,24 +1977,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -1913,14 +2010,14 @@ }, "state": "bf65c598102e", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff" ] } }, @@ -1937,19 +2034,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -1967,24 +2064,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "6b6431f01d00", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "46b4c26d709a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -2000,14 +2097,14 @@ }, "state": "c18900f349d0", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff" ] } }, @@ -2024,19 +2121,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -2054,24 +2151,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0924615699bf", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "674a78fb6dfb", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } }, @@ -2087,14 +2184,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff" ] } }, @@ -2111,19 +2208,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -2141,24 +2238,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "057a0b5a420b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "8a1d11133692", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.countworkitems-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.countworkitems-1.json index da8ea6ed645..e96f43303c0 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.countworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.countworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "e9bdad78cf60e3dd931eab8810d011c6e0066f9a336a206f8f9ca62621b21fee", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0182b1872be2": { - "name": "selectedLinearWorkspaceId", - "value": "linear-workspace" - }, "088609fba40a": { "name": "github.countWorkItems#1", "args": [ @@ -119,6 +115,11 @@ } } }, + "0faba633b165": { + "name": "selectedLinearWorkspaceId", + "value": "linear-workspace", + "sent": 1 + }, "1c97db0775ed": { "status": "fulfilled", "startedAt": 0, @@ -208,13 +209,15 @@ } } }, - "50941ff8a9e3": { - "name": "linearConnected", - "value": true - }, - "50f6d11bf12d": { - "name": "selectedLinearTeamIds", - "value": ["team-1"] + "552cce3107ea": { + "name": "linearWorkspaces", + "value": [ + { + "id": "linear-workspace", + "name": "Workspace" + } + ], + "sent": 1 }, "5de521b4f498": { "name": "github.countWorkItems#1", @@ -269,6 +272,11 @@ } ] }, + "69d74e72326c": { + "name": "linearConnected", + "value": true, + "sent": 1 + }, "739fba9f78c5": { "name": "github.countWorkItems#1", "args": [ @@ -399,7 +407,7 @@ } } }, - "89bbb50f70ec": { + "8e1216596b9c": { "name": "linearTeams", "value": [ { @@ -408,7 +416,8 @@ "name": "Engineering", "workspaceId": "linear-workspace" } - ] + ], + "sent": 2 }, "a6bfe3e8ec00": { "name": "settings.update#1", @@ -485,15 +494,6 @@ "name": "settings.update#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" }, - "ba929d11c91c": { - "name": "linearWorkspaces", - "value": [ - { - "id": "linear-workspace", - "name": "Workspace" - } - ] - }, "bed15481b61b": { "name": "github.countWorkItems#1", "args": [ @@ -530,6 +530,11 @@ "name": "linear.listTeams#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" }, + "c1c057249f99": { + "name": "selectedLinearTeamIds", + "value": ["team-1"], + "sent": 2 + }, "c1e3ae5492e1": { "name": "github.countWorkItems#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" @@ -697,11 +702,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -717,11 +722,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -738,11 +743,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -772,11 +777,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -806,11 +811,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -840,11 +845,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -874,11 +879,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -908,11 +913,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -942,11 +947,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -976,11 +981,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1010,11 +1015,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1044,11 +1049,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1078,11 +1083,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1112,11 +1117,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.listworkitems-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.listworkitems-1.json index cd376830106..e70cd9cf5ee 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.listworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a5704c6849de9a45564c8738076ec8c0307754a5acc2c039880fe436771e68b3", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0182b1872be2": { - "name": "selectedLinearWorkspaceId", - "value": "linear-workspace" - }, "01d2e29deceb": { "name": "github.listWorkItems#1", "args": [ @@ -124,6 +120,11 @@ } } }, + "0faba633b165": { + "name": "selectedLinearWorkspaceId", + "value": "linear-workspace", + "sent": 1 + }, "2aa7f595f31c": { "name": "github.listWorkItems#1", "args": [ @@ -244,13 +245,15 @@ } } }, - "50941ff8a9e3": { - "name": "linearConnected", - "value": true - }, - "50f6d11bf12d": { - "name": "selectedLinearTeamIds", - "value": ["team-1"] + "552cce3107ea": { + "name": "linearWorkspaces", + "value": [ + { + "id": "linear-workspace", + "name": "Workspace" + } + ], + "sent": 1 }, "66292427efc0": { "name": "github.listWorkItems#1", @@ -312,6 +315,11 @@ } ] }, + "69d74e72326c": { + "name": "linearConnected", + "value": true, + "sent": 1 + }, "737f20de5cc0": { "status": "fulfilled", "startedAt": 0, @@ -457,7 +465,7 @@ } } }, - "89bbb50f70ec": { + "8e1216596b9c": { "name": "linearTeams", "value": [ { @@ -466,7 +474,8 @@ "name": "Engineering", "workspaceId": "linear-workspace" } - ] + ], + "sent": 2 }, "a6bfe3e8ec00": { "name": "settings.update#1", @@ -543,15 +552,6 @@ "name": "settings.update#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" }, - "ba929d11c91c": { - "name": "linearWorkspaces", - "value": [ - { - "id": "linear-workspace", - "name": "Workspace" - } - ] - }, "bec611c1195e": { "name": "github.listWorkItems#1", "args": [ @@ -592,6 +592,11 @@ "name": "linear.listTeams#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" }, + "c1c057249f99": { + "name": "selectedLinearTeamIds", + "value": ["team-1"], + "sent": 2 + }, "c1e3ae5492e1": { "name": "github.countWorkItems#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" @@ -755,11 +760,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -775,11 +780,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -796,11 +801,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -830,11 +835,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -851,11 +856,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -885,11 +890,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -906,11 +911,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -940,11 +945,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -961,11 +966,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -995,11 +1000,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1016,11 +1021,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1050,11 +1055,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1071,11 +1076,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1105,11 +1110,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1126,11 +1131,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1160,11 +1165,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1181,11 +1186,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1215,11 +1220,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1236,11 +1241,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1270,11 +1275,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1291,11 +1296,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1325,11 +1330,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1346,11 +1351,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1380,11 +1385,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.listteams-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.listteams-1.json index dc702f4b82d..4d7d4d708ce 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.listteams-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.listteams-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "e518040cbd40e3cc8c22e0b70b6de1087386936f75ed2f65f6e7b4fcdc344ba2", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0182b1872be2": { - "name": "selectedLinearWorkspaceId", - "value": "linear-workspace" - }, "0a6ad30d39df": { "connected": true, "selectedTeams": [], @@ -97,11 +93,10 @@ } } }, - "11dbbb2ef04c": { - "name": "linearTeams", - "value": { - "error": "refused" - } + "0faba633b165": { + "name": "selectedLinearWorkspaceId", + "value": "linear-workspace", + "sent": 1 }, "1a92facf7fe2": { "name": "linear.listTeams#1", @@ -210,6 +205,16 @@ "settledAt": 0, "value": 4 }, + "47dd57bc8f58": { + "name": "linearTeams", + "value": { + "error": { + "message": "inner refused" + }, + "ok": false + }, + "sent": 2 + }, "49c5fd241816": { "status": "fulfilled", "startedAt": 0, @@ -250,14 +255,6 @@ } } }, - "50941ff8a9e3": { - "name": "linearConnected", - "value": true - }, - "50f6d11bf12d": { - "name": "selectedLinearTeamIds", - "value": ["team-1"] - }, "5366d6506b21": { "name": "linear.listTeams#1", "args": [ @@ -323,6 +320,23 @@ } } }, + "552cce3107ea": { + "name": "linearWorkspaces", + "value": [ + { + "id": "linear-workspace", + "name": "Workspace" + } + ], + "sent": 1 + }, + "56537bf8a7ad": { + "name": "linearTeams", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, "67b5ebc67646": { "connected": true, "selectedTeams": ["team-1"], @@ -342,14 +356,10 @@ } ] }, - "6e94ef6ce810": { - "name": "linearTeams", - "value": { - "error": { - "message": "inner refused" - }, - "ok": false - } + "69d74e72326c": { + "name": "linearConnected", + "value": true, + "sent": 1 }, "775d7e2fb99d": { "name": "linear.status#1", @@ -564,7 +574,7 @@ } } }, - "89bbb50f70ec": { + "8e1216596b9c": { "name": "linearTeams", "value": [ { @@ -573,7 +583,8 @@ "name": "Engineering", "workspaceId": "linear-workspace" } - ] + ], + "sent": 2 }, "93e7019b0698": { "status": "rejected", @@ -585,6 +596,13 @@ "isRpcDeliveryUnknown": false } }, + "95592fc22995": { + "name": "linearTeams", + "value": { + "$rpc": "undefined" + }, + "sent": 2 + }, "9b27648fc6b9": { "status": "rejected", "startedAt": 0, @@ -704,15 +722,6 @@ "isRpcDeliveryUnknown": false } }, - "ba929d11c91c": { - "name": "linearWorkspaces", - "value": [ - { - "id": "linear-workspace", - "name": "Workspace" - } - ] - }, "bd5c2292b89a": { "connected": true, "selectedTeams": [], @@ -729,6 +738,11 @@ "name": "linear.listTeams#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" }, + "c1c057249f99": { + "name": "selectedLinearTeamIds", + "value": ["team-1"], + "sent": 2 + }, "c1e3ae5492e1": { "name": "github.countWorkItems#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" @@ -778,13 +792,6 @@ } } }, - "d74b0f3fb507": { - "name": "linearTeams", - "value": { - "error": "inner refused", - "ok": false - } - }, "d8aa5fae89ce": { "connected": true, "selectedTeams": [], @@ -799,22 +806,18 @@ } ] }, - "daf57f2538da": { + "d9ae9e9a0660": { "name": "linearTeams", "value": { - "$rpc": "null" - } + "error": "inner refused", + "ok": false + }, + "sent": 2 }, "e19509ebde55": { "name": "linear.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "e91ea8177e6e": { - "name": "linearTeams", - "value": { - "$rpc": "undefined" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -865,6 +868,13 @@ "message": "", "isRpcDeliveryUnknown": false } + }, + "fccc4f6aae53": { + "name": "linearTeams", + "value": { + "error": "refused" + }, + "sent": 2 } }, "recording": { @@ -881,11 +891,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -901,11 +911,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -922,11 +932,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -956,11 +966,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -974,7 +984,7 @@ "linear-context-0": "93e7019b0698" }, "state": "d8aa5fae89ce", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "e91ea8177e6e"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "95592fc22995"] } }, { @@ -988,7 +998,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "d8aa5fae89ce", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "e91ea8177e6e"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "95592fc22995"] } }, { @@ -1003,7 +1013,7 @@ "github-page-2": "49c5fd241816" }, "state": "d8aa5fae89ce", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "e91ea8177e6e"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "95592fc22995"] } }, { @@ -1031,7 +1041,7 @@ "github-count-3": "413e4f429e18" }, "state": "d8aa5fae89ce", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "e91ea8177e6e"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "95592fc22995"] } }, { @@ -1044,7 +1054,7 @@ "linear-context-0": "335785e8af30" }, "state": "a591435f3ef1", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "daf57f2538da"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "56537bf8a7ad"] } }, { @@ -1058,7 +1068,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "a591435f3ef1", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "daf57f2538da"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "56537bf8a7ad"] } }, { @@ -1073,7 +1083,7 @@ "github-page-2": "49c5fd241816" }, "state": "a591435f3ef1", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "daf57f2538da"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "56537bf8a7ad"] } }, { @@ -1101,7 +1111,7 @@ "github-count-3": "413e4f429e18" }, "state": "a591435f3ef1", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "daf57f2538da"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "56537bf8a7ad"] } }, { @@ -1114,7 +1124,7 @@ "linear-context-0": "9b27648fc6b9" }, "state": "0a6ad30d39df", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "11dbbb2ef04c"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "fccc4f6aae53"] } }, { @@ -1128,7 +1138,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "0a6ad30d39df", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "11dbbb2ef04c"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "fccc4f6aae53"] } }, { @@ -1143,7 +1153,7 @@ "github-page-2": "49c5fd241816" }, "state": "0a6ad30d39df", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "11dbbb2ef04c"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "fccc4f6aae53"] } }, { @@ -1171,7 +1181,7 @@ "github-count-3": "413e4f429e18" }, "state": "0a6ad30d39df", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "11dbbb2ef04c"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "fccc4f6aae53"] } }, { @@ -1184,7 +1194,7 @@ "linear-context-0": "9b27648fc6b9" }, "state": "7ec901b0100d", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "d74b0f3fb507"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "d9ae9e9a0660"] } }, { @@ -1198,7 +1208,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "7ec901b0100d", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "d74b0f3fb507"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "d9ae9e9a0660"] } }, { @@ -1213,7 +1223,7 @@ "github-page-2": "49c5fd241816" }, "state": "7ec901b0100d", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "d74b0f3fb507"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "d9ae9e9a0660"] } }, { @@ -1241,7 +1251,7 @@ "github-count-3": "413e4f429e18" }, "state": "7ec901b0100d", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "d74b0f3fb507"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "d9ae9e9a0660"] } }, { @@ -1254,7 +1264,7 @@ "linear-context-0": "9b27648fc6b9" }, "state": "4079678c7804", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "6e94ef6ce810"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "47dd57bc8f58"] } }, { @@ -1268,7 +1278,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "4079678c7804", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "6e94ef6ce810"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "47dd57bc8f58"] } }, { @@ -1283,7 +1293,7 @@ "github-page-2": "49c5fd241816" }, "state": "4079678c7804", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "6e94ef6ce810"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "47dd57bc8f58"] } }, { @@ -1311,7 +1321,7 @@ "github-count-3": "413e4f429e18" }, "state": "4079678c7804", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2", "6e94ef6ce810"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165", "47dd57bc8f58"] } }, { @@ -1324,7 +1334,7 @@ "linear-context-0": "32a7c0ae7918" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1338,7 +1348,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1353,7 +1363,7 @@ "github-page-2": "49c5fd241816" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1381,7 +1391,7 @@ "github-count-3": "413e4f429e18" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1394,7 +1404,7 @@ "linear-context-0": "f3b516f62081" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1408,7 +1418,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1423,7 +1433,7 @@ "github-page-2": "49c5fd241816" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1451,7 +1461,7 @@ "github-count-3": "413e4f429e18" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1464,7 +1474,7 @@ "linear-context-0": "b948e8307e81" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1478,7 +1488,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1493,7 +1503,7 @@ "github-page-2": "49c5fd241816" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1521,7 +1531,7 @@ "github-count-3": "413e4f429e18" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1534,7 +1544,7 @@ "linear-context-0": "a947768bc0ed" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1548,7 +1558,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1563,7 +1573,7 @@ "github-page-2": "49c5fd241816" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1591,7 +1601,7 @@ "github-count-3": "413e4f429e18" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1604,7 +1614,7 @@ "linear-context-0": "c7584e82c72f" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1618,7 +1628,7 @@ "persist-teams-1": "eb79a9b3682a" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1633,7 +1643,7 @@ "github-page-2": "49c5fd241816" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } }, { @@ -1661,7 +1671,7 @@ "github-count-3": "413e4f429e18" }, "state": "bd5c2292b89a", - "effects": ["50941ff8a9e3", "ba929d11c91c", "0182b1872be2"] + "effects": ["69d74e72326c", "552cce3107ea", "0faba633b165"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.status-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.status-1.json index 931f8c97ebc..a3cefccdc39 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.status-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "f02acd2ed6319b8cb674c04b41a1e96c50e53123a8914790acc8af5410d63f98", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0182b1872be2": { - "name": "selectedLinearWorkspaceId", - "value": "linear-workspace" + "00598fc4e64c": { + "name": "linearTeams", + "value": [], + "sent": 1 }, "0577812165ed": { "connected": false, @@ -58,9 +59,10 @@ } } }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "0faba633b165": { + "name": "selectedLinearWorkspaceId", + "value": "linear-workspace", + "sent": 1 }, "14b751028813": { "name": "github.countWorkItems#1", @@ -125,10 +127,6 @@ } } }, - "16f398d67267": { - "name": "linearConnected", - "value": false - }, "1fc96e936096": { "name": "settings.update#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" @@ -180,6 +178,11 @@ } } }, + "3edb27aad08d": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 1 + }, "413e4f429e18": { "status": "fulfilled", "startedAt": 0, @@ -257,16 +260,6 @@ } } }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", - "value": { - "$rpc": "null" - } - }, - "50941ff8a9e3": { - "name": "linearConnected", - "value": true - }, "50edb1eae337": { "name": "linear.status#1", "args": [ @@ -301,10 +294,6 @@ } } }, - "50f6d11bf12d": { - "name": "selectedLinearTeamIds", - "value": ["team-1"] - }, "545c802fdcb4": { "status": "rejected", "startedAt": 0, @@ -315,9 +304,15 @@ "isRpcDeliveryUnknown": false } }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] + "552cce3107ea": { + "name": "linearWorkspaces", + "value": [ + { + "id": "linear-workspace", + "name": "Workspace" + } + ], + "sent": 1 }, "578a67ab5d44": { "name": "linear.status#1", @@ -374,6 +369,11 @@ } ] }, + "69d74e72326c": { + "name": "linearConnected", + "value": true, + "sent": 1 + }, "71fb4049425f": { "name": "linear.status#1", "args": [ @@ -532,7 +532,7 @@ } } }, - "89bbb50f70ec": { + "8e1216596b9c": { "name": "linearTeams", "value": [ { @@ -541,7 +541,8 @@ "name": "Engineering", "workspaceId": "linear-workspace" } - ] + ], + "sent": 2 }, "92d390fd43e3": { "name": "linear.status#1", @@ -576,6 +577,11 @@ } } }, + "978c959625ec": { + "name": "linearConnected", + "value": false, + "sent": 1 + }, "a6bfe3e8ec00": { "name": "settings.update#1", "args": [ @@ -657,14 +663,15 @@ } } }, + "ae35286647d6": { + "name": "linearWorkspaces", + "value": [], + "sent": 1 + }, "b13993ed8b00": { "name": "settings.update#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -675,14 +682,12 @@ "isRpcDeliveryUnknown": false } }, - "ba929d11c91c": { - "name": "linearWorkspaces", - "value": [ - { - "id": "linear-workspace", - "name": "Workspace" - } - ] + "bd7cad199eca": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "bfba52c22ce2": { "name": "linear.listTeams#1", @@ -722,6 +727,11 @@ } } }, + "c1c057249f99": { + "name": "selectedLinearTeamIds", + "value": ["team-1"], + "sent": 2 + }, "c1e3ae5492e1": { "name": "github.countWorkItems#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" @@ -914,11 +924,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -934,11 +944,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -955,11 +965,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -989,11 +999,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1124,11 +1134,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1144,11 +1154,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1165,11 +1175,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1187,11 +1197,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1206,11 +1216,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1226,11 +1236,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1247,11 +1257,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1269,11 +1279,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1288,11 +1298,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1308,11 +1318,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1329,11 +1339,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, @@ -1351,11 +1361,11 @@ }, "state": "0577812165ed", "effects": [ - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1" + "978c959625ec", + "ae35286647d6", + "00598fc4e64c", + "3edb27aad08d", + "bd7cad199eca" ] } }, diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-settings.update-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-settings.update-1.json index 03d90c09153..37728777f83 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-settings.update-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-settings.update-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "2b3006bfe1e7f3040b86ccc698e58ae19ae1aa11389aee2ec2a8f2dfdb0270f4", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "0182b1872be2": { - "name": "selectedLinearWorkspaceId", - "value": "linear-workspace" - }, "0f9c77bd54ee": { "name": "github.countWorkItems#1", "args": [ @@ -83,6 +79,11 @@ } } }, + "0faba633b165": { + "name": "selectedLinearWorkspaceId", + "value": "linear-workspace", + "sent": 1 + }, "1063fa5ae613": { "name": "settings.update#1", "args": [ @@ -229,13 +230,15 @@ } } }, - "50941ff8a9e3": { - "name": "linearConnected", - "value": true - }, - "50f6d11bf12d": { - "name": "selectedLinearTeamIds", - "value": ["team-1"] + "552cce3107ea": { + "name": "linearWorkspaces", + "value": [ + { + "id": "linear-workspace", + "name": "Workspace" + } + ], + "sent": 1 }, "67b5ebc67646": { "connected": true, @@ -256,6 +259,11 @@ } ] }, + "69d74e72326c": { + "name": "linearConnected", + "value": true, + "sent": 1 + }, "775d7e2fb99d": { "name": "linear.status#1", "args": [ @@ -351,7 +359,7 @@ } } }, - "89bbb50f70ec": { + "8e1216596b9c": { "name": "linearTeams", "value": [ { @@ -360,7 +368,8 @@ "name": "Engineering", "workspaceId": "linear-workspace" } - ] + ], + "sent": 2 }, "a4eafb8182c6": { "name": "settings.update#1", @@ -502,19 +511,15 @@ } } }, - "ba929d11c91c": { - "name": "linearWorkspaces", - "value": [ - { - "id": "linear-workspace", - "name": "Workspace" - } - ] - }, "bfba52c22ce2": { "name": "linear.listTeams#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" }, + "c1c057249f99": { + "name": "selectedLinearTeamIds", + "value": ["team-1"], + "sent": 2 + }, "c1e3ae5492e1": { "name": "github.countWorkItems#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" @@ -681,11 +686,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -701,11 +706,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -722,11 +727,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -756,11 +761,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -776,11 +781,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -797,11 +802,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -831,11 +836,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -851,11 +856,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -872,11 +877,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -906,11 +911,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -926,11 +931,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -947,11 +952,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -981,11 +986,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1001,11 +1006,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1022,11 +1027,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1056,11 +1061,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1076,11 +1081,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1097,11 +1102,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1131,11 +1136,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1151,11 +1156,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1172,11 +1177,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1206,11 +1211,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1226,11 +1231,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1247,11 +1252,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1281,11 +1286,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1301,11 +1306,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1322,11 +1327,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1356,11 +1361,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1376,11 +1381,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1397,11 +1402,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1431,11 +1436,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1451,11 +1456,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1472,11 +1477,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -1506,11 +1511,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-github.listworkitems-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-github.listworkitems-1.json index 6875875e624..2ed0051f607 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-github.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-github.listworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "ea5c32c4dbb67aae1ebaf809a28104d52d189e5153d9b28285f4d8a6d78753ea", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-gitlab.listworkitems-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-gitlab.listworkitems-1.json index d65f1fbbbbc..7997179a191 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-gitlab.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-gitlab.listworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "541a282829d3aa5d6b66eeba06e783368f397178ff0d2bdf3e87bccdc62b690f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.listissues-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.listissues-1.json index 06933fe2011..0ea4a32efc3 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.listissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.listissues-1.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "767044526344237daee0a3f981a10615fbb9ebc3f45c2f6f41f9b8b16d362082", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.searchissues-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.searchissues-1.json index 9569a54568b..ec24868d714 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.searchissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.searchissues-1.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "40a8ea6a916d4266bd80148e40fd817bbe80cefa02465b88d37c42cebed44f22", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-repo.searchrefs-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-repo.searchrefs-1.json index 7c45b0eee6e..b00d5f52b15 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-repo.searchrefs-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-repo.searchrefs-1.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "aa06630cd902fd5dde5181bddd38f5478ae5b48044a3105b090728158aa9a621", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-github.createissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-github.createissue-1.json index edbc12d368c..b1b0f58928a 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-github.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-github.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "014040846f649f3c6ca1175b610ed1b51bae3001e7de103549d7ee1a511a2506", "platform": "darwin", @@ -125,9 +125,10 @@ "name": "github.createIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "19bc740e746a": { "name": "github.createIssue#1", @@ -173,14 +174,6 @@ "$rpc": "null" } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, "449fcef41ecc": { "composer": true, "creating": false, @@ -189,9 +182,10 @@ "$rpc": "null" } }, - "4a66cf72bc8f": { + "46bbfadb0481": { "name": "creatingTask", - "value": false + "value": true, + "sent": 0 }, "56ac6af35c46": { "composer": true, @@ -261,13 +255,20 @@ "updatedAt": "2026-01-01T00:00:00.000Z" } }, - "5b8e3a96030e": { + "6652745ed1c6": { "name": "createBody", - "value": "" + "value": "", + "sent": 1 }, - "791f05938c43": { - "name": "creatingTask", - "value": true + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 + }, + "7d901d60a01a": { + "name": "error", + "value": "[object Object]", + "sent": 1 }, "7db197060e39": { "composer": true, @@ -277,13 +278,32 @@ "$rpc": "null" } }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "871b62dd230b": { - "name": "createTitle", - "value": "" + "873de7fc7ff8": { + "name": "actionItem", + "value": { + "key": "github:repo-1:issue:11", + "provider": "github", + "source": { + "author": { + "$rpc": "null" + }, + "id": "issue:11", + "labels": [], + "number": 11, + "repoId": "repo-1", + "repoName": "Repo", + "state": "open", + "title": "A new task", + "type": "issue", + "updatedAt": "2026-01-01T00:00:00.000Z", + "url": "https://github.com/owner/repo/issues/11" + }, + "status": "Open", + "subtitle": "Repo #11", + "title": "A new task", + "updatedAt": "2026-01-01T00:00:00.000Z" + }, + "sent": 1 }, "907da244f26c": { "name": "github.createIssue#1", @@ -318,10 +338,6 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, "98e33157a9f2": { "name": "repo.update#1", "args": [ @@ -358,43 +374,20 @@ } } }, - "a10650cc438b": { - "name": "actionItem", - "value": { - "key": "github:repo-1:issue:11", - "provider": "github", - "source": { - "author": { - "$rpc": "null" - }, - "id": "issue:11", - "labels": [], - "number": 11, - "repoId": "repo-1", - "repoName": "Repo", - "state": "open", - "title": "A new task", - "type": "issue", - "updatedAt": "2026-01-01T00:00:00.000Z", - "url": "https://github.com/owner/repo/issues/11" - }, - "status": "Open", - "subtitle": "Repo #11", - "title": "A new task", - "updatedAt": "2026-01-01T00:00:00.000Z" - } - }, - "ae5be7de2632": { + "9e263f5e91be": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "", + "sent": 0 }, - "ba65a7abe43b": { + "b53c339a3854": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" + "c0c0f9a6037e": { + "name": "createTitle", + "value": "", + "sent": 1 }, "c140f66eca23": { "composer": true, @@ -408,6 +401,16 @@ "name": "repo.update#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}" }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, "cccb7ee799b9": { "name": "github.createIssue#1", "args": [ @@ -454,6 +457,11 @@ "$rpc": "null" } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d6c61589920d": { "name": "github.createIssue#1", "args": [ @@ -539,10 +547,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, "ed6dd7582b18": { "name": "github.createIssue#1", "args": [ @@ -622,6 +626,21 @@ } } }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, + "fc7f792d6e89": { + "name": "creatingTask", + "value": false, + "sent": 1 + }, "fdd487d7c0f5": { "composer": true, "creating": false, @@ -645,13 +664,13 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } }, @@ -667,14 +686,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -688,7 +707,7 @@ "create-0": "eb79a9b3682a" }, "state": "56ac6af35c46", - "effects": ["791f05938c43", "82cd71d524c8", "ae5be7de2632", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "c939abf83c6c", "fc7f792d6e89"] } }, { @@ -703,11 +722,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "ae5be7de2632", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "c939abf83c6c", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -721,7 +740,7 @@ "create-0": "eb79a9b3682a" }, "state": "f3ba4c9e02fb", - "effects": ["791f05938c43", "82cd71d524c8", "2d711d96f190", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "faf0249fca3c", "fc7f792d6e89"] } }, { @@ -736,11 +755,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "2d711d96f190", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "faf0249fca3c", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -755,12 +774,12 @@ }, "state": "df5721b34b16", "effects": [ - "791f05938c43", - "82cd71d524c8", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } }, @@ -776,13 +795,13 @@ }, "state": "df5721b34b16", "effects": [ - "791f05938c43", - "82cd71d524c8", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -796,7 +815,7 @@ "create-0": "eb79a9b3682a" }, "state": "fdd487d7c0f5", - "effects": ["791f05938c43", "82cd71d524c8", "c008e85e2d06", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "c4f585980acf", "fc7f792d6e89"] } }, { @@ -811,11 +830,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "c008e85e2d06", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "c4f585980acf", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -829,7 +848,7 @@ "create-0": "eb79a9b3682a" }, "state": "2924a6b4c745", - "effects": ["791f05938c43", "82cd71d524c8", "ecc1b4e0914f", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "7d901d60a01a", "fc7f792d6e89"] } }, { @@ -844,11 +863,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "ecc1b4e0914f", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "7d901d60a01a", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -862,7 +881,7 @@ "create-0": "eb79a9b3682a" }, "state": "449fcef41ecc", - "effects": ["791f05938c43", "82cd71d524c8", "ba65a7abe43b", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "f791567b212f", "fc7f792d6e89"] } }, { @@ -877,11 +896,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "ba65a7abe43b", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "f791567b212f", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -895,7 +914,7 @@ "create-0": "eb79a9b3682a" }, "state": "7db197060e39", - "effects": ["791f05938c43", "82cd71d524c8", "82cd71d524c8", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "d48d5c49486c", "fc7f792d6e89"] } }, { @@ -910,11 +929,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "82cd71d524c8", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "d48d5c49486c", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -928,7 +947,7 @@ "create-0": "eb79a9b3682a" }, "state": "d24a112e43bf", - "effects": ["791f05938c43", "82cd71d524c8", "186f44bc465a", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "b53c339a3854", "fc7f792d6e89"] } }, { @@ -943,11 +962,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "186f44bc465a", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "b53c339a3854", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -961,7 +980,7 @@ "create-0": "eb79a9b3682a" }, "state": "c140f66eca23", - "effects": ["791f05938c43", "82cd71d524c8", "945ea389c1ef", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "198ac889ae28", "fc7f792d6e89"] } }, { @@ -976,11 +995,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "945ea389c1ef", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "198ac889ae28", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -994,7 +1013,7 @@ "create-0": "eb79a9b3682a" }, "state": "7db197060e39", - "effects": ["791f05938c43", "82cd71d524c8", "82cd71d524c8", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "d48d5c49486c", "fc7f792d6e89"] } }, { @@ -1009,11 +1028,11 @@ }, "state": "7db197060e39", "effects": [ - "791f05938c43", - "82cd71d524c8", - "82cd71d524c8", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "d48d5c49486c", + "fc7f792d6e89", + "d48d5c49486c" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-repo.update-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-repo.update-1.json index 1cb78401bed..026cc96e2cc 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-repo.update-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-repo.update-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "9efe74e5a1b0d92f674e6044edfd534693c15b0a153bcb2c0e283a6cd53fa61b", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "000516aa083b": { + "name": "error", + "value": "outer refused", + "sent": 2 + }, "06e1643ed0af": { "name": "github.createIssue#1", "args": [ @@ -90,17 +95,15 @@ "name": "github.createIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "4a66cf72bc8f": { + "46bbfadb0481": { "name": "creatingTask", - "value": false + "value": true, + "sent": 0 + }, + "52d25e1f3035": { + "name": "error", + "value": "Connection closed", + "sent": 2 }, "5ab5b62983be": { "composer": false, @@ -130,9 +133,15 @@ "updatedAt": "2026-01-01T00:00:00.000Z" } }, - "5b8e3a96030e": { + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 + }, + "6652745ed1c6": { "name": "createBody", - "value": "" + "value": "", + "sent": 1 }, "686238f6a684": { "name": "repo.update#1", @@ -168,9 +177,10 @@ } } }, - "791f05938c43": { - "name": "creatingTask", - "value": true + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 }, "7e23e14f7a3d": { "name": "repo.update#1", @@ -243,10 +253,6 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "8690f0cd8ed3": { "name": "repo.update#1", "args": [ @@ -283,13 +289,32 @@ } } }, - "871b62dd230b": { - "name": "createTitle", - "value": "" - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "873de7fc7ff8": { + "name": "actionItem", + "value": { + "key": "github:repo-1:issue:11", + "provider": "github", + "source": { + "author": { + "$rpc": "null" + }, + "id": "issue:11", + "labels": [], + "number": 11, + "repoId": "repo-1", + "repoName": "Repo", + "state": "open", + "title": "A new task", + "type": "issue", + "updatedAt": "2026-01-01T00:00:00.000Z", + "url": "https://github.com/owner/repo/issues/11" + }, + "status": "Open", + "subtitle": "Repo #11", + "title": "A new task", + "updatedAt": "2026-01-01T00:00:00.000Z" + }, + "sent": 1 }, "9546ab40f414": { "name": "repo.update#1", @@ -401,35 +426,10 @@ } } }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" - }, - "a10650cc438b": { - "name": "actionItem", - "value": { - "key": "github:repo-1:issue:11", - "provider": "github", - "source": { - "author": { - "$rpc": "null" - }, - "id": "issue:11", - "labels": [], - "number": 11, - "repoId": "repo-1", - "repoName": "Repo", - "state": "open", - "title": "A new task", - "type": "issue", - "updatedAt": "2026-01-01T00:00:00.000Z", - "url": "https://github.com/owner/repo/issues/11" - }, - "status": "Open", - "subtitle": "Repo #11", - "title": "A new task", - "updatedAt": "2026-01-01T00:00:00.000Z" - } + "value": "", + "sent": 0 }, "a795619b2c90": { "name": "repo.update#1", @@ -470,9 +470,15 @@ } } }, - "ba65a7abe43b": { + "b57ded8a3ea3": { "name": "error", - "value": "outer refused" + "value": "", + "sent": 2 + }, + "c0c0f9a6037e": { + "name": "createTitle", + "value": "", + "sent": 1 }, "c41296ee02f7": { "name": "repo.update#1", @@ -539,6 +545,11 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d7dccc1f4a58": { "name": "repo.update#1", "args": [ @@ -673,6 +684,16 @@ "value": { "$rpc": "undefined" } + }, + "f1cfc2d1bcc1": { + "name": "error", + "value": "Unknown method", + "sent": 2 + }, + "fc7f792d6e89": { + "name": "creatingTask", + "value": false, + "sent": 1 } }, "recording": { @@ -689,13 +710,13 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } }, @@ -711,15 +732,15 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8", - "9f82f10075a3" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c", + "52d25e1f3035" ] } }, @@ -735,14 +756,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -758,14 +779,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -781,14 +802,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -804,14 +825,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -827,14 +848,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -850,14 +871,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } }, @@ -873,15 +894,15 @@ }, "state": "c7d97f6f2602", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8", - "ba65a7abe43b" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c", + "000516aa083b" ] } }, @@ -897,15 +918,15 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c", + "b57ded8a3ea3" ] } }, @@ -921,15 +942,15 @@ }, "state": "e590ae2d0a40", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8", - "186f44bc465a" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c", + "f1cfc2d1bcc1" ] } }, @@ -945,15 +966,15 @@ }, "state": "d98907f962cc", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8", - "945ea389c1ef" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c", + "5c2874ad80bc" ] } }, @@ -969,15 +990,15 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c", + "b57ded8a3ea3" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-gitlab-gitlab.createissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-gitlab-gitlab.createissue-1.json index 651d4398699..e53df12bf02 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-gitlab-gitlab.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-gitlab-gitlab.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "217a3da50a54c4cbe19a68835ecfa038eae5b350430f0b8fd0a616bb5bdfe32d", "platform": "darwin", @@ -46,32 +46,6 @@ } } }, - "0357d0481a9f": { - "name": "actionItem", - "value": { - "key": "gitlab:repo-1:issue:6", - "provider": "gitlab", - "source": { - "author": { - "$rpc": "null" - }, - "id": "issue:6", - "labels": [], - "number": 6, - "repoId": "repo-1", - "repoName": "Repo", - "state": "opened", - "title": "A new task", - "type": "issue", - "updatedAt": "2026-01-01T00:00:00.000Z", - "url": "https://gitlab.com/group/project/-/issues/6" - }, - "status": "Open", - "subtitle": "Repo #6", - "title": "A new task", - "updatedAt": "2026-01-01T00:00:00.000Z" - } - }, "0d4bd84d9af8": { "name": "gitlab.createIssue#1", "args": [ @@ -141,10 +115,6 @@ } } }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" - }, "18a89f207b7d": { "name": "gitlab.createIssue#1", "args": [ @@ -181,6 +151,11 @@ } } }, + "198ac889ae28": { + "name": "error", + "value": "transport failure", + "sent": 1 + }, "2924a6b4c745": { "composer": true, "creating": false, @@ -189,10 +164,6 @@ "$rpc": "null" } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, "30a7797f8856": { "name": "gitlab.createIssue#1", "args": [ @@ -228,10 +199,6 @@ } } }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, "449fcef41ecc": { "composer": true, "creating": false, @@ -240,9 +207,10 @@ "$rpc": "null" } }, - "4a66cf72bc8f": { + "46bbfadb0481": { "name": "creatingTask", - "value": false + "value": true, + "sent": 0 }, "4ba7d57a0081": { "name": "gitlab.createIssue#1", @@ -312,9 +280,10 @@ "updatedAt": "2026-01-01T00:00:00.000Z" } }, - "5b8e3a96030e": { + "6652745ed1c6": { "name": "createBody", - "value": "" + "value": "", + "sent": 1 }, "76d47cfabc48": { "name": "gitlab.createIssue#1", @@ -351,9 +320,15 @@ } } }, - "791f05938c43": { - "name": "creatingTask", - "value": true + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 + }, + "7d901d60a01a": { + "name": "error", + "value": "[object Object]", + "sent": 1 }, "7db197060e39": { "composer": true, @@ -363,25 +338,15 @@ "$rpc": "null" } }, - "82cd71d524c8": { + "9e263f5e91be": { "name": "error", - "value": "" + "value": "", + "sent": 0 }, - "871b62dd230b": { - "name": "createTitle", - "value": "" - }, - "945ea389c1ef": { + "b53c339a3854": { "name": "error", - "value": "transport failure" - }, - "ae5be7de2632": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 }, "be19567941b0": { "name": "gitlab.createIssue#1", @@ -419,9 +384,10 @@ } } }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" + "c0c0f9a6037e": { + "name": "createTitle", + "value": "", + "sent": 1 }, "c140f66eca23": { "composer": true, @@ -431,6 +397,16 @@ "$rpc": "null" } }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, "c9c89070b638": { "name": "gitlab.createIssue#1", "args": [ @@ -512,6 +488,11 @@ } } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "df5721b34b16": { "composer": false, "creating": false, @@ -528,10 +509,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, "f3a202ca5b7c": { "name": "gitlab.createIssue#1", "args": [ @@ -578,10 +555,52 @@ "$rpc": "null" } }, + "f4790c11c55e": { + "name": "actionItem", + "value": { + "key": "gitlab:repo-1:issue:6", + "provider": "gitlab", + "source": { + "author": { + "$rpc": "null" + }, + "id": "issue:6", + "labels": [], + "number": 6, + "repoId": "repo-1", + "repoName": "Repo", + "state": "opened", + "title": "A new task", + "type": "issue", + "updatedAt": "2026-01-01T00:00:00.000Z", + "url": "https://gitlab.com/group/project/-/issues/6" + }, + "status": "Open", + "subtitle": "Repo #6", + "title": "A new task", + "updatedAt": "2026-01-01T00:00:00.000Z" + }, + "sent": 1 + }, "f5bc6cfd470a": { "name": "gitlab.createIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, + "fc7f792d6e89": { + "name": "creatingTask", + "value": false, + "sent": 1 + }, "fdd487d7c0f5": { "composer": true, "creating": false, @@ -605,13 +624,13 @@ }, "state": "580f3724d37b", "effects": [ - "791f05938c43", - "82cd71d524c8", - "0357d0481a9f", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "f4790c11c55e", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } }, @@ -625,7 +644,7 @@ "create-0": "eb79a9b3682a" }, "state": "56ac6af35c46", - "effects": ["791f05938c43", "82cd71d524c8", "ae5be7de2632", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "c939abf83c6c", "fc7f792d6e89"] } }, { @@ -638,7 +657,7 @@ "create-0": "eb79a9b3682a" }, "state": "f3ba4c9e02fb", - "effects": ["791f05938c43", "82cd71d524c8", "2d711d96f190", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "faf0249fca3c", "fc7f792d6e89"] } }, { @@ -652,12 +671,12 @@ }, "state": "df5721b34b16", "effects": [ - "791f05938c43", - "82cd71d524c8", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } }, @@ -671,7 +690,7 @@ "create-0": "eb79a9b3682a" }, "state": "fdd487d7c0f5", - "effects": ["791f05938c43", "82cd71d524c8", "c008e85e2d06", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "c4f585980acf", "fc7f792d6e89"] } }, { @@ -684,7 +703,7 @@ "create-0": "eb79a9b3682a" }, "state": "2924a6b4c745", - "effects": ["791f05938c43", "82cd71d524c8", "ecc1b4e0914f", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "7d901d60a01a", "fc7f792d6e89"] } }, { @@ -697,7 +716,7 @@ "create-0": "eb79a9b3682a" }, "state": "449fcef41ecc", - "effects": ["791f05938c43", "82cd71d524c8", "ba65a7abe43b", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "f791567b212f", "fc7f792d6e89"] } }, { @@ -710,7 +729,7 @@ "create-0": "eb79a9b3682a" }, "state": "7db197060e39", - "effects": ["791f05938c43", "82cd71d524c8", "82cd71d524c8", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "d48d5c49486c", "fc7f792d6e89"] } }, { @@ -723,7 +742,7 @@ "create-0": "eb79a9b3682a" }, "state": "d24a112e43bf", - "effects": ["791f05938c43", "82cd71d524c8", "186f44bc465a", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "b53c339a3854", "fc7f792d6e89"] } }, { @@ -736,7 +755,7 @@ "create-0": "eb79a9b3682a" }, "state": "c140f66eca23", - "effects": ["791f05938c43", "82cd71d524c8", "945ea389c1ef", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "198ac889ae28", "fc7f792d6e89"] } }, { @@ -749,7 +768,7 @@ "create-0": "eb79a9b3682a" }, "state": "7db197060e39", - "effects": ["791f05938c43", "82cd71d524c8", "82cd71d524c8", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "d48d5c49486c", "fc7f792d6e89"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-linear-linear.createissue-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-linear-linear.createissue-1.json index 243c7c524d3..b330f1c7970 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-linear-linear.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-linear-linear.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "cb4c10cc6401e5b68340bd1fa09381c973348b6e0c7ffef563cde92080c57a15", "platform": "darwin", @@ -124,9 +124,10 @@ } } }, - "186f44bc465a": { + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "233381f915af": { "composer": true, @@ -144,14 +145,6 @@ "$rpc": "null" } }, - "2d711d96f190": { - "name": "error", - "value": "Cannot read properties of null (reading 'ok')" - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, "449fcef41ecc": { "composer": true, "creating": false, @@ -160,9 +153,10 @@ "$rpc": "null" } }, - "4a66cf72bc8f": { + "46bbfadb0481": { "name": "creatingTask", - "value": false + "value": true, + "sent": 0 }, "4ed047d2b01f": { "name": "linear.createIssue#1", @@ -246,10 +240,6 @@ "$rpc": "null" } }, - "5b8e3a96030e": { - "name": "createBody", - "value": "" - }, "5d4c402302e6": { "name": "linear.createIssue#1", "args": [ @@ -365,13 +355,20 @@ "updatedAt": "2026-01-01T00:00:00.000Z" } }, - "791f05938c43": { - "name": "creatingTask", - "value": true + "6652745ed1c6": { + "name": "createBody", + "value": "", + "sent": 1 }, - "79d6e6aa0201": { + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 + }, + "7d901d60a01a": { "name": "error", - "value": "refused" + "value": "[object Object]", + "sent": 1 }, "7db197060e39": { "composer": true, @@ -381,50 +378,10 @@ "$rpc": "null" } }, - "82cd71d524c8": { + "9e263f5e91be": { "name": "error", - "value": "" - }, - "871b62dd230b": { - "name": "createTitle", - "value": "" - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, - "9f7828134fd2": { - "name": "actionItem", - "value": { - "key": "linear:linear-workspace:issue-3", - "provider": "linear", - "source": { - "description": "a body", - "id": "issue-3", - "identifier": "ENG-3", - "labels": [], - "priority": 0, - "state": { - "color": "#3b82f6", - "name": "Open", - "type": "unstarted" - }, - "team": { - "id": "team-1", - "workspaceId": "linear-workspace", - "workspaceName": "Workspace" - }, - "title": "A sub-issue", - "updatedAt": "2026-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace", - "workspaceName": "Workspace" - }, - "status": "Open", - "subtitle": "ENG-3 · undefined", - "title": "A sub-issue", - "updatedAt": "2026-01-01T00:00:00.000Z" - } + "value": "", + "sent": 0 }, "a85b3f376be7": { "name": "linear.createIssue#1", @@ -459,17 +416,49 @@ } } }, - "ae5be7de2632": { + "b53c339a3854": { "name": "error", - "value": "Cannot read properties of undefined (reading 'ok')" + "value": "Unknown method", + "sent": 1 }, - "ba65a7abe43b": { - "name": "error", - "value": "outer refused" + "b83a4bfe6154": { + "name": "actionItem", + "value": { + "key": "linear:linear-workspace:issue-3", + "provider": "linear", + "source": { + "description": "a body", + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 0, + "state": { + "color": "#3b82f6", + "name": "Open", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "workspaceId": "linear-workspace", + "workspaceName": "Workspace" + }, + "title": "A sub-issue", + "updatedAt": "2026-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace", + "workspaceName": "Workspace" + }, + "status": "Open", + "subtitle": "ENG-3 · undefined", + "title": "A sub-issue", + "updatedAt": "2026-01-01T00:00:00.000Z" + }, + "sent": 1 }, - "c008e85e2d06": { - "name": "error", - "value": "inner refused" + "c0c0f9a6037e": { + "name": "createTitle", + "value": "", + "sent": 1 }, "c140f66eca23": { "composer": true, @@ -513,6 +502,21 @@ } } }, + "c4f585980acf": { + "name": "error", + "value": "inner refused", + "sent": 1 + }, + "c939abf83c6c": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'ok')", + "sent": 1 + }, + "c9f4aa70819c": { + "name": "error", + "value": "refused", + "sent": 1 + }, "cba26069f155": { "name": "linear.createIssue#1", "args": [ @@ -557,6 +561,11 @@ "$rpc": "null" } }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d9c763f911ff": { "name": "linear.createIssue#1", "args": [ @@ -601,10 +610,6 @@ "$rpc": "undefined" } }, - "ecc1b4e0914f": { - "name": "error", - "value": "[object Object]" - }, "f3ba4c9e02fb": { "composer": true, "creating": false, @@ -613,6 +618,21 @@ "$rpc": "null" } }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, + "faf0249fca3c": { + "name": "error", + "value": "Cannot read properties of null (reading 'ok')", + "sent": 1 + }, + "fc7f792d6e89": { + "name": "creatingTask", + "value": false, + "sent": 1 + }, "fdd487d7c0f5": { "composer": true, "creating": false, @@ -636,13 +656,13 @@ }, "state": "61b2cb7e4313", "effects": [ - "791f05938c43", - "82cd71d524c8", - "9f7828134fd2", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "b83a4bfe6154", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } }, @@ -656,7 +676,7 @@ "create-0": "eb79a9b3682a" }, "state": "56ac6af35c46", - "effects": ["791f05938c43", "82cd71d524c8", "ae5be7de2632", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "c939abf83c6c", "fc7f792d6e89"] } }, { @@ -669,7 +689,7 @@ "create-0": "eb79a9b3682a" }, "state": "f3ba4c9e02fb", - "effects": ["791f05938c43", "82cd71d524c8", "2d711d96f190", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "faf0249fca3c", "fc7f792d6e89"] } }, { @@ -682,7 +702,7 @@ "create-0": "eb79a9b3682a" }, "state": "233381f915af", - "effects": ["791f05938c43", "82cd71d524c8", "79d6e6aa0201", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "c9f4aa70819c", "fc7f792d6e89"] } }, { @@ -695,7 +715,7 @@ "create-0": "eb79a9b3682a" }, "state": "fdd487d7c0f5", - "effects": ["791f05938c43", "82cd71d524c8", "c008e85e2d06", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "c4f585980acf", "fc7f792d6e89"] } }, { @@ -708,7 +728,7 @@ "create-0": "eb79a9b3682a" }, "state": "2924a6b4c745", - "effects": ["791f05938c43", "82cd71d524c8", "ecc1b4e0914f", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "7d901d60a01a", "fc7f792d6e89"] } }, { @@ -721,7 +741,7 @@ "create-0": "eb79a9b3682a" }, "state": "449fcef41ecc", - "effects": ["791f05938c43", "82cd71d524c8", "ba65a7abe43b", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "f791567b212f", "fc7f792d6e89"] } }, { @@ -734,7 +754,7 @@ "create-0": "eb79a9b3682a" }, "state": "7db197060e39", - "effects": ["791f05938c43", "82cd71d524c8", "82cd71d524c8", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "d48d5c49486c", "fc7f792d6e89"] } }, { @@ -747,7 +767,7 @@ "create-0": "eb79a9b3682a" }, "state": "d24a112e43bf", - "effects": ["791f05938c43", "82cd71d524c8", "186f44bc465a", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "b53c339a3854", "fc7f792d6e89"] } }, { @@ -760,7 +780,7 @@ "create-0": "eb79a9b3682a" }, "state": "c140f66eca23", - "effects": ["791f05938c43", "82cd71d524c8", "945ea389c1ef", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "198ac889ae28", "fc7f792d6e89"] } }, { @@ -773,7 +793,7 @@ "create-0": "eb79a9b3682a" }, "state": "7db197060e39", - "effects": ["791f05938c43", "82cd71d524c8", "82cd71d524c8", "4a66cf72bc8f"] + "effects": ["46bbfadb0481", "9e263f5e91be", "d48d5c49486c", "fc7f792d6e89"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-items-gitlab.listworkitems-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-items-gitlab.listworkitems-1.json index fcc3181ecaf..1d79579640a 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-items-gitlab.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-items-gitlab.listworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-items", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "038221907a57f5bb25338f9b07a744dbac3ea0a7ea2ba43281f171912f45a586", "platform": "darwin", @@ -13,13 +13,25 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1225d8d68e35": { + "00249d1f38ac": { "name": "error", - "value": "Cannot read properties of undefined (reading 'error')" + "value": "Cannot read properties of undefined (reading 'error')", + "sent": 1 }, - "186f44bc465a": { + "0d5d9243a0de": { + "name": "loading", + "value": false, + "sent": 1 + }, + "113ccfa73078": { + "name": "refreshing", + "value": false, + "sent": 1 + }, + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "1aa0fd318b4d": { "name": "gitlab.listWorkItems#1", @@ -71,10 +83,6 @@ } } }, - "2970edd05ca0": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'map')" - }, "2af5bdc42011": { "error": "", "items": [ @@ -142,10 +150,6 @@ } } }, - "2e036e81354d": { - "name": "loading", - "value": true - }, "40cf838c0930": { "error": "transport failure", "items": [], @@ -243,6 +247,35 @@ "loading": false, "refreshing": false }, + "6376c568d60e": { + "name": "items", + "value": [ + { + "key": "gitlab:repo-1:issue:4", + "provider": "gitlab", + "source": { + "author": { + "$rpc": "null" + }, + "id": "issue:4", + "labels": [], + "number": 4, + "repoId": "repo-1", + "repoName": "Repo", + "state": "opened", + "title": "A GitLab issue", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "status": "Open", + "subtitle": "Repo #4", + "title": "A GitLab issue", + "updatedAt": "2020-01-01T00:00:00.000Z" + } + ], + "sent": 1 + }, "7004b7a6500d": { "name": "gitlab.listWorkItems#1", "args": [ @@ -289,13 +322,10 @@ "loading": false, "refreshing": false }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "8936cd17eb1c": { - "name": "items", - "value": [] + "840a8ad61602": { + "name": "loading", + "value": true, + "sent": 0 }, "8f49ffb9283f": { "name": "gitlab.listWorkItems#1", @@ -339,45 +369,10 @@ } } }, - "945ea389c1ef": { + "9e263f5e91be": { "name": "error", - "value": "transport failure" - }, - "9a4d6bf316ca": { - "name": "items", - "value": [ - { - "key": "gitlab:repo-1:issue:4", - "provider": "gitlab", - "source": { - "author": { - "$rpc": "null" - }, - "id": "issue:4", - "labels": [], - "number": 4, - "repoId": "repo-1", - "repoName": "Repo", - "state": "opened", - "title": "A GitLab issue", - "type": "issue", - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "" - }, - "status": "Open", - "subtitle": "Repo #4", - "title": "A GitLab issue", - "updatedAt": "2020-01-01T00:00:00.000Z" - } - ] - }, - "9be6d46dc57d": { - "name": "error", - "value": "Cannot read properties of null (reading 'error')" - }, - "9fd1c1fdaba4": { - "name": "loading", - "value": false + "value": "", + "sent": 0 }, "a1227cfc5f6f": { "name": "gitlab.listWorkItems#1", @@ -416,13 +411,20 @@ } } }, - "b8cb056c2851": { - "name": "refreshing", - "value": false - }, - "ba65a7abe43b": { + "ab719c7d6745": { "name": "error", - "value": "outer refused" + "value": "Cannot read properties of null (reading 'error')", + "sent": 1 + }, + "b53c339a3854": { + "name": "error", + "value": "Unknown method", + "sent": 1 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d619074f1bad": { "name": "gitlab.listWorkItems#1", @@ -553,6 +555,16 @@ } } }, + "e14451e7d576": { + "name": "items", + "value": [], + "sent": 1 + }, + "e63d2b109969": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'map')", + "sent": 1 + }, "ea8f8e0b6ecc": { "name": "gitlab.listWorkItems#1", "args": [ @@ -606,6 +618,11 @@ "loading": false, "refreshing": false }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 + }, "f8405106f8fb": { "error": "Cannot read properties of undefined (reading 'map')", "items": [], @@ -627,12 +644,12 @@ }, "state": "2af5bdc42011", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "9a4d6bf316ca", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "6376c568d60e", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -647,12 +664,12 @@ }, "state": "4913662b5375", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "1225d8d68e35", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "00249d1f38ac", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -667,12 +684,12 @@ }, "state": "4f894b5fafff", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "9be6d46dc57d", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "ab719c7d6745", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -687,12 +704,12 @@ }, "state": "f8405106f8fb", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "2970edd05ca0", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "e63d2b109969", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -707,12 +724,12 @@ }, "state": "f8405106f8fb", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "2970edd05ca0", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "e63d2b109969", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -727,12 +744,12 @@ }, "state": "f8405106f8fb", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "2970edd05ca0", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "e63d2b109969", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -747,12 +764,12 @@ }, "state": "820944a2683d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "ba65a7abe43b", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "f791567b212f", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -767,12 +784,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -787,12 +804,12 @@ }, "state": "f11183466799", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "186f44bc465a", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "b53c339a3854", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -807,12 +824,12 @@ }, "state": "40cf838c0930", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "945ea389c1ef", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "198ac889ae28", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -827,12 +844,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-todos-gitlab.todos-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-todos-gitlab.todos-1.json index a637af784d4..1f5c2ef262e 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-todos-gitlab.todos-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-todos-gitlab.todos-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-todos", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "8b0b64a6a0ef6e1cc6baa28e632fd3394a6c8b825f0835daa9634fa41c8685aa", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "186f44bc465a": { - "name": "error", - "value": "Unknown method" + "0d5d9243a0de": { + "name": "loading", + "value": false, + "sent": 1 + }, + "113ccfa73078": { + "name": "refreshing", + "value": false, + "sent": 1 }, "18d425aa3cf4": { "name": "gitlab.todos#1", @@ -61,6 +67,11 @@ } } }, + "198ac889ae28": { + "name": "error", + "value": "transport failure", + "sent": 1 + }, "1e54d4dce85b": { "error": "", "items": [], @@ -100,10 +111,6 @@ } } }, - "2e036e81354d": { - "name": "loading", - "value": true - }, "40cf838c0930": { "error": "transport failure", "items": [], @@ -245,9 +252,10 @@ } } }, - "74471be9bd73": { + "6c44b5a8c3d7": { "name": "error", - "value": "(response.result ?? []).map is not a function" + "value": "(response.result ?? []).map is not a function", + "sent": 1 }, "7568bcd9554a": { "name": "gitlab.todos#1", @@ -292,21 +300,15 @@ "loading": false, "refreshing": false }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "8936cd17eb1c": { - "name": "items", - "value": [] - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" - }, - "9fd1c1fdaba4": { + "840a8ad61602": { "name": "loading", - "value": false + "value": true, + "sent": 0 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "a83ece45b46c": { "name": "gitlab.todos#1", @@ -342,13 +344,20 @@ } } }, - "b8cb056c2851": { - "name": "refreshing", - "value": false - }, - "ba65a7abe43b": { + "b53c339a3854": { "name": "error", - "value": "outer refused" + "value": "Unknown method", + "sent": 1 + }, + "d42aae748963": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'replace')", + "sent": 1 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d906463f9ef4": { "name": "gitlab.todos#1", @@ -411,6 +420,11 @@ } } }, + "e14451e7d576": { + "name": "items", + "value": [], + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -465,9 +479,10 @@ } } }, - "f70e6aaf0d8e": { + "f791567b212f": { "name": "error", - "value": "Cannot read properties of undefined (reading 'replace')" + "value": "outer refused", + "sent": 1 }, "f7da7040be7b": { "error": "Cannot read properties of undefined (reading 'replace')", @@ -490,12 +505,12 @@ }, "state": "f7da7040be7b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "f70e6aaf0d8e", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d42aae748963", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -510,11 +525,11 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -529,11 +544,11 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -548,12 +563,12 @@ }, "state": "f0df2712eb78", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "74471be9bd73", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "6c44b5a8c3d7", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -568,12 +583,12 @@ }, "state": "f0df2712eb78", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "74471be9bd73", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "6c44b5a8c3d7", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -588,12 +603,12 @@ }, "state": "f0df2712eb78", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "74471be9bd73", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "6c44b5a8c3d7", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -608,12 +623,12 @@ }, "state": "820944a2683d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "ba65a7abe43b", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "f791567b212f", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -628,12 +643,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -648,12 +663,12 @@ }, "state": "f11183466799", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "186f44bc465a", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "b53c339a3854", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -668,12 +683,12 @@ }, "state": "40cf838c0930", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "945ea389c1ef", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "198ac889ae28", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -688,12 +703,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.listissues-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.listissues-1.json index 4438851a468..7b6c95cd443 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.listissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.listissues-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "39ef28af17e4d3774b42bba1555606770667bc9010692fb1a4492413a940c0a0", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0268db3b80ae": { + "name": "error", + "value": "Unexpected Linear tasks response", + "sent": 1 + }, "0702970f0d11": { "name": "linear.listIssues#1", "args": [ @@ -82,6 +87,11 @@ } } }, + "0d5d9243a0de": { + "name": "loading", + "value": false, + "sent": 1 + }, "0eeb8394ee6b": { "name": "linear.listIssues#1", "args": [ @@ -117,9 +127,15 @@ } } }, - "186f44bc465a": { + "113ccfa73078": { + "name": "refreshing", + "value": false, + "sent": 1 + }, + "198ac889ae28": { "name": "error", - "value": "Unknown method" + "value": "transport failure", + "sent": 1 }, "1baae818a7fc": { "name": "linear.listIssues#1", @@ -205,10 +221,6 @@ "loading": false, "refreshing": false }, - "2e036e81354d": { - "name": "loading", - "value": true - }, "3edde845aed1": { "error": "", "items": [ @@ -377,6 +389,11 @@ "name": "linear.listIssues#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" }, + "6143a28f5226": { + "name": "loading", + "value": true, + "sent": 1 + }, "6aef1122a560": { "name": "linear.listIssues#1", "args": [ @@ -410,7 +427,7 @@ } } }, - "8080efdd19df": { + "6fafebd34f71": { "name": "items", "value": [ { @@ -442,7 +459,8 @@ "title": "A found issue", "updatedAt": "2020-01-01T00:00:00.000Z" } - ] + ], + "sent": 2 }, "820944a2683d": { "error": "outer refused", @@ -450,9 +468,10 @@ "loading": false, "refreshing": false }, - "82cd71d524c8": { - "name": "error", - "value": "" + "840a8ad61602": { + "name": "loading", + "value": true, + "sent": 0 }, "86aeb72f48eb": { "name": "linear.listIssues#1", @@ -515,13 +534,10 @@ "name": "linear.searchIssues#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" }, - "8936cd17eb1c": { - "name": "items", - "value": [] - }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "92c28468d7be": { + "name": "refreshing", + "value": false, + "sent": 2 }, "94f44b229d7d": { "error": "", @@ -559,51 +575,15 @@ "loading": false, "refreshing": false }, - "9fd1c1fdaba4": { - "name": "loading", - "value": false - }, - "a807b2cced19": { - "name": "items", - "value": [ - { - "key": "linear:linear-workspace:issue-1", - "provider": "linear", - "source": { - "description": "", - "id": "issue-1", - "identifier": "ENG-1", - "labels": [], - "priority": 0, - "state": { - "color": "#000", - "name": "Todo", - "type": "unstarted" - }, - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering" - }, - "title": "A Linear issue", - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace" - }, - "status": "Todo", - "subtitle": "ENG-1 · Engineering", - "title": "A Linear issue", - "updatedAt": "2020-01-01T00:00:00.000Z" - } - ] - }, - "b8cb056c2851": { - "name": "refreshing", - "value": false - }, - "ba65a7abe43b": { + "9e263f5e91be": { "name": "error", - "value": "outer refused" + "value": "", + "sent": 0 + }, + "b53c339a3854": { + "name": "error", + "value": "Unknown method", + "sent": 1 }, "c18939a47320": { "name": "linear.listIssues#1", @@ -643,6 +623,11 @@ } } }, + "c9db7514f5c5": { + "name": "loading", + "value": false, + "sent": 2 + }, "d38da15695fc": { "name": "linear.listIssues#1", "args": [ @@ -679,9 +664,50 @@ } } }, - "e9bfd0a82b94": { + "d48d5c49486c": { "name": "error", - "value": "Unexpected Linear tasks response" + "value": "", + "sent": 1 + }, + "e14451e7d576": { + "name": "items", + "value": [], + "sent": 1 + }, + "e1bd9a521877": { + "name": "items", + "value": [ + { + "key": "linear:linear-workspace:issue-1", + "provider": "linear", + "source": { + "description": "", + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A Linear issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + }, + "status": "Todo", + "subtitle": "ENG-1 · Engineering", + "title": "A Linear issue", + "updatedAt": "2020-01-01T00:00:00.000Z" + } + ], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -696,6 +722,11 @@ "items": [], "loading": false, "refreshing": false + }, + "f791567b212f": { + "name": "error", + "value": "outer refused", + "sent": 1 } }, "recording": { @@ -712,11 +743,11 @@ }, "state": "94f44b229d7d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -732,11 +763,11 @@ }, "state": "94f44b229d7d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -753,16 +784,16 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -777,12 +808,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -798,12 +829,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -820,17 +851,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -845,12 +876,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -866,12 +897,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -888,17 +919,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -913,12 +944,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -934,12 +965,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -956,17 +987,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -981,12 +1012,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1002,12 +1033,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1024,17 +1055,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1049,12 +1080,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1070,12 +1101,12 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1092,17 +1123,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "0268db3b80ae", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1117,12 +1148,12 @@ }, "state": "820944a2683d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "ba65a7abe43b", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "f791567b212f", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1138,12 +1169,12 @@ }, "state": "820944a2683d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "ba65a7abe43b", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "f791567b212f", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1160,17 +1191,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "ba65a7abe43b", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "f791567b212f", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1185,12 +1216,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1206,12 +1237,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1228,17 +1259,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1253,12 +1284,12 @@ }, "state": "f11183466799", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "186f44bc465a", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "b53c339a3854", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1274,12 +1305,12 @@ }, "state": "f11183466799", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "186f44bc465a", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "b53c339a3854", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1296,17 +1327,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "186f44bc465a", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "b53c339a3854", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1321,12 +1352,12 @@ }, "state": "40cf838c0930", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "945ea389c1ef", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "198ac889ae28", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1342,12 +1373,12 @@ }, "state": "40cf838c0930", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "945ea389c1ef", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "198ac889ae28", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1364,17 +1395,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "945ea389c1ef", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "198ac889ae28", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1389,12 +1420,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1410,12 +1441,12 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -1432,17 +1463,17 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.searchissues-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.searchissues-1.json index 6c4f0c7899d..37a61562cfb 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.searchissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.searchissues-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "c589700af145f58c37292dafb891b3b7d50302fd4ec044155c044ccd48f79c74", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "000516aa083b": { + "name": "error", + "value": "outer refused", + "sent": 2 + }, "0914e9c666b1": { "name": "linear.searchIssues#1", "args": [ @@ -79,6 +84,11 @@ } } }, + "0d5d9243a0de": { + "name": "loading", + "value": false, + "sent": 1 + }, "0f4daa370be3": { "name": "linear.searchIssues#1", "args": [ @@ -115,6 +125,11 @@ } } }, + "113ccfa73078": { + "name": "refreshing", + "value": false, + "sent": 1 + }, "14b2c61abd6c": { "name": "linear.searchIssues#1", "args": [ @@ -151,10 +166,6 @@ } } }, - "186f44bc465a": { - "name": "error", - "value": "Unknown method" - }, "1e54d4dce85b": { "error": "", "items": [], @@ -203,9 +214,10 @@ "loading": false, "refreshing": false }, - "2e036e81354d": { - "name": "loading", - "value": true + "3133fa990514": { + "name": "items", + "value": [], + "sent": 2 }, "3edde845aed1": { "error": "", @@ -249,6 +261,11 @@ "loading": false, "refreshing": false }, + "52d25e1f3035": { + "name": "error", + "value": "Connection closed", + "sent": 2 + }, "5494ca4c103e": { "name": "linear.searchIssues#1", "args": [ @@ -308,7 +325,17 @@ "name": "linear.listIssues#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" }, - "8080efdd19df": { + "5c2874ad80bc": { + "name": "error", + "value": "transport failure", + "sent": 2 + }, + "6143a28f5226": { + "name": "loading", + "value": true, + "sent": 1 + }, + "6fafebd34f71": { "name": "items", "value": [ { @@ -340,7 +367,8 @@ "title": "A found issue", "updatedAt": "2020-01-01T00:00:00.000Z" } - ] + ], + "sent": 2 }, "820944a2683d": { "error": "outer refused", @@ -348,9 +376,10 @@ "loading": false, "refreshing": false }, - "82cd71d524c8": { - "name": "error", - "value": "" + "840a8ad61602": { + "name": "loading", + "value": true, + "sent": 0 }, "86aeb72f48eb": { "name": "linear.listIssues#1", @@ -413,10 +442,6 @@ "name": "linear.searchIssues#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" }, - "8936cd17eb1c": { - "name": "items", - "value": [] - }, "8fc99972bdd2": { "name": "linear.searchIssues#1", "args": [ @@ -452,9 +477,10 @@ } } }, - "945ea389c1ef": { - "name": "error", - "value": "transport failure" + "92c28468d7be": { + "name": "refreshing", + "value": false, + "sent": 2 }, "94a885e6f790": { "name": "linear.searchIssues#1", @@ -597,13 +623,10 @@ "loading": true, "refreshing": false }, - "9f82f10075a3": { + "9e263f5e91be": { "name": "error", - "value": "Connection closed" - }, - "9fd1c1fdaba4": { - "name": "loading", - "value": false + "value": "", + "sent": 0 }, "a45f546835a8": { "name": "linear.searchIssues#1", @@ -637,40 +660,6 @@ } } }, - "a807b2cced19": { - "name": "items", - "value": [ - { - "key": "linear:linear-workspace:issue-1", - "provider": "linear", - "source": { - "description": "", - "id": "issue-1", - "identifier": "ENG-1", - "labels": [], - "priority": 0, - "state": { - "color": "#000", - "name": "Todo", - "type": "unstarted" - }, - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering" - }, - "title": "A Linear issue", - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace" - }, - "status": "Todo", - "subtitle": "ENG-1 · Engineering", - "title": "A Linear issue", - "updatedAt": "2020-01-01T00:00:00.000Z" - } - ] - }, "ad3c905e6ecc": { "name": "linear.searchIssues#1", "args": [ @@ -709,13 +698,25 @@ } } }, - "b8cb056c2851": { - "name": "refreshing", - "value": false - }, - "ba65a7abe43b": { + "b57ded8a3ea3": { "name": "error", - "value": "outer refused" + "value": "", + "sent": 2 + }, + "be487c948252": { + "name": "error", + "value": "Unexpected Linear tasks response", + "sent": 2 + }, + "c9db7514f5c5": { + "name": "loading", + "value": false, + "sent": 2 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "e04d208486e7": { "name": "linear.searchIssues#1", @@ -752,9 +753,40 @@ } } }, - "e9bfd0a82b94": { - "name": "error", - "value": "Unexpected Linear tasks response" + "e1bd9a521877": { + "name": "items", + "value": [ + { + "key": "linear:linear-workspace:issue-1", + "provider": "linear", + "source": { + "description": "", + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A Linear issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + }, + "status": "Todo", + "subtitle": "ENG-1 · Engineering", + "title": "A Linear issue", + "updatedAt": "2020-01-01T00:00:00.000Z" + } + ], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -769,6 +801,11 @@ "items": [], "loading": false, "refreshing": false + }, + "f1cfc2d1bcc1": { + "name": "error", + "value": "Unknown method", + "sent": 2 } }, "recording": { @@ -785,11 +822,11 @@ }, "state": "94f44b229d7d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -805,11 +842,11 @@ }, "state": "94f44b229d7d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -826,17 +863,17 @@ }, "state": "99f1aeb70deb", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "9f82f10075a3", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "52d25e1f3035", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -853,16 +890,16 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -879,17 +916,17 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "be487c948252", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -906,17 +943,17 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "be487c948252", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -933,17 +970,17 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "be487c948252", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -960,17 +997,17 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "be487c948252", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -987,17 +1024,17 @@ }, "state": "2ca7c411bba8", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "e9bfd0a82b94", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "be487c948252", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1014,17 +1051,17 @@ }, "state": "820944a2683d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "ba65a7abe43b", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "000516aa083b", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1041,17 +1078,17 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "b57ded8a3ea3", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1068,17 +1105,17 @@ }, "state": "f11183466799", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "186f44bc465a", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "f1cfc2d1bcc1", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1095,17 +1132,17 @@ }, "state": "40cf838c0930", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "945ea389c1ef", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "5c2874ad80bc", + "c9db7514f5c5", + "92c28468d7be" ] } }, @@ -1122,17 +1159,17 @@ }, "state": "1e54d4dce85b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "3133fa990514", + "b57ded8a3ea3", + "c9db7514f5c5", + "92c28468d7be" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.searchrefs-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.searchrefs-1.json index ac54e830062..73995204869 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.searchrefs-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.searchrefs-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "9e91d46870cd69279cc7d8ebfd317ab8b13136ccff9662876c7601a3a83ecafe", "platform": "darwin", @@ -26,13 +26,26 @@ "presetsError": "", "presetsLoaded": true }, - "1d9a7d969446": { - "name": "workspaceSparsePresetsLoaded", - "value": true + "0522501c6443": { + "name": "workspaceSparsePresets", + "value": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "sent": 1 }, - "273f4074a9b5": { - "name": "workspaceSparsePresetsLoaded", - "value": false + "185868e61f0d": { + "name": "workspaceBaseBranchError", + "value": "Cannot read properties of undefined (reading 'refDetails')", + "sent": 2 + }, + "1f03192052c0": { + "name": "workspaceSparsePresetsLoading", + "value": false, + "sent": 1 }, "28f23529596e": { "name": "repo.searchRefs#1", @@ -95,10 +108,6 @@ "presetsError": "", "presetsLoaded": true }, - "35afa5cb107f": { - "name": "workspaceBaseBranchLoading", - "value": false - }, "395368dea8ff": { "name": "repo.searchRefs#1", "args": [ @@ -138,19 +147,10 @@ "name": "repo.searchRefs#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" }, - "46f2f1c9bc6a": { + "469b68abd6bf": { "name": "workspaceBaseBranchError", - "value": "transport failure" - }, - "4856f62b3650": { - "name": "workspaceSparsePresets", - "value": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ] + "value": "Cannot read properties of null (reading 'refDetails')", + "sent": 2 }, "4cedb91a2f7a": { "name": "repo.sparsePresets#1", @@ -189,6 +189,11 @@ } } }, + "539a8c80071f": { + "name": "workspaceSparsePresetsLoaded", + "value": false, + "sent": 0 + }, "5485811c08ca": { "name": "repo.searchRefs#1", "args": [ @@ -237,10 +242,6 @@ "presetsError": "", "presetsLoaded": true }, - "58cb95babab2": { - "name": "workspaceBaseBranchLoading", - "value": true - }, "5b0e628f442c": { "name": "repo.searchRefs#1", "args": [ @@ -274,13 +275,15 @@ } } }, - "5f1c84e00d4f": { - "name": "workspaceBaseBranchResults", - "value": [] - }, - "6c344c5f4ac0": { + "61a9907d4e25": { "name": "workspaceBaseBranchError", - "value": "" + "value": "", + "sent": 2 + }, + "66f7aa09c444": { + "name": "workspaceBaseBranchLoading", + "value": false, + "sent": 1 }, "7444e76d58f7": { "name": "repo.searchRefs#1", @@ -318,9 +321,10 @@ } } }, - "8353b8e1a426": { - "name": "workspaceSparsePresetsLoading", - "value": true + "78f4c8d53e98": { + "name": "workspaceBaseBranchLoading", + "value": true, + "sent": 1 }, "846e910f6579": { "name": "repo.searchRefs#1", @@ -354,24 +358,20 @@ } } }, - "8dbe7ea87a41": { + "8a621ac1da52": { "name": "workspaceBaseBranchResults", "value": [ { "localBranchName": "main", "refName": "main" } - ] + ], + "sent": 2 }, - "914268bb0636": { - "name": "workspaceBaseBranchError", - "value": "outer refused" - }, - "9357f7ea8445": { - "name": "workspaceSparsePresetId", - "value": { - "$rpc": "null" - } + "8c08bfbbb957": { + "name": "workspaceSparsePresetsLoaded", + "value": true, + "sent": 1 }, "94cafc85a34d": { "name": "repo.searchRefs#1", @@ -411,6 +411,21 @@ } } }, + "96f470cee43b": { + "name": "workspaceBaseBranchError", + "value": "", + "sent": 1 + }, + "a3dae49d6976": { + "name": "workspaceBaseBranchError", + "value": "Unknown method", + "sent": 2 + }, + "a81d1426bf3c": { + "name": "workspaceBaseBranchLoading", + "value": false, + "sent": 2 + }, "b78bcf7ca596": { "branchError": "", "branches": [ @@ -514,6 +529,11 @@ "presetsError": "", "presetsLoaded": true }, + "c44ace4a8d63": { + "name": "workspaceBaseBranchError", + "value": "transport failure", + "sent": 2 + }, "c8d4d05367d6": { "name": "repo.sparsePresets#1", "args": [ @@ -553,13 +573,15 @@ } } }, - "cfc8af2a7169": { - "name": "workspaceSparsePresetsLoading", - "value": false + "ca6dda44e51a": { + "name": "workspaceBaseBranchError", + "value": "outer refused", + "sent": 2 }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" + "d74e7c93c5be": { + "name": "workspaceBaseBranchResults", + "value": [], + "sent": 1 }, "e4bad139cb5f": { "branchError": "Cannot read properties of undefined (reading 'refDetails')", @@ -574,10 +596,6 @@ "presetsError": "", "presetsLoaded": true }, - "e883c3f737f1": { - "name": "workspaceBaseBranchError", - "value": "Unknown method" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -586,9 +604,22 @@ "$rpc": "undefined" } }, - "ec51e489da58": { - "name": "workspaceBaseBranchError", - "value": "Cannot read properties of null (reading 'refDetails')" + "f0ea20e86c2f": { + "name": "workspaceBaseBranchResults", + "value": [], + "sent": 2 + }, + "f359ebae96d2": { + "name": "workspaceSparsePresetId", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "f68a2eba2c59": { + "name": "workspaceSparsePresetsLoading", + "value": true, + "sent": 0 }, "f6f9a9765c0c": { "name": "repo.searchRefs#1", @@ -626,9 +657,10 @@ } } }, - "fcca5f73b480": { - "name": "workspaceBaseBranchError", - "value": "Cannot read properties of undefined (reading 'refDetails')" + "ff042d71c647": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 0 } }, "recording": { @@ -644,16 +676,16 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0" ] } }, @@ -668,20 +700,20 @@ }, "state": "b78bcf7ca596", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -696,21 +728,21 @@ }, "state": "e4bad139cb5f", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "fcca5f73b480", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "185868e61f0d", + "a81d1426bf3c" ] } }, @@ -725,21 +757,21 @@ }, "state": "0045016f4149", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "ec51e489da58", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "469b68abd6bf", + "a81d1426bf3c" ] } }, @@ -754,20 +786,20 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "a81d1426bf3c" ] } }, @@ -782,20 +814,20 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "a81d1426bf3c" ] } }, @@ -810,20 +842,20 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "a81d1426bf3c" ] } }, @@ -838,21 +870,21 @@ }, "state": "2bd164983c10", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "914268bb0636", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "ca6dda44e51a", + "a81d1426bf3c" ] } }, @@ -867,21 +899,21 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "6c344c5f4ac0", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "61a9907d4e25", + "a81d1426bf3c" ] } }, @@ -896,21 +928,21 @@ }, "state": "bd93f3a9862f", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "e883c3f737f1", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "a3dae49d6976", + "a81d1426bf3c" ] } }, @@ -925,21 +957,21 @@ }, "state": "2e554aeab5d0", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "46f2f1c9bc6a", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "c44ace4a8d63", + "a81d1426bf3c" ] } }, @@ -954,21 +986,21 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "5f1c84e00d4f", - "6c344c5f4ac0", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "f0ea20e86c2f", + "61a9907d4e25", + "a81d1426bf3c" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.sparsepresets-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.sparsepresets-1.json index d1cfe40bb2d..51d2afa65f9 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.sparsepresets-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.sparsepresets-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "2d4a681bffbc5ff9d3040ea0d6bb2603ee940c3c497269d0b63caca564fb25e1", "platform": "darwin", @@ -13,6 +13,22 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0522501c6443": { + "name": "workspaceSparsePresets", + "value": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "sent": 1 + }, + "096e46a703cd": { + "name": "workspaceSparsePresetsError", + "value": "transport failure", + "sent": 1 + }, "0e0e1c74c796": { "branchError": "", "branches": [], @@ -20,17 +36,10 @@ "presetsError": "transport failure", "presetsLoaded": false }, - "1d9a7d969446": { - "name": "workspaceSparsePresetsLoaded", - "value": true - }, - "2399e995a370": { - "name": "workspaceSparsePresets", - "value": [] - }, - "273f4074a9b5": { - "name": "workspaceSparsePresetsLoaded", - "value": false + "1f03192052c0": { + "name": "workspaceSparsePresetsLoading", + "value": false, + "sent": 1 }, "2d69fe330484": { "name": "repo.sparsePresets#1", @@ -63,10 +72,6 @@ } } }, - "35afa5cb107f": { - "name": "workspaceBaseBranchLoading", - "value": false - }, "395368dea8ff": { "name": "repo.searchRefs#1", "args": [ @@ -102,6 +107,11 @@ } } }, + "3d9625837af9": { + "name": "workspaceSparsePresetsError", + "value": "outer refused", + "sent": 1 + }, "3dcbacca6ef0": { "name": "repo.sparsePresets#1", "args": [ @@ -139,28 +149,10 @@ "name": "repo.searchRefs#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" }, - "4856f62b3650": { - "name": "workspaceSparsePresets", - "value": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ] - }, - "4c7522c66d03": { - "name": "workspaceSparsePresetsError", - "value": "transport failure" - }, "4cedb91a2f7a": { "name": "repo.sparsePresets#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "51396e45f193": { - "name": "workspaceSparsePresetsError", - "value": "Cannot read properties of undefined (reading 'presets')" - }, "513bb01f2f25": { "branchError": "", "branches": [ @@ -173,6 +165,11 @@ "presetsError": "", "presetsLoaded": true }, + "539a8c80071f": { + "name": "workspaceSparsePresetsLoaded", + "value": false, + "sent": 0 + }, "57f06e6e349e": { "branchError": "", "branches": [], @@ -186,9 +183,10 @@ "presetsError": "", "presetsLoaded": true }, - "58cb95babab2": { - "name": "workspaceBaseBranchLoading", - "value": true + "594fac1293d4": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 1 }, "5cc2ef1617e8": { "name": "repo.sparsePresets#1", @@ -236,10 +234,6 @@ "presetsError": "transport failure", "presetsLoaded": false }, - "5f1c84e00d4f": { - "name": "workspaceBaseBranchResults", - "value": [] - }, "62bc28c39ffc": { "branchError": "", "branches": [], @@ -247,9 +241,30 @@ "presetsError": "", "presetsLoaded": false }, - "6c344c5f4ac0": { - "name": "workspaceBaseBranchError", - "value": "" + "648935ecca5d": { + "name": "workspaceSparsePresets", + "value": [], + "sent": 1 + }, + "66f7aa09c444": { + "name": "workspaceBaseBranchLoading", + "value": false, + "sent": 1 + }, + "6eed948cb75c": { + "name": "workspaceSparsePresetsError", + "value": "Unknown method", + "sent": 1 + }, + "78f4c8d53e98": { + "name": "workspaceBaseBranchLoading", + "value": true, + "sent": 1 + }, + "793481621476": { + "name": "workspaceSparsePresetsError", + "value": "Cannot read properties of undefined (reading 'presets')", + "sent": 1 }, "83043f6bd49a": { "name": "repo.sparsePresets#1", @@ -285,14 +300,6 @@ } } }, - "8353b8e1a426": { - "name": "workspaceSparsePresetsLoading", - "value": true - }, - "841927d71fc6": { - "name": "workspaceSparsePresetsError", - "value": "outer refused" - }, "844c1ccf1f9a": { "branchError": "", "branches": [ @@ -305,6 +312,16 @@ "presetsError": "Cannot read properties of undefined (reading 'presets')", "presetsLoaded": false }, + "8a621ac1da52": { + "name": "workspaceBaseBranchResults", + "value": [ + { + "localBranchName": "main", + "refName": "main" + } + ], + "sent": 2 + }, "8b4d034d6e9e": { "name": "repo.sparsePresets#1", "args": [ @@ -341,14 +358,10 @@ } } }, - "8dbe7ea87a41": { - "name": "workspaceBaseBranchResults", - "value": [ - { - "localBranchName": "main", - "refName": "main" - } - ] + "8c08bfbbb957": { + "name": "workspaceSparsePresetsLoaded", + "value": true, + "sent": 1 }, "90bd9a937fe0": { "branchError": "", @@ -362,11 +375,10 @@ "presetsError": "", "presetsLoaded": false }, - "9357f7ea8445": { - "name": "workspaceSparsePresetId", - "value": { - "$rpc": "null" - } + "96f470cee43b": { + "name": "workspaceBaseBranchError", + "value": "", + "sent": 1 }, "96f5a578e45b": { "name": "repo.sparsePresets#1", @@ -463,6 +475,11 @@ } } }, + "99b93f410369": { + "name": "workspaceSparsePresetsLoaded", + "value": false, + "sent": 1 + }, "a18f0cdbc6fe": { "name": "repo.sparsePresets#1", "args": [ @@ -496,9 +513,15 @@ } } }, - "aaaeee84b4d2": { + "a81d1426bf3c": { + "name": "workspaceBaseBranchLoading", + "value": false, + "sent": 2 + }, + "b4cf1db64faf": { "name": "workspaceSparsePresetsError", - "value": "Cannot read properties of null (reading 'presets')" + "value": "Cannot read properties of null (reading 'presets')", + "sent": 1 }, "b78bcf7ca596": { "branchError": "", @@ -616,10 +639,6 @@ "presetsError": "Unknown method", "presetsLoaded": false }, - "cfc8af2a7169": { - "name": "workspaceSparsePresetsLoading", - "value": false - }, "d075e587b820": { "branchError": "", "branches": [ @@ -632,6 +651,11 @@ "presetsError": "outer refused", "presetsLoaded": false }, + "d74e7c93c5be": { + "name": "workspaceBaseBranchResults", + "value": [], + "sent": 1 + }, "db27fad68ce2": { "name": "repo.sparsePresets#1", "args": [ @@ -666,14 +690,6 @@ } } }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" - }, - "ea260eacb1db": { - "name": "workspaceSparsePresetsError", - "value": "Unknown method" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -681,6 +697,23 @@ "value": { "$rpc": "undefined" } + }, + "f359ebae96d2": { + "name": "workspaceSparsePresetId", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "f68a2eba2c59": { + "name": "workspaceSparsePresetsLoading", + "value": true, + "sent": 0 + }, + "ff042d71c647": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 0 } }, "recording": { @@ -696,16 +729,16 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0" ] } }, @@ -720,20 +753,20 @@ }, "state": "b78bcf7ca596", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -747,17 +780,17 @@ }, "state": "c909c6a474d9", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "51396e45f193", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "793481621476", + "1f03192052c0" ] } }, @@ -772,21 +805,21 @@ }, "state": "844c1ccf1f9a", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "51396e45f193", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "793481621476", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -800,17 +833,17 @@ }, "state": "c9e6bb8f5e61", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "aaaeee84b4d2", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "b4cf1db64faf", + "1f03192052c0" ] } }, @@ -825,21 +858,21 @@ }, "state": "bf004df2bf3d", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "aaaeee84b4d2", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "b4cf1db64faf", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -853,16 +886,16 @@ }, "state": "c58cdfec29bd", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0" ] } }, @@ -877,20 +910,20 @@ }, "state": "513bb01f2f25", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -904,16 +937,16 @@ }, "state": "c58cdfec29bd", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0" ] } }, @@ -928,20 +961,20 @@ }, "state": "513bb01f2f25", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -955,16 +988,16 @@ }, "state": "c58cdfec29bd", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0" ] } }, @@ -979,20 +1012,20 @@ }, "state": "513bb01f2f25", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -1006,17 +1039,17 @@ }, "state": "c9379c8a3ba8", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "841927d71fc6", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "3d9625837af9", + "1f03192052c0" ] } }, @@ -1031,21 +1064,21 @@ }, "state": "d075e587b820", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "841927d71fc6", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "3d9625837af9", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -1059,17 +1092,17 @@ }, "state": "62bc28c39ffc", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "dba381378b08", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "594fac1293d4", + "1f03192052c0" ] } }, @@ -1084,21 +1117,21 @@ }, "state": "90bd9a937fe0", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "dba381378b08", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "594fac1293d4", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -1112,17 +1145,17 @@ }, "state": "ce4aab89eed0", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "ea260eacb1db", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "6eed948cb75c", + "1f03192052c0" ] } }, @@ -1137,21 +1170,21 @@ }, "state": "ce7d06abf495", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "ea260eacb1db", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "6eed948cb75c", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -1165,17 +1198,17 @@ }, "state": "0e0e1c74c796", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "4c7522c66d03", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "096e46a703cd", + "1f03192052c0" ] } }, @@ -1190,21 +1223,21 @@ }, "state": "5e895d7d4949", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "4c7522c66d03", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "096e46a703cd", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } }, @@ -1218,17 +1251,17 @@ }, "state": "62bc28c39ffc", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "dba381378b08", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "594fac1293d4", + "1f03192052c0" ] } }, @@ -1243,21 +1276,21 @@ }, "state": "90bd9a937fe0", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "dba381378b08", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "594fac1293d4", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-repo.savesparsepreset-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-repo.savesparsepreset-1.json index 6eb77387652..8efe582dda3 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-repo.savesparsepreset-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-repo.savesparsepreset-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3d4637406e2d658b72f73153f0a5e176cb8b143593b72bce0cdf979bc6e4cbdd", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0a30edace604": { + "name": "workspaceSparsePresetsError", + "value": "Failed to save sparse preset.", + "sent": 2 + }, "1923ab7dba76": { "name": "repo.saveSparsePreset#1", "args": [ @@ -49,10 +54,6 @@ } } }, - "1d9a7d969446": { - "name": "workspaceSparsePresetsLoaded", - "value": true - }, "1f453ea83df7": { "presets": [], "presetsError": "transport failure", @@ -66,6 +67,11 @@ "targetId": "ssh-1" } }, + "23c24a8bc04b": { + "name": "workspaceSparsePresetsError", + "value": "Connection closed", + "sent": 2 + }, "23e798f4b47c": { "name": "repo.saveSparsePreset#1", "args": [ @@ -99,9 +105,15 @@ } } }, - "312ed3cbf468": { - "name": "workspaceSparsePresetId", - "value": "p1" + "3dea8cd23ff6": { + "name": "workspaceSparsePresetsError", + "value": "outer refused", + "sent": 2 + }, + "3f2baafe9f80": { + "name": "workspaceSparseSaving", + "value": false, + "sent": 2 }, "404305aa2e3a": { "presets": [ @@ -122,25 +134,17 @@ "targetId": "ssh-1" } }, - "42bbd034563e": { - "name": "workspaceSparseDraft", + "452edc62bce0": { + "name": "workspaceSshState", "value": { - "$rpc": "null" - } - }, - "4856f62b3650": { - "name": "workspaceSparsePresets", - "value": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ] - }, - "4c7522c66d03": { - "name": "workspaceSparsePresetsError", - "value": "transport failure" + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + }, + "sent": 1 }, "4d66e995ff47": { "name": "repo.saveSparsePreset#1", @@ -175,9 +179,20 @@ } } }, - "4e1228f5e0a8": { + "50299594248a": { "name": "workspaceSparsePresetsError", - "value": "Cannot read properties of null (reading 'preset')" + "value": "", + "sent": 2 + }, + "594fac1293d4": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 1 + }, + "5b8f6c626989": { + "name": "workspaceSparsePresetId", + "value": "p1", + "sent": 2 }, "5c44ff5f6877": { "name": "repo.saveSparsePreset#1", @@ -254,17 +269,10 @@ } } }, - "7993762437ad": { + "7c00933f99aa": { "name": "workspaceSparsePresetsError", - "value": "Connection closed" - }, - "7fd0cde62993": { - "name": "workspaceSparseSaving", - "value": false - }, - "841927d71fc6": { - "name": "workspaceSparsePresetsError", - "value": "outer refused" + "value": "Cannot read properties of null (reading 'preset')", + "sent": 2 }, "89aa7a3bd619": { "name": "ssh.getState#1", @@ -306,6 +314,17 @@ } } }, + "8a48f96e40fe": { + "name": "workspaceSparsePresets", + "value": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "sent": 2 + }, "8e410711e308": { "presets": [], "presetsError": "Cannot read properties of undefined (reading 'preset')", @@ -319,16 +338,10 @@ "targetId": "ssh-1" } }, - "921f72d7827e": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } + "8ff2b79a90fb": { + "name": "workspaceSparsePresetsLoaded", + "value": true, + "sent": 2 }, "92b857799ffd": { "name": "repo.saveSparsePreset#1", @@ -495,6 +508,11 @@ "targetId": "ssh-1" } }, + "bf4ab087f5b3": { + "name": "workspaceSparsePresetsError", + "value": "Cannot read properties of undefined (reading 'preset')", + "sent": 2 + }, "c33fee0d8294": { "presets": [], "presetsError": "Unknown method", @@ -546,9 +564,10 @@ } } }, - "cea9d7e8986e": { + "c74f5fe12440": { "name": "workspaceSparseSaving", - "value": true + "value": true, + "sent": 1 }, "d14de7ce4d84": { "name": "repo.saveSparsePreset#1", @@ -598,17 +617,10 @@ "targetId": "ssh-1" } }, - "da3a01640280": { + "df20e67660fc": { "name": "workspaceSparsePresetsError", - "value": "Failed to save sparse preset." - }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" - }, - "dd63325a7802": { - "name": "workspaceSparsePresetsError", - "value": "Cannot read properties of undefined (reading 'preset')" + "value": "Unknown method", + "sent": 2 }, "e52233a9ff71": { "presets": [], @@ -623,10 +635,6 @@ "targetId": "ssh-1" } }, - "ea260eacb1db": { - "name": "workspaceSparsePresetsError", - "value": "Unknown method" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -648,6 +656,13 @@ "targetId": "ssh-1" } }, + "ef39f35afb7f": { + "name": "workspaceSparseDraft", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, "f4d4ba362712": { "name": "repo.saveSparsePreset#1", "args": [ @@ -681,6 +696,11 @@ } } }, + "f77e22eef962": { + "name": "workspaceSparsePresetsError", + "value": "transport failure", + "sent": 2 + }, "f9dfbe0c0ea7": { "name": "ssh.getState#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" @@ -702,7 +722,7 @@ "mount": "eb79a9b3682a" }, "state": "ee3a941d5e9c", - "effects": ["921f72d7827e"] + "effects": ["452edc62bce0"] } }, { @@ -716,11 +736,11 @@ }, "state": "bcfc7df6e4f2", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "7993762437ad", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "23c24a8bc04b", + "3f2baafe9f80" ] } }, @@ -735,14 +755,14 @@ }, "state": "404305aa2e3a", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -757,11 +777,11 @@ }, "state": "8e410711e308", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "dd63325a7802", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "bf4ab087f5b3", + "3f2baafe9f80" ] } }, @@ -776,11 +796,11 @@ }, "state": "e52233a9ff71", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "4e1228f5e0a8", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "7c00933f99aa", + "3f2baafe9f80" ] } }, @@ -795,11 +815,11 @@ }, "state": "befb68fa6c76", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "da3a01640280", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "0a30edace604", + "3f2baafe9f80" ] } }, @@ -814,11 +834,11 @@ }, "state": "befb68fa6c76", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "da3a01640280", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "0a30edace604", + "3f2baafe9f80" ] } }, @@ -833,11 +853,11 @@ }, "state": "befb68fa6c76", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "da3a01640280", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "0a30edace604", + "3f2baafe9f80" ] } }, @@ -852,11 +872,11 @@ }, "state": "d74bc3778ca8", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "841927d71fc6", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "3dea8cd23ff6", + "3f2baafe9f80" ] } }, @@ -871,11 +891,11 @@ }, "state": "ee3a941d5e9c", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "dba381378b08", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "50299594248a", + "3f2baafe9f80" ] } }, @@ -890,11 +910,11 @@ }, "state": "c33fee0d8294", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "ea260eacb1db", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "df20e67660fc", + "3f2baafe9f80" ] } }, @@ -909,11 +929,11 @@ }, "state": "1f453ea83df7", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "4c7522c66d03", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "f77e22eef962", + "3f2baafe9f80" ] } }, @@ -928,11 +948,11 @@ }, "state": "ee3a941d5e9c", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "dba381378b08", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "50299594248a", + "3f2baafe9f80" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-ssh.getstate-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-ssh.getstate-1.json index 5c075a2529b..34014f55428 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-ssh.getstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-ssh.getstate-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3453024581230908d1e0e9335f5310e7b4ae03faf50d93654b9ff28c464fb95f", "platform": "darwin", @@ -46,6 +46,16 @@ } } }, + "0c138770731d": { + "name": "workspaceSshState", + "value": { + "error": "Cannot read properties of null (reading 'state')", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 1 + }, "0eabd872f405": { "name": "ssh.getState#1", "args": [ @@ -109,29 +119,15 @@ } } }, - "1703db1e81e4": { + "1db4236fbf9f": { "name": "workspaceSshState", "value": { - "error": "Cannot read properties of undefined (reading 'state')", + "error": "", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" - } - }, - "1d9a7d969446": { - "name": "workspaceSparsePresetsLoaded", - "value": true - }, - "25352a4de532": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "disconnected", - "targetId": "ssh-1" - } + }, + "sent": 1 }, "2d910059043a": { "name": "ssh.getState#1", @@ -164,9 +160,20 @@ } } }, - "312ed3cbf468": { - "name": "workspaceSparsePresetId", - "value": "p1" + "370294f90804": { + "name": "workspaceSshState", + "value": { + "error": "outer refused", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 1 + }, + "3f2baafe9f80": { + "name": "workspaceSparseSaving", + "value": false, + "sent": 2 }, "404305aa2e3a": { "presets": [ @@ -187,12 +194,6 @@ "targetId": "ssh-1" } }, - "42bbd034563e": { - "name": "workspaceSparseDraft", - "value": { - "$rpc": "null" - } - }, "44ca8518769a": { "presets": [], "presetsError": "", @@ -204,15 +205,17 @@ "targetId": "ssh-1" } }, - "4856f62b3650": { - "name": "workspaceSparsePresets", - "value": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ] + "452edc62bce0": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + }, + "sent": 1 }, "57be9babbecd": { "presets": [ @@ -231,6 +234,16 @@ "targetId": "ssh-1" } }, + "594fac1293d4": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 1 + }, + "5b8f6c626989": { + "name": "workspaceSparsePresetId", + "value": "p1", + "sent": 2 + }, "5c44ff5f6877": { "name": "repo.saveSparsePreset#1", "args": [ @@ -270,6 +283,16 @@ } } }, + "5f1454731b28": { + "name": "workspaceSshState", + "value": { + "error": "Unknown method", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 1 + }, "68ca812c8120": { "presets": [], "presetsError": "", @@ -283,6 +306,16 @@ "targetId": "ssh-1" } }, + "6afb106ee68e": { + "name": "workspaceSshState", + "value": { + "error": "Cannot read properties of undefined (reading 'state')", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 1 + }, "6daeb33f37f8": { "presets": [], "presetsError": "", @@ -322,10 +355,6 @@ "targetId": "ssh-1" } }, - "7fd0cde62993": { - "name": "workspaceSparseSaving", - "value": false - }, "80431b2fc9cd": { "presets": [ { @@ -365,14 +394,27 @@ "targetId": "ssh-1" } }, - "86cc01b1e541": { + "82748a6e3f42": { "name": "workspaceSshState", "value": { - "error": "", + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "disconnected", + "targetId": "ssh-1" + }, + "sent": 1 + }, + "88164d04dbe0": { + "name": "workspaceSshState", + "value": { + "error": "transport failure", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" - } + }, + "sent": 1 }, "89aa7a3bd619": { "name": "ssh.getState#1", @@ -414,25 +456,21 @@ } } }, - "9164e806ca12": { - "name": "workspaceSshState", - "value": { - "error": "Cannot read properties of null (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } + "8a48f96e40fe": { + "name": "workspaceSparsePresets", + "value": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "sent": 2 }, - "921f72d7827e": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } + "8ff2b79a90fb": { + "name": "workspaceSparsePresetsLoaded", + "value": true, + "sent": 2 }, "9367b086d487": { "presets": [ @@ -451,15 +489,6 @@ "targetId": "ssh-1" } }, - "93dfd351c771": { - "name": "workspaceSshState", - "value": { - "error": "outer refused", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "a16210531185": { "presets": [], "presetsError": "", @@ -471,15 +500,6 @@ "targetId": "ssh-1" } }, - "a209f2c7160e": { - "name": "workspaceSshState", - "value": { - "error": "Unknown method", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "b09dd4915f43": { "name": "ssh.getState#1", "args": [ @@ -548,14 +568,10 @@ } } }, - "b7fa4557dcfa": { - "name": "workspaceSshState", - "value": { - "error": "transport failure", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } + "c74f5fe12440": { + "name": "workspaceSparseSaving", + "value": true, + "sent": 1 }, "cd050477e049": { "presets": [ @@ -574,10 +590,6 @@ "targetId": "ssh-1" } }, - "cea9d7e8986e": { - "name": "workspaceSparseSaving", - "value": true - }, "d0fad8f739ca": { "name": "ssh.getState#1", "args": [ @@ -612,10 +624,6 @@ } } }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" - }, "e18278fce524": { "name": "ssh.getState#1", "args": [ @@ -690,6 +698,13 @@ "targetId": "ssh-1" } }, + "ef39f35afb7f": { + "name": "workspaceSparseDraft", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, "f36f17f8d448": { "name": "ssh.getState#1", "args": [ @@ -795,7 +810,7 @@ "mount": "eb79a9b3682a" }, "state": "ee3a941d5e9c", - "effects": ["921f72d7827e"] + "effects": ["452edc62bce0"] } }, { @@ -809,14 +824,14 @@ }, "state": "404305aa2e3a", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -829,7 +844,7 @@ "mount": "eb79a9b3682a" }, "state": "44ca8518769a", - "effects": ["1703db1e81e4"] + "effects": ["6afb106ee68e"] } }, { @@ -843,14 +858,14 @@ }, "state": "7a26c9dceb4c", "effects": [ - "1703db1e81e4", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "6afb106ee68e", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -863,7 +878,7 @@ "mount": "eb79a9b3682a" }, "state": "81af687a998a", - "effects": ["9164e806ca12"] + "effects": ["0c138770731d"] } }, { @@ -877,14 +892,14 @@ }, "state": "80431b2fc9cd", "effects": [ - "9164e806ca12", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "0c138770731d", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -897,7 +912,7 @@ "mount": "eb79a9b3682a" }, "state": "68ca812c8120", - "effects": ["25352a4de532"] + "effects": ["82748a6e3f42"] } }, { @@ -911,14 +926,14 @@ }, "state": "f7885da6b9c0", "effects": [ - "25352a4de532", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "82748a6e3f42", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -931,7 +946,7 @@ "mount": "eb79a9b3682a" }, "state": "68ca812c8120", - "effects": ["25352a4de532"] + "effects": ["82748a6e3f42"] } }, { @@ -945,14 +960,14 @@ }, "state": "f7885da6b9c0", "effects": [ - "25352a4de532", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "82748a6e3f42", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -965,7 +980,7 @@ "mount": "eb79a9b3682a" }, "state": "68ca812c8120", - "effects": ["25352a4de532"] + "effects": ["82748a6e3f42"] } }, { @@ -979,14 +994,14 @@ }, "state": "f7885da6b9c0", "effects": [ - "25352a4de532", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "82748a6e3f42", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -999,7 +1014,7 @@ "mount": "eb79a9b3682a" }, "state": "a16210531185", - "effects": ["93dfd351c771"] + "effects": ["370294f90804"] } }, { @@ -1013,14 +1028,14 @@ }, "state": "9367b086d487", "effects": [ - "93dfd351c771", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "370294f90804", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -1033,7 +1048,7 @@ "mount": "eb79a9b3682a" }, "state": "813df5a46a4a", - "effects": ["86cc01b1e541"] + "effects": ["1db4236fbf9f"] } }, { @@ -1047,14 +1062,14 @@ }, "state": "cd050477e049", "effects": [ - "86cc01b1e541", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "1db4236fbf9f", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -1067,7 +1082,7 @@ "mount": "eb79a9b3682a" }, "state": "7e5ba73897a1", - "effects": ["a209f2c7160e"] + "effects": ["5f1454731b28"] } }, { @@ -1081,14 +1096,14 @@ }, "state": "57be9babbecd", "effects": [ - "a209f2c7160e", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "5f1454731b28", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -1101,7 +1116,7 @@ "mount": "eb79a9b3682a" }, "state": "6daeb33f37f8", - "effects": ["b7fa4557dcfa"] + "effects": ["88164d04dbe0"] } }, { @@ -1115,14 +1130,14 @@ }, "state": "ef27a7ecb258", "effects": [ - "b7fa4557dcfa", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "88164d04dbe0", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } }, @@ -1135,7 +1150,7 @@ "mount": "eb79a9b3682a" }, "state": "813df5a46a4a", - "effects": ["86cc01b1e541"] + "effects": ["1db4236fbf9f"] } }, { @@ -1149,14 +1164,14 @@ }, "state": "cd050477e049", "effects": [ - "86cc01b1e541", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "1db4236fbf9f", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-local-preflight.detectagents-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-local-preflight.detectagents-1.json index 80b8c55918d..bd0d8149092 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-local-preflight.detectagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-local-preflight.detectagents-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "28f7ba289c188bfc121ef7b969133711189e887fbfc7b37c8a5401ea7f30b56a", "platform": "darwin", @@ -83,6 +83,11 @@ } } }, + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 + }, "1317fc33bdbe": { "name": "preflight.detectAgents#1", "args": [ @@ -183,12 +188,6 @@ } } }, - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", - "value": { - "$rpc": "null" - } - }, "6e5fcf24648d": { "name": "preflight.detectAgents#1", "args": [ @@ -268,6 +267,11 @@ "$rpc": "null" } }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 + }, "87d7d24a30d2": { "name": "preflight.detectAgents#1", "args": [ @@ -302,9 +306,10 @@ } } }, - "9f152ed6e897": { + "a88df8f43f70": { "name": "workspaceDetectedAgentIds", - "value": [] + "value": [], + "sent": 1 }, "cb93b17470e8": { "name": "preflight.detectAgents#1", @@ -337,17 +342,21 @@ } } }, - "cbb858a786ac": { - "name": "workspaceDetectedAgentIds", - "value": ["codex", "claude"] - }, "cf32edc950ac": { "name": "preflight.detectAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}" }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "d00f9527d4f2": { + "name": "workspaceDetectedAgentIds", + "value": ["codex", "claude"], + "sent": 1 + }, + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -357,10 +366,6 @@ "$rpc": "undefined" } }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" - }, "fb640b2bca4c": { "name": "preflight.detectAgents#1", "args": [ @@ -439,7 +444,7 @@ "mount": "eb79a9b3682a" }, "state": "7400f4eebe66", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "cbb858a786ac"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "d00f9527d4f2"] } }, { @@ -451,7 +456,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -463,7 +468,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -475,7 +480,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -487,7 +492,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -499,7 +504,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -511,7 +516,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -523,7 +528,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -535,7 +540,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -547,7 +552,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -559,7 +564,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-preflight.detectremoteagents-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-preflight.detectremoteagents-1.json index c8671641a1c..d3293456de6 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-preflight.detectremoteagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-preflight.detectremoteagents-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "35771ab92d0d4ff44a1dd6e5f1e5d3137570a2e013bddea5ca77ecac7989ed53", "platform": "darwin", @@ -91,6 +91,11 @@ "source": "repo" } }, + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 + }, "162a699815c1": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -127,10 +132,6 @@ } } }, - "1739575ac53e": { - "name": "workspaceSshConnecting", - "value": true - }, "17e35b25d15d": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -238,20 +239,22 @@ } } }, - "3571f351281f": { - "name": "workspaceDetectedAgentIds", - "value": ["codex"] + "2dcd5a3a771d": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + }, + "sent": 2 }, "37921d9fdeb7": { "name": "preflight.detectRemoteAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" }, - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", - "value": { - "$rpc": "null" - } - }, "43ead075ce12": { "agent": "claude", "connecting": false, @@ -274,10 +277,6 @@ "targetId": "ssh-1" } }, - "43fd3e2f4b53": { - "name": "workspaceSshConnecting", - "value": false - }, "71225024ccf5": { "agent": "claude", "connecting": false, @@ -327,6 +326,11 @@ } } }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 + }, "7a1b524f17d0": { "agent": "claude", "connecting": false, @@ -430,6 +434,28 @@ } } }, + "86149ccb0853": { + "name": "workspaceSshConnecting", + "value": true, + "sent": 1 + }, + "8967d4751aaf": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connecting", + "targetId": "ssh-1" + }, + "sent": 1 + }, + "8d99fc90d0b0": { + "name": "workspaceDetectedAgentIds", + "value": ["codex"], + "sent": 1 + }, "90dce4861972": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -460,17 +486,6 @@ } } }, - "921f72d7827e": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } - }, "95dee1165f95": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -516,10 +531,6 @@ "targetId": "ssh-1" } }, - "9f152ed6e897": { - "name": "workspaceDetectedAgentIds", - "value": [] - }, "a1f755a38636": { "agent": "claude", "connecting": false, @@ -534,6 +545,11 @@ "targetId": "ssh-1" } }, + "a88df8f43f70": { + "name": "workspaceDetectedAgentIds", + "value": [], + "sent": 1 + }, "c5eeac27af29": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -568,9 +584,17 @@ } } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "db1cde7aa6f5": { + "name": "workspaceSshConnecting", + "value": false, + "sent": 2 + }, + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -580,25 +604,10 @@ "$rpc": "undefined" } }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" - }, "f0a9f62da106": { "name": "repo.hooks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "fbfdbb919268": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connecting", - "targetId": "ssh-1" - } - }, "fd04a7852302": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -646,7 +655,7 @@ "mount": "eb79a9b3682a" }, "state": "18e6a3ac6471", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "3571f351281f"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "8d99fc90d0b0"] } }, { @@ -660,14 +669,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -683,14 +692,14 @@ }, "state": "43ead075ce12", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -703,7 +712,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -717,14 +726,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -740,14 +749,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -760,7 +769,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -774,14 +783,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -797,14 +806,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -817,7 +826,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -831,14 +840,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -854,14 +863,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -874,7 +883,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -888,14 +897,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -911,14 +920,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -931,7 +940,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -945,14 +954,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -968,14 +977,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -988,7 +997,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -1002,14 +1011,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1025,14 +1034,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1045,7 +1054,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -1059,14 +1068,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1082,14 +1091,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1102,7 +1111,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -1116,14 +1125,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1139,14 +1148,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1159,7 +1168,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -1173,14 +1182,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1196,14 +1205,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1216,7 +1225,7 @@ "mount": "eb79a9b3682a" }, "state": "71225024ccf5", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "9f152ed6e897"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "a88df8f43f70"] } }, { @@ -1230,14 +1239,14 @@ }, "state": "9f0676ba0d67", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1253,14 +1262,14 @@ }, "state": "7a1b524f17d0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-repo.hooks-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-repo.hooks-1.json index cece3a3d77b..e80a48e99d7 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-repo.hooks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-repo.hooks-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "39451d3c811068754f91ac243fe1208f4ce742df53261314345d8209ba761e94", "platform": "darwin", @@ -61,6 +61,11 @@ "source": "repo" } }, + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 + }, "1712c415bebf": { "status": "fulfilled", "startedAt": 0, @@ -70,10 +75,6 @@ "kind": "decision" } }, - "1739575ac53e": { - "name": "workspaceSshConnecting", - "value": true - }, "17e35b25d15d": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -148,6 +149,18 @@ } } }, + "2dcd5a3a771d": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + }, + "sent": 2 + }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -189,20 +202,10 @@ } } }, - "3571f351281f": { - "name": "workspaceDetectedAgentIds", - "value": ["codex"] - }, "37921d9fdeb7": { "name": "preflight.detectRemoteAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" }, - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", - "value": { - "$rpc": "null" - } - }, "43ead075ce12": { "agent": "claude", "connecting": false, @@ -225,10 +228,6 @@ "targetId": "ssh-1" } }, - "43fd3e2f4b53": { - "name": "workspaceSshConnecting", - "value": false - }, "5278c299d57a": { "name": "repo.hooks#1", "args": [ @@ -346,6 +345,11 @@ } } }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 + }, "7c7a826833e0": { "name": "repo.hooks#1", "args": [ @@ -444,6 +448,23 @@ } } }, + "86149ccb0853": { + "name": "workspaceSshConnecting", + "value": true, + "sent": 1 + }, + "8967d4751aaf": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connecting", + "targetId": "ssh-1" + }, + "sent": 1 + }, "8c3bb432df5b": { "name": "repo.hooks#1", "args": [ @@ -480,16 +501,10 @@ } } }, - "921f72d7827e": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } + "8d99fc90d0b0": { + "name": "workspaceDetectedAgentIds", + "value": ["codex"], + "sent": 1 }, "941b6aeb0d6f": { "name": "repo.hooks#1", @@ -566,9 +581,17 @@ "isRpcDeliveryUnknown": true } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "db1cde7aa6f5": { + "name": "workspaceSshConnecting", + "value": false, + "sent": 2 + }, + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -578,10 +601,6 @@ "$rpc": "undefined" } }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" - }, "f0a9f62da106": { "name": "repo.hooks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" @@ -636,17 +655,6 @@ } } }, - "fbfdbb919268": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connecting", - "targetId": "ssh-1" - } - }, "ff43290f6836": { "name": "repo.hooks#1", "args": [ @@ -693,7 +701,7 @@ "mount": "eb79a9b3682a" }, "state": "18e6a3ac6471", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "3571f351281f"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "8d99fc90d0b0"] } }, { @@ -707,14 +715,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -730,14 +738,14 @@ }, "state": "43ead075ce12", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -753,14 +761,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -776,14 +784,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -799,14 +807,14 @@ }, "state": "7e1d82e5b5ed", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -822,14 +830,14 @@ }, "state": "7e1d82e5b5ed", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -845,14 +853,14 @@ }, "state": "7e1d82e5b5ed", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -868,14 +876,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -891,14 +899,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -914,14 +922,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -937,14 +945,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -960,14 +968,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-ssh.connect-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-ssh.connect-1.json index 66c340c3826..7746eb62867 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-ssh.connect-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-ssh.connect-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "5cc1773d06d49d2616da72f2790753322edda6d67e12b5e41116971d34787391", "platform": "darwin", @@ -60,6 +60,11 @@ "source": "repo" } }, + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 + }, "11181309201b": { "name": "ssh.connect#1", "args": [ @@ -93,19 +98,6 @@ } } }, - "1703db1e81e4": { - "name": "workspaceSshState", - "value": { - "error": "Cannot read properties of undefined (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, - "1739575ac53e": { - "name": "workspaceSshConnecting", - "value": true - }, "17e35b25d15d": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -146,20 +138,52 @@ "$rpc": "null" } }, - "3571f351281f": { - "name": "workspaceDetectedAgentIds", - "value": ["codex"] + "1d7499d6b3ac": { + "name": "workspaceSshState", + "value": { + "error": "Connection closed", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 2 + }, + "22ae1e1ae0dd": { + "name": "workspaceSshState", + "value": { + "error": "Unknown method", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 2 + }, + "2dcd5a3a771d": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + }, + "sent": 2 + }, + "2f8e03179edb": { + "name": "workspaceSshState", + "value": { + "error": "Cannot read properties of undefined (reading 'state')", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 2 }, "37921d9fdeb7": { "name": "preflight.detectRemoteAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" }, - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", - "value": { - "$rpc": "null" - } - }, "42fb94e15a80": { "agent": "claude", "connecting": false, @@ -202,10 +226,6 @@ "targetId": "ssh-1" } }, - "43fd3e2f4b53": { - "name": "workspaceSshConnecting", - "value": false - }, "4a24b4b276fa": { "agent": "claude", "connecting": false, @@ -280,6 +300,16 @@ "targetId": "ssh-1" } }, + "610b87531639": { + "name": "workspaceSshState", + "value": { + "error": "outer refused", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 2 + }, "654de1224bc2": { "name": "ssh.connect#1", "args": [ @@ -394,6 +424,11 @@ } } }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 + }, "7c9498659f58": { "name": "ssh.connect#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" @@ -441,14 +476,22 @@ } } }, - "86cc01b1e541": { + "86149ccb0853": { + "name": "workspaceSshConnecting", + "value": true, + "sent": 1 + }, + "8967d4751aaf": { "name": "workspaceSshState", "value": { - "error": "", + "error": { + "$rpc": "null" + }, "reconnectAttempt": 0, - "status": "error", + "status": "connecting", "targetId": "ssh-1" - } + }, + "sent": 1 }, "8a5755fd3ffa": { "name": "ssh.connect#1", @@ -484,6 +527,11 @@ } } }, + "8d99fc90d0b0": { + "name": "workspaceDetectedAgentIds", + "value": ["codex"], + "sent": 1 + }, "8dc4620dc1de": { "agent": "claude", "connecting": false, @@ -496,34 +544,25 @@ "targetId": "ssh-1" } }, - "9164e806ca12": { + "8e62c4ea1c58": { + "name": "workspaceSshState", + "value": { + "error": "transport failure", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + }, + "sent": 2 + }, + "9e66199bd252": { "name": "workspaceSshState", "value": { "error": "Cannot read properties of null (reading 'state')", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" - } - }, - "921f72d7827e": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } - }, - "93dfd351c771": { - "name": "workspaceSshState", - "value": { - "error": "outer refused", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } + }, + "sent": 2 }, "9eb40e943577": { "agent": "claude", @@ -559,14 +598,15 @@ "targetId": "ssh-1" } }, - "a209f2c7160e": { + "a745d7e1dd70": { "name": "workspaceSshState", "value": { - "error": "Unknown method", + "error": "", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" - } + }, + "sent": 2 }, "aa15b77aca73": { "agent": "claude", @@ -622,15 +662,6 @@ } } }, - "b7fa4557dcfa": { - "name": "workspaceSshState", - "value": { - "error": "transport failure", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "c5608f9dd27c": { "name": "ssh.connect#1", "args": [ @@ -708,15 +739,6 @@ "targetId": "ssh-1" } }, - "ce4a98c7ed2f": { - "name": "workspaceSshState", - "value": { - "error": "Connection closed", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "ce5554d7557b": { "agent": "claude", "connecting": false, @@ -751,6 +773,18 @@ "targetId": "ssh-1" } }, + "db1cde7aa6f5": { + "name": "workspaceSshConnecting", + "value": false, + "sent": 2 + }, + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, "e17430747d93": { "agent": "claude", "connecting": false, @@ -841,10 +875,6 @@ } } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -853,10 +883,6 @@ "$rpc": "undefined" } }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" - }, "f066aa754e25": { "agent": "claude", "connecting": false, @@ -872,17 +898,6 @@ "f0a9f62da106": { "name": "repo.hooks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, - "fbfdbb919268": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connecting", - "targetId": "ssh-1" - } } }, "recording": { @@ -897,7 +912,7 @@ "mount": "eb79a9b3682a" }, "state": "18e6a3ac6471", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "3571f351281f"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "8d99fc90d0b0"] } }, { @@ -911,14 +926,14 @@ }, "state": "d86f0ed68c40", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "ce4a98c7ed2f", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "1d7499d6b3ac", + "db1cde7aa6f5" ] } }, @@ -933,14 +948,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -956,14 +971,14 @@ }, "state": "43ead075ce12", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -978,14 +993,14 @@ }, "state": "f066aa754e25", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "1703db1e81e4", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2f8e03179edb", + "db1cde7aa6f5" ] } }, @@ -1001,14 +1016,14 @@ }, "state": "ce5554d7557b", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "1703db1e81e4", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2f8e03179edb", + "db1cde7aa6f5" ] } }, @@ -1023,14 +1038,14 @@ }, "state": "cabfead2f0ff", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "9164e806ca12", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "9e66199bd252", + "db1cde7aa6f5" ] } }, @@ -1046,14 +1061,14 @@ }, "state": "e17430747d93", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "9164e806ca12", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "9e66199bd252", + "db1cde7aa6f5" ] } }, @@ -1068,14 +1083,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1091,14 +1106,14 @@ }, "state": "43ead075ce12", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1113,14 +1128,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1136,14 +1151,14 @@ }, "state": "43ead075ce12", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1158,14 +1173,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1181,14 +1196,14 @@ }, "state": "43ead075ce12", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -1203,14 +1218,14 @@ }, "state": "4ca864d39d04", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "93dfd351c771", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "610b87531639", + "db1cde7aa6f5" ] } }, @@ -1226,14 +1241,14 @@ }, "state": "4a24b4b276fa", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "93dfd351c771", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "610b87531639", + "db1cde7aa6f5" ] } }, @@ -1248,14 +1263,14 @@ }, "state": "5313715e0fbb", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "86cc01b1e541", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "a745d7e1dd70", + "db1cde7aa6f5" ] } }, @@ -1271,14 +1286,14 @@ }, "state": "aa15b77aca73", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "86cc01b1e541", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "a745d7e1dd70", + "db1cde7aa6f5" ] } }, @@ -1293,14 +1308,14 @@ }, "state": "8dc4620dc1de", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "a209f2c7160e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "22ae1e1ae0dd", + "db1cde7aa6f5" ] } }, @@ -1316,14 +1331,14 @@ }, "state": "9eb40e943577", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "a209f2c7160e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "22ae1e1ae0dd", + "db1cde7aa6f5" ] } }, @@ -1338,14 +1353,14 @@ }, "state": "6d2db0d7fee0", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "b7fa4557dcfa", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "8e62c4ea1c58", + "db1cde7aa6f5" ] } }, @@ -1361,14 +1376,14 @@ }, "state": "42fb94e15a80", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "b7fa4557dcfa", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "8e62c4ea1c58", + "db1cde7aa6f5" ] } }, @@ -1383,14 +1398,14 @@ }, "state": "5313715e0fbb", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "86cc01b1e541", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "a745d7e1dd70", + "db1cde7aa6f5" ] } }, @@ -1406,14 +1421,14 @@ }, "state": "aa15b77aca73", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "86cc01b1e541", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "a745d7e1dd70", + "db1cde7aa6f5" ] } } diff --git a/mobile/rpc-foundation/goldens/matrix-terminal.query-reply-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-terminal.query-reply-terminal.send-1.json index 18c9f453a4c..4d98d857f47 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.query-reply-terminal.send-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.query-reply-terminal.send-1.json @@ -3,9 +3,9 @@ "family": "terminal.query-reply", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "15b5694a63d54aeb4f4d9a861729e7e3b42ce06b15af6784fcb1afab744ed18b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-orchestration.workerterminaluserinput-1.json b/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-orchestration.workerterminaluserinput-1.json index 29893a8dfae..29213197dd5 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-orchestration.workerterminaluserinput-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-orchestration.workerterminaluserinput-1.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "68c039f74da08523d67d8d5b0a178c1d12507ec88d25891cd1377cd3fb40205c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-terminal.send-1.json index 2952282b1eb..39adb2ae774 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-terminal.send-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-terminal.send-1.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "19d55a77e9c2f64f062070c9985f756e0ba72f3ccc3c884a80843fe888f42a47", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-1.json b/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-1.json index e9aaecdcb30..3166f7bffff 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-1.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "6913de3f553b47a7e6663e21b0b93e97df26405c210db876f0b9593bd38936be", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-2.json b/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-2.json index 9d37024ef33..d9729f4528e 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-2.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-2.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "da13ec556c0f672371a8cd2aabd4dcc68001c0f9aa47015dfa4b5937355c4c2c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-terminal.viewport-refit-terminal.updateviewport-1.json b/mobile/rpc-foundation/goldens/matrix-terminal.viewport-refit-terminal.updateviewport-1.json index b6bc38f63e8..f1baaa3f994 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.viewport-refit-terminal.updateviewport-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.viewport-refit-terminal.updateviewport-1.json @@ -3,9 +3,9 @@ "family": "terminal.viewport-refit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "bde05ca916393d7f5ccd48686cf13a52fb2dfa599ea874b084c58bd59adb7e7f", "platform": "darwin", @@ -13,12 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "05338e19b42a": { - "name": "subscribe-terminal", - "value": { - "handle": "terminal-1" - } - }, "121036dfcf5a": { "name": "terminal.updateViewport#1", "args": [ @@ -103,6 +97,21 @@ } } }, + "37024426b62f": { + "name": "subscribe-terminal", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "3c255f83f3e1": { + "name": "reflow", + "value": { + "cols": 100, + "rows": 30 + }, + "sent": 1 + }, "3f6a9fc794e0": { "name": "terminal.updateViewport#1", "args": [ @@ -219,25 +228,6 @@ } } }, - "472aa5c4220c": { - "name": "measure-fit", - "value": { - "frameHeight": 600 - } - }, - "58cda7b4ca05": { - "name": "reflow", - "value": { - "cols": 100, - "rows": 30 - } - }, - "5fde1571425b": { - "name": "unsubscribe-terminal", - "value": { - "handle": "terminal-1" - } - }, "7e0619ad636f": { "measured": true, "viewport": { @@ -376,6 +366,20 @@ } } }, + "a1c0c7168922": { + "name": "unsubscribe-terminal", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "a993d0d38252": { + "name": "measure-fit", + "value": { + "frameHeight": 600 + }, + "sent": 0 + }, "ba81b169e3b7": { "name": "terminal.updateViewport#1", "args": [ @@ -523,7 +527,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "58cda7b4ca05"] + "effects": ["a993d0d38252", "3c255f83f3e1"] } }, { @@ -536,7 +540,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -549,7 +553,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -562,7 +566,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -575,7 +579,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -588,7 +592,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -601,7 +605,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -614,7 +618,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -627,7 +631,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -640,7 +644,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } }, { @@ -653,7 +657,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-transport.capability-probe-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-transport.capability-probe-status.get-1.json index 5d8b8617bab..ebd7afc6ef6 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.capability-probe-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.capability-probe-status.get-1.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "874b1a120443ee679e2f4b3974762fd84fc929e93a2117b20bbb0cf373316616", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-transport.host-status-gates-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-transport.host-status-gates-status.get-1.json index 2262a26d90f..b04b4063aea 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.host-status-gates-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.host-status-gates-status.get-1.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "d6be62e5eb2737d75634c053098d06a4bb175c64ff915cec6ead79922492a068", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-direct-status.json b/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-direct-status.json index e8b97e5ef10..0bafe892b58 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-direct-status.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-direct-status.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "1d032c86e7cc12efa3d5044339cb990bd258d830119d0e7b61d1b995b4df29a3", "platform": "darwin", @@ -357,6 +357,11 @@ "a7d5becc0aed": { "outcome": "relay" }, + "b2a8517fe750": { + "name": "candidate-closed", + "value": "direct", + "sent": 2 + }, "c0c86e67c300": { "name": "status.get#2", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" @@ -425,10 +430,6 @@ "isRpcDeliveryUnknown": true } } - }, - "f203320e31e9": { - "name": "candidate-closed", - "value": "direct" } }, "recording": { @@ -443,7 +444,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -455,7 +456,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -467,7 +468,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -479,7 +480,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -491,7 +492,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -503,7 +504,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -515,7 +516,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -527,7 +528,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -539,7 +540,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -551,7 +552,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -563,7 +564,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-relay-status.json b/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-relay-status.json index c2f17d7fb45..58ed79961fb 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-relay-status.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-relay-status.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "048ee6d7848e0e4b8d6463ff9dc4124bfd478114ab87f6b52ff82a1dfd6ebc04", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, "03b8b5bae048": { "name": "status.get#2", "args": [ @@ -301,6 +297,11 @@ "a7d5becc0aed": { "outcome": "relay" }, + "b2a8517fe750": { + "name": "candidate-closed", + "value": "direct", + "sent": 2 + }, "b8e45ac26312": { "name": "status.get#2", "args": [ @@ -372,6 +373,11 @@ "name": "status.get#2", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" }, + "d433a326314e": { + "name": "candidate-closed", + "value": "relay", + "sent": 2 + }, "d9b301beff12": { "outcome": "direct" }, @@ -405,10 +411,6 @@ } } }, - "f203320e31e9": { - "name": "candidate-closed", - "value": "direct" - }, "f699294abe81": { "name": "status.get#2", "args": [ @@ -456,7 +458,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -468,7 +470,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -480,7 +482,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -492,7 +494,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -504,7 +506,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -516,7 +518,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } }, { @@ -528,7 +530,7 @@ "race": "93edac3a1c3e" }, "state": "d9b301beff12", - "effects": ["0193ae4dbb38"] + "effects": ["d433a326314e"] } }, { @@ -540,7 +542,7 @@ "race": "93edac3a1c3e" }, "state": "d9b301beff12", - "effects": ["0193ae4dbb38"] + "effects": ["d433a326314e"] } }, { @@ -552,7 +554,7 @@ "race": "93edac3a1c3e" }, "state": "d9b301beff12", - "effects": ["0193ae4dbb38"] + "effects": ["d433a326314e"] } }, { @@ -564,7 +566,7 @@ "race": "93edac3a1c3e" }, "state": "d9b301beff12", - "effects": ["0193ae4dbb38"] + "effects": ["d433a326314e"] } }, { @@ -576,7 +578,7 @@ "race": "93edac3a1c3e" }, "state": "d9b301beff12", - "effects": ["0193ae4dbb38"] + "effects": ["d433a326314e"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.catalog-snapshot-worktree.ps-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.catalog-snapshot-worktree.ps-1.json index 261b7ab64f0..09157dc8b7c 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.catalog-snapshot-worktree.ps-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.catalog-snapshot-worktree.ps-1.json @@ -3,10 +3,10 @@ "family": "worktree.catalog-snapshot", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "6119d409e1958877e4a04b3901f94a3609ac0420f5ca02af20eb8dae5cbf3408", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "95ca47f382997c412da974e564a46b1ae0c20d6e0f3ca14258d33c8d8b51a160", "platform": "darwin", "scenarioVersion": 1, @@ -112,12 +112,19 @@ "admitted": "unadmitted", "fetched": "unfetched" }, - "2d40d1d38104": { - "name": "unhandled-rejection", + "3ef9b57ea9ad": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, "value": { - "category": "Error", - "isRpcDeliveryUnknown": false, - "message": "Unsupported observation: function" + "kind": "response", + "pending": { + "admission": { + "kind": "invalid" + }, + "client": "logical-client", + "hostId": "host-1" + } } }, "4262ba495b1b": { @@ -258,6 +265,29 @@ "status": "pending", "startedAt": 0 }, + "9948855e8b8d": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "response", + "pending": { + "admission": { + "kind": "full", + "snapshotId": "snapshot-1", + "worktrees": [ + { + "displayName": "One", + "repo": "Repo", + "worktreeId": "w-1" + } + ] + }, + "client": "logical-client", + "hostId": "host-1" + } + } + }, "a0fab6bf1fb0": { "name": "worktree.ps#1", "args": [ @@ -584,10 +614,10 @@ "sender": ["227f9e3de4fa"], "payloads": ["a87f1f91dc98"], "settlements": { - "fetch": "9270aeb7d9c6" + "fetch": "9948855e8b8d" }, "state": "ab1a9ba6301c", - "effects": ["2d40d1d38104"] + "effects": [] } }, { @@ -596,10 +626,10 @@ "sender": ["ad584cc963bb"], "payloads": ["a87f1f91dc98"], "settlements": { - "fetch": "9270aeb7d9c6" + "fetch": "3ef9b57ea9ad" }, "state": "50c4271e912d", - "effects": ["2d40d1d38104"] + "effects": [] } }, { @@ -608,10 +638,10 @@ "sender": ["b670d230caf2"], "payloads": ["a87f1f91dc98"], "settlements": { - "fetch": "9270aeb7d9c6" + "fetch": "3ef9b57ea9ad" }, "state": "50c4271e912d", - "effects": ["2d40d1d38104"] + "effects": [] } }, { @@ -620,10 +650,10 @@ "sender": ["4262ba495b1b"], "payloads": ["a87f1f91dc98"], "settlements": { - "fetch": "9270aeb7d9c6" + "fetch": "3ef9b57ea9ad" }, "state": "50c4271e912d", - "effects": ["2d40d1d38104"] + "effects": [] } }, { @@ -632,10 +662,10 @@ "sender": ["5a288976750e"], "payloads": ["a87f1f91dc98"], "settlements": { - "fetch": "9270aeb7d9c6" + "fetch": "3ef9b57ea9ad" }, "state": "50c4271e912d", - "effects": ["2d40d1d38104"] + "effects": [] } }, { @@ -644,10 +674,10 @@ "sender": ["f5d207eddd1d"], "payloads": ["a87f1f91dc98"], "settlements": { - "fetch": "9270aeb7d9c6" + "fetch": "3ef9b57ea9ad" }, "state": "50c4271e912d", - "effects": ["2d40d1d38104"] + "effects": [] } }, { diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.create-retry-worktree.create-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.create-retry-worktree.create-1.json index 9de86e4a0c5..246a6130694 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.create-retry-worktree.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.create-retry-worktree.create-1.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "e93a36ef900de27e1a566cdb2389ba4f900a330eadbb476b9bfb1ef05707b352", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.home-catalog-worktree.ps-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.home-catalog-worktree.ps-1.json index 41e825d7506..0d7b984a6aa 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.home-catalog-worktree.ps-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.home-catalog-worktree.ps-1.json @@ -3,10 +3,10 @@ "family": "worktree.home-catalog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "6119d409e1958877e4a04b3901f94a3609ac0420f5ca02af20eb8dae5cbf3408", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "fa0e28a167a5fba6fe7ffebb9f4ad28dd413d601c07116a24a7781d156f54beb", "platform": "darwin", "scenarioVersion": 1, @@ -253,7 +253,7 @@ } } }, - "8944b50988b9": { + "86091b4d2b73": { "name": "info", "value": { "host-1": { @@ -268,7 +268,8 @@ }, "totalWorktrees": 2 } - } + }, + "sent": 1 }, "9270aeb7d9c6": { "status": "pending", @@ -373,7 +374,22 @@ } } }, - "a3336f998e22": { + "a12f66e6b7a8": { + "name": "info", + "value": { + "host-1": { + "activeCount": 0, + "countsProvenAt": 1767225600000, + "hostId": "host-1", + "lastActiveWorktree": { + "$rpc": "null" + }, + "totalWorktrees": 0 + } + }, + "sent": 1 + }, + "b2b1fae7e3de": { "name": "info", "value": { "host-1": { @@ -385,7 +401,8 @@ }, "totalWorktrees": 0 } - } + }, + "sent": 1 }, "bc1a8e138f82": { "name": "worktree.ps#1", @@ -412,20 +429,6 @@ "startedAt": 0 } }, - "cca1bdaf2563": { - "name": "info", - "value": { - "host-1": { - "activeCount": 0, - "countsProvenAt": 1767225600000, - "hostId": "host-1", - "lastActiveWorktree": { - "$rpc": "null" - }, - "totalWorktrees": 0 - } - } - }, "d0ec31ab66d5": { "host-1": { "activeCount": 0, @@ -537,7 +540,7 @@ "load": "eb79a9b3682a" }, "state": "39b7354b00f4", - "effects": ["8944b50988b9"] + "effects": ["86091b4d2b73"] } }, { @@ -549,7 +552,7 @@ "load": "eb79a9b3682a" }, "state": "51d64b49c1ab", - "effects": ["a3336f998e22"] + "effects": ["b2b1fae7e3de"] } }, { @@ -561,7 +564,7 @@ "load": "eb79a9b3682a" }, "state": "51d64b49c1ab", - "effects": ["a3336f998e22"] + "effects": ["b2b1fae7e3de"] } }, { @@ -573,7 +576,7 @@ "load": "eb79a9b3682a" }, "state": "d0ec31ab66d5", - "effects": ["cca1bdaf2563"] + "effects": ["a12f66e6b7a8"] } }, { @@ -585,7 +588,7 @@ "load": "eb79a9b3682a" }, "state": "d0ec31ab66d5", - "effects": ["cca1bdaf2563"] + "effects": ["a12f66e6b7a8"] } }, { @@ -597,7 +600,7 @@ "load": "eb79a9b3682a" }, "state": "d0ec31ab66d5", - "effects": ["cca1bdaf2563"] + "effects": ["a12f66e6b7a8"] } }, { @@ -609,7 +612,7 @@ "load": "eb79a9b3682a" }, "state": "51d64b49c1ab", - "effects": ["a3336f998e22"] + "effects": ["b2b1fae7e3de"] } }, { @@ -621,7 +624,7 @@ "load": "eb79a9b3682a" }, "state": "51d64b49c1ab", - "effects": ["a3336f998e22"] + "effects": ["b2b1fae7e3de"] } }, { @@ -633,7 +636,7 @@ "load": "eb79a9b3682a" }, "state": "51d64b49c1ab", - "effects": ["a3336f998e22"] + "effects": ["b2b1fae7e3de"] } }, { @@ -645,7 +648,7 @@ "load": "eb79a9b3682a" }, "state": "51d64b49c1ab", - "effects": ["a3336f998e22"] + "effects": ["b2b1fae7e3de"] } }, { @@ -657,7 +660,7 @@ "load": "eb79a9b3682a" }, "state": "51d64b49c1ab", - "effects": ["a3336f998e22"] + "effects": ["b2b1fae7e3de"] } } ] diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolvemrbase-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolvemrbase-1.json index 15ce7cb159a..5b6c488132d 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolvemrbase-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolvemrbase-1.json @@ -3,9 +3,9 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "a84f8a5acfd428eb77b5c02a3de0fa8b780c666db31bbe574ecf76cdf84adeb2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolveprbase-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolveprbase-1.json index e4bae1bd86a..c5327761ea9 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolveprbase-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolveprbase-1.json @@ -3,9 +3,9 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "45783a7cbb44b04dbbd6bfd6735799bb4c75e503f43f1821cf8640d11f7464ad", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.retired-names-worktree.listretirednames-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.retired-names-worktree.listretirednames-1.json index afe6e6189f4..16f55c82ade 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.retired-names-worktree.listretirednames-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.retired-names-worktree.listretirednames-1.json @@ -3,10 +3,10 @@ "family": "worktree.retired-names", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "6119d409e1958877e4a04b3901f94a3609ac0420f5ca02af20eb8dae5cbf3408", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "d321d6c17e67ae90f6ceefb775495ff765a86a35423ed33a212e71ec5e9e94aa", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.review-link-worktree.set-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.review-link-worktree.set-1.json index 85942e9517a..b3708de7e4e 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.review-link-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.review-link-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "2fc093ec505bfac04a4ff0adab991baeba985253486dbe9e3ec9884b8d5f0920", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.runtime-capabilities-status.get-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.runtime-capabilities-status.get-1.json index 2defe7f019e..14045696de2 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.runtime-capabilities-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.runtime-capabilities-status.get-1.json @@ -3,9 +3,9 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "f70c6b1753377b5a502bf7d1e69dc95617f24c42137471320eb393567efbe735", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.setup-hook-trust-ui.set-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.setup-hook-trust-ui.set-1.json index 820dbb2d305..a84923cddcf 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.setup-hook-trust-ui.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.setup-hook-trust-ui.set-1.json @@ -3,9 +3,9 @@ "family": "worktree.setup-hook-trust", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "8487fd14ed779708415b264e2b80b26b0d5094e379a04f4f32c2cd75ec469182", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/native-chat-image-paste-single.json b/mobile/rpc-foundation/goldens/native-chat-image-paste-single.json new file mode 100644 index 00000000000..10cb836769f --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-single.json @@ -0,0 +1,138 @@ +{ + "operation": "nativeChat.image-paste", + "family": "nativeChat.image-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "a330bd18a22c002ac04d0fa043561740c5cea627516bbf965fc1bd52533c2e35", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "47a22f9d0047": { + "failure": { + "$rpc": "null" + }, + "pasted": true + }, + "518651fd2840": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "b83e56a4ec7e": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + } + }, + "recording": { + "scenario": "native-chat-image-paste-single", + "checkpoints": [ + { + "id": "pasted", + "observation": { + "sender": ["52ae659a3d36", "518651fd2840"], + "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "settlements": { + "one": "84e5ca07cb7a" + }, + "state": "47a22f9d0047", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-paste-stops-on-rejection.json b/mobile/rpc-foundation/goldens/native-chat-image-paste-stops-on-rejection.json new file mode 100644 index 00000000000..47a1c2cc14e --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-stops-on-rejection.json @@ -0,0 +1,138 @@ +{ + "operation": "nativeChat.image-paste", + "family": "nativeChat.image-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "77fd03130dc2faf4d17b018c6c3314076a02b5fe9c531921ffb1a43e8a150d2f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "748c76b444c4": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "c299c7a89e41": { + "failure": { + "$rpc": "null" + }, + "pasted": false + }, + "ee5ea32bdaf0": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + } + }, + "recording": { + "scenario": "native-chat-image-paste-stops-on-rejection", + "checkpoints": [ + { + "id": "stopped", + "observation": { + "sender": ["52ae659a3d36", "748c76b444c4"], + "payloads": ["242d9ae1137d", "ee5ea32bdaf0"], + "settlements": { + "two": "7ed3d39f0607" + }, + "state": "c299c7a89e41", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-paste-trailing-image.json b/mobile/rpc-foundation/goldens/native-chat-image-paste-trailing-image.json new file mode 100644 index 00000000000..86afbf9bc6c --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-trailing-image.json @@ -0,0 +1,138 @@ +{ + "operation": "nativeChat.image-paste", + "family": "nativeChat.image-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "ebf9397271bfd5462403e60748f5bd505d554eba5f74ce79a8c40550e9719dcc", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "47a22f9d0047": { + "failure": { + "$rpc": "null" + }, + "pasted": true + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "ee5ea32bdaf0": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "ff84951eb090": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + } + }, + "recording": { + "scenario": "native-chat-image-paste-trailing-image", + "checkpoints": [ + { + "id": "pasted", + "observation": { + "sender": ["52ae659a3d36", "ff84951eb090"], + "payloads": ["242d9ae1137d", "ee5ea32bdaf0"], + "settlements": { + "trailing": "84e5ca07cb7a" + }, + "state": "47a22f9d0047", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-paste-two-images.json b/mobile/rpc-foundation/goldens/native-chat-image-paste-two-images.json new file mode 100644 index 00000000000..d2c7ff1ebc1 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-two-images.json @@ -0,0 +1,184 @@ +{ + "operation": "nativeChat.image-paste", + "family": "nativeChat.image-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "b6595de485ed071674051ce0d2b44a604ec21d2614b646d8917a9130a58a48cf", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "15497aafcc27": { + "name": "terminal.send#3", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/b.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "2787a9ee5adc": { + "name": "terminal.send#3", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/b.png\u001b[201~ " + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "47a22f9d0047": { + "failure": { + "$rpc": "null" + }, + "pasted": true + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "ee5ea32bdaf0": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "ff84951eb090": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + } + }, + "recording": { + "scenario": "native-chat-image-paste-two-images", + "checkpoints": [ + { + "id": "pasted-both", + "observation": { + "sender": ["52ae659a3d36", "ff84951eb090", "2787a9ee5adc"], + "payloads": ["242d9ae1137d", "ee5ea32bdaf0", "15497aafcc27"], + "settlements": { + "two": "84e5ca07cb7a" + }, + "state": "47a22f9d0047", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json new file mode 100644 index 00000000000..89bdc32b170 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json @@ -0,0 +1,46 @@ +{ + "operation": "nativeChat.image-upload", + "family": "nativeChat.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "1f513883eb62cdd1673eb58809817e2b2f5fd64b74f80ed6e3b9d8c2ef2d33e9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "25716369cd8f": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [] + }, + "4ea1010bf65b": { + "failure": { + "$rpc": "null" + }, + "uploaded": [] + } + }, + "recording": { + "scenario": "native-chat-image-upload-cancelled", + "checkpoints": [ + { + "id": "no-wire", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "cancelled": "25716369cd8f" + }, + "state": "4ea1010bf65b", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-second-fails.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-second-fails.json new file mode 100644 index 00000000000..87b1a7e9bfd --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-second-fails.json @@ -0,0 +1,213 @@ +{ + "operation": "nativeChat.image-upload", + "family": "nativeChat.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "181b02243b1ecf98364473ee0b3f4c82a6037b5f5bae33703ab4f611cc050db4", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5a2c5dc0b29f": { + "name": "clipboard.commitImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": "/tmp/img-1.png" + } + } + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "765ab192e1a5": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Image is too large", + "isRpcDeliveryUnknown": false + } + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "972fbf8b960e": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + }, + "b2b1a4389f58": { + "failure": "Image is too large", + "uploaded": "unuploaded" + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "b8a4b7e04786": { + "name": "clipboard.startImageUpload#2", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "too_large", + "message": "Image is too large" + }, + "id": "frame-4", + "ok": false + } + } + }, + "f0a3d28c980b": { + "name": "image-uploaded", + "value": { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-1.png", + "previewUri": "data:image/png;base64,AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "sent": 3 + }, + "f1a3d38271bc": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "received": 32 + } + } + } + }, + "f7c8687f65d7": { + "name": "clipboard.startImageUpload#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + } + }, + "recording": { + "scenario": "native-chat-image-upload-second-fails", + "checkpoints": [ + { + "id": "partial", + "observation": { + "sender": ["7e48c58139e5", "f1a3d38271bc", "5a2c5dc0b29f", "b8a4b7e04786"], + "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e", "f7c8687f65d7"], + "settlements": { + "two": "765ab192e1a5" + }, + "state": "b2b1a4389f58", + "effects": ["5f71b4d3d25c", "f0a3d28c980b"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json new file mode 100644 index 00000000000..53018828988 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json @@ -0,0 +1,184 @@ +{ + "operation": "nativeChat.image-upload", + "family": "nativeChat.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "d7dca3742c4086f9ced0ba4b2f6c32ee9fa9272a5a955e8623fdc9cdb4c71528", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2b1dce5b8532": { + "name": "image-uploaded", + "value": { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-1.png", + "previewUri": "file:///a.png" + }, + "sent": 3 + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5a2c5dc0b29f": { + "name": "clipboard.commitImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": "/tmp/img-1.png" + } + } + }, + "5c7ed03288e6": { + "failure": { + "$rpc": "null" + }, + "uploaded": [ + { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-1.png", + "previewUri": "file:///a.png" + } + ] + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "972fbf8b960e": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + }, + "9a61808dee44": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-1.png", + "previewUri": "file:///a.png" + } + ] + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "f1a3d38271bc": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "received": 32 + } + } + } + } + }, + "recording": { + "scenario": "native-chat-image-upload-single", + "checkpoints": [ + { + "id": "uploaded", + "observation": { + "sender": ["7e48c58139e5", "f1a3d38271bc", "5a2c5dc0b29f"], + "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e"], + "settlements": { + "normal": "9a61808dee44" + }, + "state": "5c7ed03288e6", + "effects": ["5f71b4d3d25c", "2b1dce5b8532"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-start-refused.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-start-refused.json new file mode 100644 index 00000000000..06793d22952 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-start-refused.json @@ -0,0 +1,92 @@ +{ + "operation": "nativeChat.image-upload", + "family": "nativeChat.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "09fd9bf97a4da7313e24f8c333b66c7c1af927bbea0a6d9fef9803856a608c78", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "765ab192e1a5": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Image is too large", + "isRpcDeliveryUnknown": false + } + }, + "b2b1a4389f58": { + "failure": "Image is too large", + "uploaded": "unuploaded" + }, + "ec6fd7f06461": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "too_large", + "message": "Image is too large" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "native-chat-image-upload-start-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["ec6fd7f06461"], + "payloads": ["520b3fe0fb07"], + "settlements": { + "normal": "765ab192e1a5" + }, + "state": "b2b1a4389f58", + "effects": ["5f71b4d3d25c"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json new file mode 100644 index 00000000000..0058c4f6d7f --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json @@ -0,0 +1,329 @@ +{ + "operation": "nativeChat.image-upload", + "family": "nativeChat.image-upload", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", + "scenarioSha256": "db0397f8f6ae28de0cc7afd91552ee9416d7f7054a76a42aac02f480c6f363d5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "10af51833249": { + "name": "clipboard.startImageUpload#2", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "uploadId": "upload-2" + } + } + } + }, + "2c9004a8efb6": { + "name": "clipboard.commitImageUpload#2", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-2" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": "/tmp/img-2.png" + } + } + }, + "4a3413975ca6": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-1.png", + "previewUri": "data:image/png;base64,AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-2.png", + "previewUri": "file:///b.png" + } + ] + }, + "520b3fe0fb07": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + }, + "5a2c5dc0b29f": { + "name": "clipboard.commitImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.commitImageUpload" + }, + { + "name": "params", + "value": { + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": "/tmp/img-1.png" + } + } + }, + "5f71b4d3d25c": { + "name": "upload-start", + "value": {}, + "sent": 0 + }, + "7e266c7cadbb": { + "name": "clipboard.commitImageUpload#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-2\"}}" + }, + "7e48c58139e5": { + "name": "clipboard.startImageUpload#1", + "args": [ + { + "name": "method", + "value": "clipboard.startImageUpload" + }, + { + "name": "params", + "value": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + } + }, + "8990f369e5a4": { + "name": "clipboard.appendImageUploadChunk#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-2\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "8d51e9899739": { + "failure": { + "$rpc": "null" + }, + "uploaded": [ + { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-1.png", + "previewUri": "data:image/png;base64,AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-2.png", + "previewUri": "file:///b.png" + } + ] + }, + "8ea238c571c4": { + "name": "clipboard.appendImageUploadChunk#2", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-2" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-5", + "ok": true, + "result": { + "received": 32 + } + } + } + }, + "972fbf8b960e": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + }, + "a9cb5eed1060": { + "name": "image-uploaded", + "value": { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-2.png", + "previewUri": "file:///b.png" + }, + "sent": 6 + }, + "b69a955ea891": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + }, + "f0a3d28c980b": { + "name": "image-uploaded", + "value": { + "contentFingerprint": "f75f583c67e2aaf12284c94d09b56e3caa9d7b93b71565d2fd3e09ef635cef8d", + "path": "/tmp/img-1.png", + "previewUri": "data:image/png;base64,AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "sent": 3 + }, + "f1a3d38271bc": { + "name": "clipboard.appendImageUploadChunk#1", + "args": [ + { + "name": "method", + "value": "clipboard.appendImageUploadChunk" + }, + { + "name": "params", + "value": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "offset": 0, + "uploadId": "upload-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "received": 32 + } + } + } + }, + "f7c8687f65d7": { + "name": "clipboard.startImageUpload#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + } + }, + "recording": { + "scenario": "native-chat-image-upload-two", + "checkpoints": [ + { + "id": "uploaded-both", + "observation": { + "sender": [ + "7e48c58139e5", + "f1a3d38271bc", + "5a2c5dc0b29f", + "10af51833249", + "8ea238c571c4", + "2c9004a8efb6" + ], + "payloads": [ + "520b3fe0fb07", + "b69a955ea891", + "972fbf8b960e", + "f7c8687f65d7", + "8990f369e5a4", + "7e266c7cadbb" + ], + "settlements": { + "two": "4a3413975ca6" + }, + "state": "8d51e9899739", + "effects": ["5f71b4d3d25c", "f0a3d28c980b", "a9cb5eed1060"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json b/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json new file mode 100644 index 00000000000..7f326b91250 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json @@ -0,0 +1,90 @@ +{ + "operation": "session.native-chat-readability", + "family": "session.native-chat-readability", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "46d80cfd496b06ce42ff1ed985e513bbf49b5188bc1128c6d01a74675741935a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0f1ed2b7a695": { + "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": [ + { + "connectionId": { + "$rpc": "null" + }, + "id": "repo-1" + } + ] + } + } + } + }, + "6bdbf70bafa2": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "dcf89ce6b4ca": { + "readable": true, + "worktreeId": "repo-1::/w" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-readability-local-repo", + "checkpoints": [ + { + "id": "readable", + "observation": { + "sender": ["0f1ed2b7a695"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcf89ce6b4ca", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-readability-refused.json b/mobile/rpc-foundation/goldens/native-chat-readability-refused.json new file mode 100644 index 00000000000..a2ef47d4af5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-readability-refused.json @@ -0,0 +1,84 @@ +{ + "operation": "session.native-chat-readability", + "family": "session.native-chat-readability", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "08a9ab4f180f2d6bb44d2a23f87be0443e8dfdde15f966458270a1bb6f131e0b", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0b8777edb86c": { + "readable": false, + "worktreeId": "repo-1::/w" + }, + "67f6f11ff64a": { + "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": "internal", + "message": "Scan failed" + }, + "id": "frame-1", + "ok": false + } + } + }, + "6bdbf70bafa2": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-readability-refused", + "checkpoints": [ + { + "id": "unreadable", + "observation": { + "sender": ["67f6f11ff64a"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json b/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json new file mode 100644 index 00000000000..1a0f442d965 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json @@ -0,0 +1,88 @@ +{ + "operation": "session.native-chat-readability", + "family": "session.native-chat-readability", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "0c6afb12dce2c402dfd7ac24eb4a306e09fcacc78415ecb47b5320b2fe8102b5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0b8777edb86c": { + "readable": false, + "worktreeId": "repo-1::/w" + }, + "6bdbf70bafa2": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "bae1ab4f96f9": { + "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": [ + { + "connectionId": "ssh-1", + "id": "repo-1" + } + ] + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-readability-remote-repo", + "checkpoints": [ + { + "id": "unreadable", + "observation": { + "sender": ["bae1ab4f96f9"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0b8777edb86c", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-session-option-pick-empty.json b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-empty.json new file mode 100644 index 00000000000..6cb77130490 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-empty.json @@ -0,0 +1,45 @@ +{ + "operation": "nativeChat.session-option-pick", + "family": "nativeChat.session-option-pick", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "55f675f7d3f380db10dd966ae6d011927dbc7eb8f3abd36e09edf5043ad1131c", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0aa1124bf746": { + "settled": "settled" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-session-option-pick-empty", + "checkpoints": [ + { + "id": "no-wire", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "empty": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-session-option-pick-refused.json b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-refused.json new file mode 100644 index 00000000000..fb356b5db39 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-refused.json @@ -0,0 +1,91 @@ +{ + "operation": "nativeChat.session-option-pick", + "family": "nativeChat.session-option-pick", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "57b60064eca4526e5d533de5862e7e86ba69b6722cd04692228bdc768486cd76", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "087f0393107f": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "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 + } + } + }, + "0aa1124bf746": { + "settled": "settled" + }, + "9c0980cfe789": { + "name": "settings.mutateNativeChatSessionOptions#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-session-option-pick-refused", + "checkpoints": [ + { + "id": "refusal-swallowed", + "observation": { + "sender": ["087f0393107f"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-session-option-pick-written.json b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-written.json new file mode 100644 index 00000000000..c3a8cfe1a9b --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-written.json @@ -0,0 +1,90 @@ +{ + "operation": "nativeChat.session-option-pick", + "family": "nativeChat.session-option-pick", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "a180b7ae1f84bc69d7819c7c17b1e2915cb380e8ea8543d68fe6777feb90d0bd", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0aa1124bf746": { + "settled": "settled" + }, + "738c95d85c66": { + "name": "settings.mutateNativeChatSessionOptions#1", + "args": [ + { + "name": "method", + "value": "settings.mutateNativeChatSessionOptions" + }, + { + "name": "params", + "value": { + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ], + "type": "apply-picks" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "applied": true + } + } + } + }, + "9c0980cfe789": { + "name": "settings.mutateNativeChatSessionOptions#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-session-option-pick-written", + "checkpoints": [ + { + "id": "written", + "observation": { + "sender": ["738c95d85c66"], + "payloads": ["9c0980cfe789"], + "settlements": { + "pick": "eb79a9b3682a" + }, + "state": "0aa1124bf746", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json b/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json new file mode 100644 index 00000000000..5cc91781681 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json @@ -0,0 +1,191 @@ +{ + "operation": "session.native-chat-stop", + "family": "session.native-chat-stop", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "a72f08c12c244912912be34deb3ec12bada6b74f1bc29c0034b347dcba9ddb10", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "1a91fe5e4856": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "1d3e6369460d": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "538133eba781": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "60fbbfd9bd11": { + "name": "cancel-pending", + "value": {}, + "sent": 0 + }, + "86ab67d60a77": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "debf84af8d66": { + "errors": [] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-stop-accepted", + "checkpoints": [ + { + "id": "first-accepted", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2"], + "payloads": ["1a91fe5e4856", "191580ba859d"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + }, + { + "id": "settled", + "observation": { + "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], + "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "debf84af8d66", + "effects": ["60fbbfd9bd11"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json b/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json new file mode 100644 index 00000000000..544677d255c --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json @@ -0,0 +1,140 @@ +{ + "operation": "session.native-chat-stop", + "family": "session.native-chat-stop", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "a7419d4b3e00d49ebdac7db4fa97ad9d3af9516201f9102beed0376b181e74a5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "161bbe9b0076": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "1a91fe5e4856": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "492369cdce20": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "60fbbfd9bd11": { + "name": "cancel-pending", + "value": {}, + "sent": 0 + }, + "63cd34a91124": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 80, + "settledAt": 120, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "e6e087b39540": { + "errors": ["Stop not sent"] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-stop-both-rejected", + "checkpoints": [ + { + "id": "reported", + "observation": { + "sender": ["492369cdce20", "63cd34a91124"], + "payloads": ["1a91fe5e4856", "161bbe9b0076"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "e6e087b39540", + "effects": ["60fbbfd9bd11"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json b/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json new file mode 100644 index 00000000000..d1ccf8bffb7 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json @@ -0,0 +1,132 @@ +{ + "operation": "session.native-chat-stop", + "family": "session.native-chat-stop", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "977ee5602e3a612d537686d17d15312f8b0e775df8800b27bb0d42b8642b4675", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "161bbe9b0076": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "1a91fe5e4856": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "60fbbfd9bd11": { + "name": "cancel-pending", + "value": {}, + "sent": 0 + }, + "9fe5713ca2d1": { + "errors": ["Stop unconfirmed — check chat before retrying"] + }, + "a60dea16497c": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Connection lost", + "isRpcDeliveryUnknown": true + } + } + }, + "c7ad8e4bd48f": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 14920 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 80, + "settledAt": 120, + "error": { + "category": "Error", + "message": "Connection lost", + "isRpcDeliveryUnknown": true + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "native-chat-stop-delivery-unknown", + "checkpoints": [ + { + "id": "unconfirmed", + "observation": { + "sender": ["a60dea16497c", "c7ad8e4bd48f"], + "payloads": ["1a91fe5e4856", "161bbe9b0076"], + "settlements": { + "stop": "eb79a9b3682a" + }, + "state": "9fe5713ca2d1", + "effects": ["60fbbfd9bd11"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-write-accepted.json b/mobile/rpc-foundation/goldens/native-chat-write-accepted.json new file mode 100644 index 00000000000..dc4bffa108d --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-write-accepted.json @@ -0,0 +1,128 @@ +{ + "operation": "nativeChat.terminal-write", + "family": "nativeChat.terminal-write", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "3e8804f21d32370bb0bc48c4ea3d182748d48dc19d73de1b50005f18368566ba", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "46771288e046": { + "body": "accepted" + }, + "6bb5bb25e4d4": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "7291a73df186": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "accepted" + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "c7c300e28254": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + } + }, + "recording": { + "scenario": "native-chat-write-accepted", + "checkpoints": [ + { + "id": "accepted", + "observation": { + "sender": ["c7c300e28254", "960f67ee14e2"], + "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "settlements": { + "body": "7291a73df186" + }, + "state": "46771288e046", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json b/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json new file mode 100644 index 00000000000..48a534f7025 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json @@ -0,0 +1,89 @@ +{ + "operation": "nativeChat.terminal-write", + "family": "nativeChat.terminal-write", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "b8265928eefc167de59c64dc62ebe40635007a5f73c87ec8b6eb5e0f6dc0ce00", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "e8cd309e2293": { + "clear": true + } + }, + "recording": { + "scenario": "native-chat-write-clear-line", + "checkpoints": [ + { + "id": "cleared", + "observation": { + "sender": ["52ae659a3d36"], + "payloads": ["242d9ae1137d"], + "settlements": { + "clear": "84e5ca07cb7a" + }, + "state": "e8cd309e2293", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json b/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json new file mode 100644 index 00000000000..ab06f7620b5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json @@ -0,0 +1,85 @@ +{ + "operation": "nativeChat.terminal-write", + "family": "nativeChat.terminal-write", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "22f7711ed82a4d56f1886a746838e3eb85c555c9069694ba3aa958e121cc1ee9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "44d966fae591": { + "body": "unknown" + }, + "6bb5bb25e4d4": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "ed1d171deda5": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "unknown" + }, + "f1e77c2f84bd": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Connection lost", + "isRpcDeliveryUnknown": true + } + } + } + }, + "recording": { + "scenario": "native-chat-write-delivery-unknown", + "checkpoints": [ + { + "id": "unknown", + "observation": { + "sender": ["f1e77c2f84bd"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "ed1d171deda5" + }, + "state": "44d966fae591", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-write-rejected.json b/mobile/rpc-foundation/goldens/native-chat-write-rejected.json new file mode 100644 index 00000000000..91f97dabb41 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-write-rejected.json @@ -0,0 +1,89 @@ +{ + "operation": "nativeChat.terminal-write", + "family": "nativeChat.terminal-write", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "7e05773966a18123aaae297aed9ac44bd841713de88c8a1fa30c31b324118f6f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "19f53fb21e4e": { + "body": "rejected" + }, + "6bb5bb25e4d4": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "8b7ac879220d": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "hello" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "9bd3ea1ff2bb": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "rejected" + } + }, + "recording": { + "scenario": "native-chat-write-rejected", + "checkpoints": [ + { + "id": "rejected", + "observation": { + "sender": ["8b7ac879220d"], + "payloads": ["6bb5bb25e4d4"], + "settlements": { + "body": "9bd3ea1ff2bb" + }, + "state": "19f53fb21e4e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json b/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json new file mode 100644 index 00000000000..f9bcb198514 --- /dev/null +++ b/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json @@ -0,0 +1,278 @@ +{ + "operation": "nativeChat.terminal-write", + "family": "nativeChat.terminal-write", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", + "scenarioSha256": "a89ff803859c60e5645126de8b0f423807c435dcd856fe8825721f71f3b5bec5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "1c80024cfa2c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 48, + "value": "accepted" + }, + "242d9ae1137d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "3a5d777418c3": { + "name": "terminal.send#4", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\r\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "3d0cd6be0408": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"o\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "52ae659a3d36": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "6cdf69ee833e": { + "name": "terminal.send#3", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "k" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 32, + "settledAt": 32, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "960f67ee14e2": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "reported": true + } + } + } + }, + "b105f94ddf4f": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "o" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 16, + "settledAt": 16, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "bf797abab699": { + "command": "accepted" + }, + "ce10d21caab1": { + "name": "terminal.send#3", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"k\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "cffc885c4847": { + "name": "terminal.send#4", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\r" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 48, + "settledAt": 48, + "value": { + "id": "frame-5", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + } + }, + "recording": { + "scenario": "native-chat-write-typed-command", + "checkpoints": [ + { + "id": "typed", + "observation": { + "sender": [ + "52ae659a3d36", + "960f67ee14e2", + "b105f94ddf4f", + "6cdf69ee833e", + "cffc885c4847" + ], + "payloads": [ + "242d9ae1137d", + "191580ba859d", + "3d0cd6be0408", + "ce10d21caab1", + "3a5d777418c3" + ], + "settlements": { + "command": "1c80024cfa2c" + }, + "state": "bf797abab699", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json b/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json new file mode 100644 index 00000000000..4b8aac20e5d --- /dev/null +++ b/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json @@ -0,0 +1,145 @@ +{ + "operation": "workspace.repositories", + "family": "components.new-workspace-repositories", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "64c1772f0f95a3c43fbb14398a8804b2b4784f7f18874e4fd79767ae634c7faa", + "scenarioSha256": "41ac47445191a24de5e48877478bdab6fd9c030f48024ea43e053de7b6b68bb5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "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" + } + ] + } + } + } + }, + "4e8b4e3e814f": { + "crash": { + "$rpc": "null" + }, + "loading": true, + "repos": [], + "selected": { + "$rpc": "null" + } + }, + "6bdbf70bafa2": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "eac6e56c2d2c": { + "crash": { + "$rpc": "null" + }, + "loading": false, + "repos": ["repo-a", "repo-b"], + "selected": "repo-b" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "new-workspace-repositories-fulfilled", + "checkpoints": [ + { + "id": "loading", + "observation": { + "sender": ["26accd69bc48"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "4e8b4e3e814f", + "effects": [] + } + }, + { + "id": "selected", + "observation": { + "sender": ["288dd3529eaf"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "eac6e56c2d2c", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json b/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json index 3e57c739591..da7287ac416 100644 --- a/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json +++ b/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json @@ -3,10 +3,10 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "bbfb0f3d8a68ccdd6f354db9ed57076060c32fc7effcf66fa09ee3c2de82a724", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "ac2b214ece34dc25aef2b73d020e04343f81cd48b3d243508be92cfdba01eb45", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/notifications-push-registered.json b/mobile/rpc-foundation/goldens/notifications-push-registered.json index 6cbdf2172f2..a676fdcb35f 100644 --- a/mobile/rpc-foundation/goldens/notifications-push-registered.json +++ b/mobile/rpc-foundation/goldens/notifications-push-registered.json @@ -3,10 +3,10 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "bbfb0f3d8a68ccdd6f354db9ed57076060c32fc7effcf66fa09ee3c2de82a724", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "90f49e430518bfc6e662da1d0c55b0084f30ab54dabdd15293b1f8ad9d2fa592", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/pairing-pre-profile-direct-wins-and-provisions.json b/mobile/rpc-foundation/goldens/pairing-pre-profile-direct-wins-and-provisions.json index 847116c0097..242b1951a99 100644 --- a/mobile/rpc-foundation/goldens/pairing-pre-profile-direct-wins-and-provisions.json +++ b/mobile/rpc-foundation/goldens/pairing-pre-profile-direct-wins-and-provisions.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "e4fb7aa3b071c1207f206adcc0f31e92b6bb98a80f86a0772e48b5cebcab24ff", "platform": "darwin", @@ -13,19 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, - "0799d165f56e": { + "0b595cd54ac3": { "name": "journal-saved", - "value": "pair-fixture-1" + "value": "pair-fixture-1", + "sent": 0 }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } + "12869cc488be": { + "name": "host-saved", + "value": "relay-host-0001x", + "sent": 4 }, "1e5b32902af7": { "name": "status.get#1", @@ -106,9 +102,15 @@ } } }, - "4030a59932c1": { - "name": "journal-updated", - "value": "pair-fixture-1" + "477b001b0374": { + "name": "candidate-closed", + "value": "direct", + "sent": 4 + }, + "47dedea61355": { + "name": "journal-cleared", + "value": "pair-fixture-1", + "sent": 4 }, "53412dd89894": { "name": "pairing.provisionRelay#1", @@ -167,6 +169,13 @@ } } }, + "6b9f1bf73e55": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 4 + }, "6cb74a535419": { "name": "status.get#2", "args": [ @@ -205,18 +214,20 @@ "savedHost": "relay-host-0001x", "timedOut": false }, - "b8549409f4a9": { - "name": "journal-cleared", - "value": "pair-fixture-1" - }, - "bc627d34e0d0": { - "name": "host-saved", - "value": "relay-host-0001x" + "b96f13a39e18": { + "name": "journal-updated", + "value": "pair-fixture-1", + "sent": 2 }, "c0c86e67c300": { "name": "status.get#2", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" }, + "ca7cb1785a59": { + "name": "candidate-closed", + "value": "relay", + "sent": 4 + }, "d1b2eddf66f4": { "status": "fulfilled", "startedAt": 0, @@ -225,9 +236,10 @@ "hostId": "host-1" } }, - "f203320e31e9": { + "d433a326314e": { "name": "candidate-closed", - "value": "direct" + "value": "relay", + "sent": 2 } }, "recording": { @@ -243,14 +255,14 @@ }, "state": "9b50435fa2f8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "1da0bf924e75", - "bc627d34e0d0", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "6b9f1bf73e55", + "12869cc488be", + "47dedea61355", + "477b001b0374", + "ca7cb1785a59" ] } } diff --git a/mobile/rpc-foundation/goldens/pairing-pre-profile-provision-unsupported-saves-direct-host.json b/mobile/rpc-foundation/goldens/pairing-pre-profile-provision-unsupported-saves-direct-host.json index a5b98e4101d..f354afabc4a 100644 --- a/mobile/rpc-foundation/goldens/pairing-pre-profile-provision-unsupported-saves-direct-host.json +++ b/mobile/rpc-foundation/goldens/pairing-pre-profile-provision-unsupported-saves-direct-host.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "5696ea2a62bb3f24902305f8bac0c4ae8f1e505f359db76fd69aabe353adae86", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, - "0799d165f56e": { + "0b595cd54ac3": { "name": "journal-saved", - "value": "pair-fixture-1" + "value": "pair-fixture-1", + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -58,23 +55,25 @@ } } }, - "4030a59932c1": { - "name": "journal-updated", - "value": "pair-fixture-1" + "4663b0f6e580": { + "name": "host-saved", + "value": "direct-only", + "sent": 3 }, "4a54bf2090c8": { "outcome": "host-1", "savedHost": "direct-only", "timedOut": false }, + "4cb6216cee5a": { + "name": "candidate-closed", + "value": "relay", + "sent": 3 + }, "53412dd89894": { "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" }, - "540f41097a17": { - "name": "host-saved", - "value": "direct-only" - }, "6cb74a535419": { "name": "status.get#2", "args": [ @@ -108,6 +107,11 @@ } } }, + "8eb785974a39": { + "name": "candidate-closed", + "value": "direct", + "sent": 3 + }, "afe249bdfa5f": { "name": "pairing.provisionRelay#1", "args": [ @@ -143,9 +147,10 @@ } } }, - "b8549409f4a9": { - "name": "journal-cleared", - "value": "pair-fixture-1" + "b96f13a39e18": { + "name": "journal-updated", + "value": "pair-fixture-1", + "sent": 2 }, "c0c86e67c300": { "name": "status.get#2", @@ -159,9 +164,15 @@ "hostId": "host-1" } }, - "f203320e31e9": { + "d433a326314e": { "name": "candidate-closed", - "value": "direct" + "value": "relay", + "sent": 2 + }, + "f4232b7673ea": { + "name": "journal-cleared", + "value": "pair-fixture-1", + "sent": 3 } }, "recording": { @@ -177,13 +188,13 @@ }, "state": "4a54bf2090c8", "effects": [ - "0799d165f56e", - "0193ae4dbb38", - "4030a59932c1", - "540f41097a17", - "b8549409f4a9", - "f203320e31e9", - "0193ae4dbb38" + "0b595cd54ac3", + "d433a326314e", + "b96f13a39e18", + "4663b0f6e580", + "f4232b7673ea", + "8eb785974a39", + "4cb6216cee5a" ] } } diff --git a/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json b/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json index bc95b552e1f..6a828951985 100644 --- a/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json +++ b/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "9ab72231bf97fbe7eed232019c56568a9411433835eae424628af62c7c6a10c1", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, - "0799d165f56e": { + "0b595cd54ac3": { "name": "journal-saved", - "value": "pair-fixture-1" + "value": "pair-fixture-1", + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -36,6 +33,11 @@ "status": "pending", "startedAt": 0 }, + "b2a8517fe750": { + "name": "candidate-closed", + "value": "direct", + "sent": 2 + }, "ba9fd57319d3": { "name": "status.get#1", "args": [ @@ -72,9 +74,10 @@ }, "timedOut": true }, - "f203320e31e9": { + "d433a326314e": { "name": "candidate-closed", - "value": "direct" + "value": "relay", + "sent": 2 }, "f6c99f740e75": { "name": "status.get#2", @@ -114,7 +117,7 @@ "pair": "9270aeb7d9c6" }, "state": "86d361a0bf7c", - "effects": ["0799d165f56e"] + "effects": ["0b595cd54ac3"] } }, { @@ -126,7 +129,7 @@ "pair": "9270aeb7d9c6" }, "state": "ccefc12fda27", - "effects": ["0799d165f56e", "f203320e31e9", "0193ae4dbb38"] + "effects": ["0b595cd54ac3", "b2a8517fe750", "d433a326314e"] } } ] diff --git a/mobile/rpc-foundation/goldens/pr-branch-identity.json b/mobile/rpc-foundation/goldens/pr-branch-identity.json index ddc8a69efe3..7bff1a54573 100644 --- a/mobile/rpc-foundation/goldens/pr-branch-identity.json +++ b/mobile/rpc-foundation/goldens/pr-branch-identity.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "d1b208a7bee947a603949fdc1f0d145e8c5576926f89f3e32330585f3a115290", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-branch-repo-context.json b/mobile/rpc-foundation/goldens/pr-branch-repo-context.json index de7bafce229..4f17928436c 100644 --- a/mobile/rpc-foundation/goldens/pr-branch-repo-context.json +++ b/mobile/rpc-foundation/goldens/pr-branch-repo-context.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "bd715681a856254e0c374b504cece07e5df4c9a75fa2b97c35498df12210fbab", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-comment-mutation.json b/mobile/rpc-foundation/goldens/pr-comment-mutation.json index 1726bcdc34a..b7974418130 100644 --- a/mobile/rpc-foundation/goldens/pr-comment-mutation.json +++ b/mobile/rpc-foundation/goldens/pr-comment-mutation.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "73cc5da2649b9687bb0d8247fa4ecf3c085746cf398515e8d2b40be2ed0da688", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json b/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json index 9335ed201a5..d6c0dac8608 100644 --- a/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json +++ b/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "f425131d29fee8826c00a550fb537d0bd1a37bbaf3b33992984d5e04a990a512", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json b/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json index 2d1861b195e..0dc4d399aab 100644 --- a/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json +++ b/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "70a94f45dbf7d58d9024c1cc4c94edd98fa48cd5ccffe8f2b7c53fa3e55d18d3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-mutation-status.json b/mobile/rpc-foundation/goldens/pr-mutation-status.json index 1a971532a90..647b127470c 100644 --- a/mobile/rpc-foundation/goldens/pr-mutation-status.json +++ b/mobile/rpc-foundation/goldens/pr-mutation-status.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "e9291209234bacab12201f4c13bb592e06bd405215389e19f0754c23e79eb197", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-read-fork-routing.json b/mobile/rpc-foundation/goldens/pr-read-fork-routing.json index 711311df320..7944f746c7e 100644 --- a/mobile/rpc-foundation/goldens/pr-read-fork-routing.json +++ b/mobile/rpc-foundation/goldens/pr-read-fork-routing.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "ba21f7fc3966cb1e3c1e59d6e8a8b184fa0559bf3037365391ce23e364befd7f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-read-surface.json b/mobile/rpc-foundation/goldens/pr-read-surface.json index 9fb69775f1b..c49847e4506 100644 --- a/mobile/rpc-foundation/goldens/pr-read-surface.json +++ b/mobile/rpc-foundation/goldens/pr-read-surface.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "4246e7ffa62e85aac489c561171a6468f862b7f18eefac9926b65073616b6d35", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-read-upstream-error.json b/mobile/rpc-foundation/goldens/pr-read-upstream-error.json index 7d3f4b409b5..90226003aea 100644 --- a/mobile/rpc-foundation/goldens/pr-read-upstream-error.json +++ b/mobile/rpc-foundation/goldens/pr-read-upstream-error.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "b2445b299e18664b698d659c5041860b8a253314687666ae467aab441ab07235", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-title-mutation.json b/mobile/rpc-foundation/goldens/pr-title-mutation.json index b1af97a4002..bdc88640016 100644 --- a/mobile/rpc-foundation/goldens/pr-title-mutation.json +++ b/mobile/rpc-foundation/goldens/pr-title-mutation.json @@ -3,9 +3,9 @@ "family": "github.pr-title-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "071e745453795d18d683aaab63e810783e3cee4927b47425c20a3d915397d0dd", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json b/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json index 9dc74bb946c..4548c49e413 100644 --- a/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json +++ b/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json @@ -3,9 +3,9 @@ "family": "github.pr-title-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "669260c675021b37252dc5023a7a78e4e90536c2f35d9a5da3e53778e6a0cf52", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json b/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json index 29ba59de263..cfbbe43591e 100644 --- a/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json +++ b/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "58ad4e4d5b0200c44f329236e10fd81918a1cc36b33b22cba24662c79dd61b4e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-triage-launch.json b/mobile/rpc-foundation/goldens/pr-triage-launch.json index d00182dce45..64f8a714f9a 100644 --- a/mobile/rpc-foundation/goldens/pr-triage-launch.json +++ b/mobile/rpc-foundation/goldens/pr-triage-launch.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "8bb2ff4e899ee873289fed7c1ef12e7f9dba91949125b1f0e4336d378ceb071e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-triage-send-locked.json b/mobile/rpc-foundation/goldens/pr-triage-send-locked.json index 05283181377..929eff3d094 100644 --- a/mobile/rpc-foundation/goldens/pr-triage-send-locked.json +++ b/mobile/rpc-foundation/goldens/pr-triage-send-locked.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "d80bc346e84bc35e6dce70643dcd3af3ea9e5a7f8a1f2b7a9e92c71c0c30d4c9", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json b/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json index c16cd91fe88..927e9967ab9 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "819fa73c7700b4d526da91c37558a6498008d745d1debcc26e6bb757550ebf99", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/probe-new-tab-null-sibling-refused.json b/mobile/rpc-foundation/goldens/probe-new-tab-null-sibling-refused.json index ac86a947be1..c121fe1e560 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-null-sibling-refused.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-null-sibling-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "500396d72abd2f73d11ef066bca3f88798c8cbdaef09fa7c1c8d1fbaf0b3b85a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/probe-new-tab-refused-sibling-rejects.json b/mobile/rpc-foundation/goldens/probe-new-tab-refused-sibling-rejects.json index a58bab5ff99..dae03518838 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-refused-sibling-rejects.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-refused-sibling-rejects.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "daf68df8840ea6872521d823cc17e1e5de3f3a74a8855465fcf40cc276e9c2ce", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/probe-new-tab-rejects-sibling-refused.json b/mobile/rpc-foundation/goldens/probe-new-tab-rejects-sibling-refused.json index 80b25d7a70e..3bc73e9418d 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-rejects-sibling-refused.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-rejects-sibling-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "61e36caf6b3bb01c3ad0db282b7f0fbc0f300d40184f9cf3d7e4e3a3194a4f2a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json b/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json new file mode 100644 index 00000000000..4ec6be5a0a9 --- /dev/null +++ b/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json @@ -0,0 +1,158 @@ +{ + "operation": "notifications.push-dismissal", + "family": "notifications.push-dismissal", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "595a3eb2994d0596b9fcd0707b175b4e978625053dfbc5c541b0350c0cbfb524", + "scenarioSha256": "318fab8c1efb1786bbdaea7f13b769952c1ce463bc5504dca6a9f545e905b7c9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "9aba86eb07e4": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "ac56c3fc846f": { + "name": "notifications.getMissedSince#1", + "args": [ + { + "name": "method", + "value": "notifications.getMissedSince" + }, + { + "name": "params", + "value": { + "deliveredPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ], + "lastSeenSeq": 9007199254740991 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "dismissedPushes": [ + { + "notificationEpoch": "epoch-1", + "notificationId": "note-1", + "notificationSeq": 7 + } + ] + } + } + } + }, + "afd5e55d2004": { + "name": "notifications.getMissedSince#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7}]}}" + }, + "bcdd9c902f5e": { + "name": "device-store.setItem", + "value": { + "key": "orca:pushDismissalWatermarks:v1", + "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-1\\\"]\",\"seq\":7,\"expiresAt\":1767312000000}]" + }, + "sent": 1 + }, + "c83340909a1e": { + "name": "notification-tray.dismiss", + "value": { + "identifier": "tray-1" + }, + "sent": 1 + }, + "cf9c28129225": { + "disposed": false + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "push-dismissal-tray-reconciled", + "checkpoints": [ + { + "id": "requested", + "observation": { + "sender": ["9aba86eb07e4"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "9270aeb7d9c6" + }, + "state": "cf9c28129225", + "effects": [] + } + }, + { + "id": "reconciled", + "observation": { + "sender": ["ac56c3fc846f"], + "payloads": ["afd5e55d2004"], + "settlements": { + "catchup": "eb79a9b3682a" + }, + "state": "cf9c28129225", + "effects": ["bcdd9c902f5e", "c83340909a1e"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/quick-commands-load-refused.json b/mobile/rpc-foundation/goldens/quick-commands-load-refused.json new file mode 100644 index 00000000000..5dfa353f750 --- /dev/null +++ b/mobile/rpc-foundation/goldens/quick-commands-load-refused.json @@ -0,0 +1,87 @@ +{ + "operation": "settings.quick-commands", + "family": "settings.quick-commands", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "42573387533f75122f626ce6ec81c1e61fe54cde5df416154bb7cba132f53309", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "990fb5428d1f": { + "commands": [], + "error": "Unknown method", + "loading": false, + "persisted": [], + "ready": false + }, + "ae75d9a09c8f": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "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 + } + } + }, + "e1663c7c38e3": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "quick-commands-load-refused", + "checkpoints": [ + { + "id": "errored", + "observation": { + "sender": ["ae75d9a09c8f"], + "payloads": ["e1663c7c38e3"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "990fb5428d1f", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json b/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json new file mode 100644 index 00000000000..3283dd9bb4a --- /dev/null +++ b/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json @@ -0,0 +1,145 @@ +{ + "operation": "settings.quick-commands", + "family": "settings.quick-commands", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "a621156bbb662c78a0baa356b60d0af41d10a7bd14e54f23be0581a59377cec3", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "b0069ba7e0a2": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "terminalQuickCommands": [ + { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + } + ] + } + } + } + }, + "d766ce9ee125": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminalQuickCommands": [] + } + } + } + }, + "e1663c7c38e3": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" + }, + "e3cf3d452fcf": { + "name": "settings.updateTerminalQuickCommands#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" + }, + "e9c308be6dea": { + "commands": [], + "error": "Failed to save quick command", + "loading": false, + "persisted": [false], + "ready": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "quick-commands-loaded-and-saved", + "checkpoints": [ + { + "id": "saved", + "observation": { + "sender": ["d766ce9ee125", "b0069ba7e0a2"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "e9c308be6dea", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/quick-commands-save-refused-rolls-back.json b/mobile/rpc-foundation/goldens/quick-commands-save-refused-rolls-back.json new file mode 100644 index 00000000000..15abf22f85f --- /dev/null +++ b/mobile/rpc-foundation/goldens/quick-commands-save-refused-rolls-back.json @@ -0,0 +1,139 @@ +{ + "operation": "settings.quick-commands", + "family": "settings.quick-commands", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "72517336e451e1e078135103073c1821e8af27c0702f6dc83b9a686fe7ff8c04", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "07d2b92da065": { + "name": "settings.updateTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.updateTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "settings_locked", + "message": "Settings are locked" + }, + "id": "frame-2", + "ok": false + } + } + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "84f50b30247b": { + "commands": [], + "error": "Settings are locked", + "loading": false, + "persisted": [false], + "ready": true + }, + "d766ce9ee125": { + "name": "settings.getTerminalQuickCommands#1", + "args": [ + { + "name": "method", + "value": "settings.getTerminalQuickCommands" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminalQuickCommands": [] + } + } + } + }, + "e1663c7c38e3": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" + }, + "e3cf3d452fcf": { + "name": "settings.updateTerminalQuickCommands#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "quick-commands-save-refused-rolls-back", + "checkpoints": [ + { + "id": "rolled-back", + "observation": { + "sender": ["d766ce9ee125", "07d2b92da065"], + "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "settlements": { + "mount": "eb79a9b3682a", + "persist": "7ed3d39f0607" + }, + "state": "84f50b30247b", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json b/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json index 20cfe8cc205..020afdb59e8 100644 --- a/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json +++ b/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "a92bccd183127829b6dfd85add28e42370d54990f63214940b1c584f7fde56a9", "platform": "darwin", @@ -70,15 +70,10 @@ "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, - "25b377db6629": { + "4683b84a57a2": { "name": "host-saved", - "value": "host-1" + "value": "host-1", + "sent": 3 }, "590b3311b0c4": { "status": "fulfilled", @@ -131,16 +126,17 @@ "name": "pairing.getEndpoints#2", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" }, + "7d023da12fdb": { + "name": "journal-cleared", + "value": "upgrade", + "sent": 3 + }, "980bbba0b617": { "journal": { "$rpc": "null" }, "outcome": "relay-host-0001x" }, - "a2c193508948": { - "name": "journal-cleared", - "value": "upgrade" - }, "a3865c87e54b": { "name": "pairing.provisionRelay#1", "args": [ @@ -179,6 +175,13 @@ } } }, + "b991b2c7609f": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 3 + }, "ba95b28e3a94": { "name": "pairing.getEndpoints#1", "args": [ @@ -242,7 +245,7 @@ "upgrade": "590b3311b0c4" }, "state": "980bbba0b617", - "effects": ["1da0bf924e75", "25b377db6629", "a2c193508948"] + "effects": ["b991b2c7609f", "4683b84a57a2", "7d023da12fdb"] } } ] diff --git a/mobile/rpc-foundation/goldens/relay-direct-upgrade-unsupported-host-declines.json b/mobile/rpc-foundation/goldens/relay-direct-upgrade-unsupported-host-declines.json index 4a529553955..6ae43b2e328 100644 --- a/mobile/rpc-foundation/goldens/relay-direct-upgrade-unsupported-host-declines.json +++ b/mobile/rpc-foundation/goldens/relay-direct-upgrade-unsupported-host-declines.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "7d5cad367e76767b039fc5ebc15837930f02c5e1bed33ae7ca4695bae56287bd", "platform": "darwin", @@ -53,9 +53,10 @@ }, "outcome": "declined" }, - "a2c193508948": { + "8ea887e0fc46": { "name": "journal-cleared", - "value": "upgrade" + "value": "upgrade", + "sent": 1 }, "beafd16aeb22": { "name": "pairing.getEndpoints#1", @@ -82,7 +83,7 @@ "upgrade": "ee20a1dc39e7" }, "state": "6c43da669636", - "effects": ["a2c193508948"] + "effects": ["8ea887e0fc46"] } } ] diff --git a/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json b/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json index 7a61ed29640..50af47e1e47 100644 --- a/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json +++ b/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json @@ -3,9 +3,9 @@ "family": "relay.pairing-recovery", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "8dc3fd27c5720276608ca8743990e4f57d94eab84f620e9aa42702a4686fd5a9", "platform": "darwin", @@ -13,32 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, - "178d5cbb5880": { - "name": "journal-updated", - "value": "relay-basis" - }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } + "09329ce738b3": { + "name": "host-saved", + "value": "host-1", + "sent": 4 }, "247b92f9351d": { "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" }, - "25b377db6629": { - "name": "host-saved", - "value": "host-1" - }, - "42bd1e4b1fec": { - "name": "journal-cleared", - "value": "recovery" - }, "50f1b63c9e0d": { "name": "pairing.getEndpoints#1", "args": [ @@ -86,6 +69,13 @@ } } }, + "6b9f1bf73e55": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 4 + }, "6f09228b201f": { "name": "pairing.getEndpoints#3", "args": [ @@ -237,6 +227,26 @@ "name": "pairing.getEndpoints#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}" }, + "bcb071e85da1": { + "name": "journal-cleared", + "value": "recovery", + "sent": 4 + }, + "be67e12f6925": { + "name": "candidate-closed", + "value": "relay", + "sent": 1 + }, + "ca7cb1785a59": { + "name": "candidate-closed", + "value": "relay", + "sent": 4 + }, + "da0417cd1d5f": { + "name": "journal-updated", + "value": "relay-basis", + "sent": 2 + }, "f0723ea3ab16": { "status": "fulfilled", "startedAt": 0, @@ -261,12 +271,12 @@ }, "state": "7a3e4e5413b5", "effects": [ - "0193ae4dbb38", - "178d5cbb5880", - "1da0bf924e75", - "25b377db6629", - "42bd1e4b1fec", - "0193ae4dbb38" + "be67e12f6925", + "da0417cd1d5f", + "6b9f1bf73e55", + "09329ce738b3", + "bcb071e85da1", + "ca7cb1785a59" ] } } diff --git a/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json b/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json index 4234ea4c0ca..8ab329840eb 100644 --- a/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json +++ b/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json @@ -3,9 +3,9 @@ "family": "relay.pairing-recovery", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "7e54c3af4b8b8e6eac007267fb96620283b735491883c505401c79656d920ca6", "platform": "darwin", @@ -13,27 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, - "178d5cbb5880": { - "name": "journal-updated", - "value": "relay-basis" - }, - "1da0bf924e75": { - "name": "bundle-written", - "value": { - "version": 4 - } - }, - "25b377db6629": { + "0080ab426cd1": { "name": "host-saved", - "value": "host-1" + "value": "host-1", + "sent": 1 }, - "42bd1e4b1fec": { + "6873c5ee509e": { "name": "journal-cleared", - "value": "recovery" + "value": "recovery", + "sent": 1 }, "7a3e4e5413b5": { "outcome": "recovered", @@ -45,6 +33,11 @@ "name": "pairing.getEndpoints#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}" }, + "be67e12f6925": { + "name": "candidate-closed", + "value": "relay", + "sent": 1 + }, "c5d6533ca9ce": { "name": "pairing.getEndpoints#1", "args": [ @@ -99,6 +92,18 @@ } } }, + "cf1bfb36f84e": { + "name": "journal-updated", + "value": "relay-basis", + "sent": 1 + }, + "e0d0c16b34cc": { + "name": "bundle-written", + "value": { + "version": 4 + }, + "sent": 1 + }, "f0723ea3ab16": { "status": "fulfilled", "startedAt": 0, @@ -119,11 +124,11 @@ }, "state": "7a3e4e5413b5", "effects": [ - "178d5cbb5880", - "1da0bf924e75", - "25b377db6629", - "42bd1e4b1fec", - "0193ae4dbb38" + "cf1bfb36f84e", + "e0d0c16b34cc", + "0080ab426cd1", + "6873c5ee509e", + "be67e12f6925" ] } } diff --git a/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json b/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json index fa8e0fd23d5..1c6fe570d94 100644 --- a/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json +++ b/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "c786fb19f9593ee60238e42813561edf6f5e976fcf217dff8de977a333fe8451", "platform": "darwin", @@ -78,16 +78,6 @@ "name": "pairing.provisionRelay#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}" }, - "6fc6c751d8be": { - "name": "bundle-written", - "value": { - "grace": { - "$rpc": "null" - }, - "pending": true, - "version": 3 - } - }, "8336e309abb8": { "name": "pairing.getEndpoints#1", "args": [ @@ -134,6 +124,17 @@ } } }, + "85b38f117802": { + "name": "bundle-written", + "value": { + "grace": { + "$rpc": "null" + }, + "pending": true, + "version": 3 + }, + "sent": 0 + }, "9ade8126917f": { "name": "pairing.provisionRelay#1", "args": [ @@ -173,7 +174,7 @@ } } }, - "bcef5f2116bb": { + "eee85d194a6b": { "name": "bundle-written", "value": { "grace": { @@ -181,7 +182,8 @@ }, "pending": false, "version": 4 - } + }, + "sent": 3 }, "f2c843a9b548": { "status": "fulfilled", @@ -236,7 +238,7 @@ "rotate": "f2c843a9b548" }, "state": "fdf764b375ae", - "effects": ["6fc6c751d8be", "bcef5f2116bb"] + "effects": ["85b38f117802", "eee85d194a6b"] } } ] diff --git a/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json b/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json index c8336b4f4c8..f9910d0b0e4 100644 --- a/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json +++ b/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "96df784c1d56de3bdd04afe20ab019339c7d9a616528ca2617e2fffe4f0157c8", "platform": "darwin", @@ -56,6 +56,15 @@ } } }, + "93a4f8a5a1ad": { + "name": "bundle-written", + "value": { + "grace": 1767398400000, + "pending": false, + "version": 5 + }, + "sent": 1 + }, "beafd16aeb22": { "name": "pairing.getEndpoints#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" @@ -113,14 +122,6 @@ } } } - }, - "ccd5d48f1632": { - "name": "bundle-written", - "value": { - "grace": 1767398400000, - "pending": false, - "version": 5 - } } }, "recording": { @@ -135,7 +136,7 @@ "rotate": "760bb6245333" }, "state": "351d2bec2471", - "effects": ["ccd5d48f1632"] + "effects": ["93a4f8a5a1ad"] } } ] diff --git a/mobile/rpc-foundation/goldens/review-create-terminal-refused.json b/mobile/rpc-foundation/goldens/review-create-terminal-refused.json new file mode 100644 index 00000000000..5dd305c32e3 --- /dev/null +++ b/mobile/rpc-foundation/goldens/review-create-terminal-refused.json @@ -0,0 +1,120 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "af837de2e273c5f03130b51d6e1a9bff9ff99a4e8d1c9554a53134acb5924c72", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2fc890e4b748": { + "actionError": { + "$rpc": "null" + }, + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "58d16e8809a2": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" + }, + "6e913cd7b306": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Workspace is busy", + "isRpcDeliveryUnknown": false + } + }, + "80f030a6d6a9": { + "name": "session.tabs.createTerminal#1", + "args": [ + { + "name": "method", + "value": "session.tabs.createTerminal" + }, + { + "name": "params", + "value": { + "activate": false, + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "worktree_busy", + "message": "Workspace is busy" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "review-create-terminal-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["80f030a6d6a9"], + "payloads": ["58d16e8809a2"], + "settlements": { + "create-and-send": "6e913cd7b306" + }, + "state": "2fc890e4b748", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json b/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json new file mode 100644 index 00000000000..85d4daf5866 --- /dev/null +++ b/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json @@ -0,0 +1,163 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "9f1c39e91a97266b0a550d2b2d061592ae050078401ef23177dd2e00db67bf04", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "02c4a9358dee": { + "actionError": { + "$rpc": "null" + }, + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "78219a737d4d": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "updated": true + } + } + } + }, + "9a5a5e546290": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "review-mark-reviewed-persists", + "checkpoints": [ + { + "id": "persisted", + "observation": { + "sender": ["78219a737d4d"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "eb79a9b3682a" + }, + "state": "02c4a9358dee", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json b/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json new file mode 100644 index 00000000000..28fd1dd0010 --- /dev/null +++ b/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json @@ -0,0 +1,147 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "c858cfca59148548146b4c0a775e9518d3ab826ef268ccc9af60b04e52cc9e3d", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "29ae38d1c0cf": { + "name": "worktree.set#1", + "args": [ + { + "name": "method", + "value": "worktree.set" + }, + { + "name": "params", + "value": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$rpc": "undefined" + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$rpc": "undefined" + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "worktree_locked", + "message": "Workspace is locked" + }, + "id": "frame-1", + "ok": false + } + } + }, + "6bdf0d77510f": { + "actionError": "Workspace is locked", + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "9a5a5e546290": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}" + }, + "b914541ed9b0": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Workspace is locked", + "isRpcDeliveryUnknown": false + } + } + }, + "recording": { + "scenario": "review-mark-reviewed-rolls-back", + "checkpoints": [ + { + "id": "rolled-back", + "observation": { + "sender": ["29ae38d1c0cf"], + "payloads": ["9a5a5e546290"], + "settlements": { + "mark-reviewed": "b914541ed9b0" + }, + "state": "6bdf0d77510f", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/review-open-in-session.json b/mobile/rpc-foundation/goldens/review-open-in-session.json new file mode 100644 index 00000000000..107c805a5a7 --- /dev/null +++ b/mobile/rpc-foundation/goldens/review-open-in-session.json @@ -0,0 +1,121 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "2f0a6aa8ce100edbce9ccf64c81efe64356fccbdcd2e16f561360e2b11b5700f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2fc890e4b748": { + "actionError": { + "$rpc": "null" + }, + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "47164a430928": { + "name": "files.openDiff#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.openDiff\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\",\"staged\":false}}" + }, + "aefdadd223ee": { + "name": "files.openDiff#1", + "args": [ + { + "name": "method", + "value": "files.openDiff" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "staged": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f08ae8feb9a9": { + "name": "open-session", + "value": {}, + "sent": 1 + } + }, + "recording": { + "scenario": "review-open-in-session", + "checkpoints": [ + { + "id": "opened", + "observation": { + "sender": ["aefdadd223ee"], + "payloads": ["47164a430928"], + "settlements": { + "open-in-session": "eb79a9b3682a" + }, + "state": "2fc890e4b748", + "effects": ["f08ae8feb9a9"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/review-send-notes-heals-stale-input.json b/mobile/rpc-foundation/goldens/review-send-notes-heals-stale-input.json new file mode 100644 index 00000000000..806727bf9d2 --- /dev/null +++ b/mobile/rpc-foundation/goldens/review-send-notes-heals-stale-input.json @@ -0,0 +1,153 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "7099d7311b2046dde21a2750201718995c0869bc4f17fb7f3ce2b997ce0e6506", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0229bd778610": { + "name": "terminal.send#2", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": true, + "terminal": "terminal-1", + "text": "You are reviewing the current worktree. Address the following mobile review notes.\n\nFile: src/app.ts\nLine: 4\nUser comment: \"needs a test\"\n\nAfter applying fixes:\n1. Summarize changed files.\n2. Run relevant tests.\n3. Tell me if anything remains risky." + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "09a1d177b71c": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false}}" + }, + "0db3b6958ec7": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "terminal-1" + }, + "2fc890e4b748": { + "actionError": { + "$rpc": "null" + }, + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "8e18c9a6a750": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "c5d2e61b325b": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"You are reviewing the current worktree. Address the following mobile review notes.\\n\\nFile: src/app.ts\\nLine: 4\\nUser comment: \\\"needs a test\\\"\\n\\nAfter applying fixes:\\n1. Summarize changed files.\\n2. Run relevant tests.\\n3. Tell me if anything remains risky.\",\"enter\":true}}" + } + }, + "recording": { + "scenario": "review-send-notes-heals-stale-input", + "checkpoints": [ + { + "id": "healed", + "observation": { + "sender": ["8e18c9a6a750", "0229bd778610"], + "payloads": ["09a1d177b71c", "c5d2e61b325b"], + "settlements": { + "mark-stale": "0db3b6958ec7", + "send-notes": "9270aeb7d9c6" + }, + "state": "2fc890e4b748", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/review-stage-file.json b/mobile/rpc-foundation/goldens/review-stage-file.json new file mode 100644 index 00000000000..861028fd54b --- /dev/null +++ b/mobile/rpc-foundation/goldens/review-stage-file.json @@ -0,0 +1,120 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "793e954960d371c6477d4cd3d70a5215c0bd90764684eafdb1e1a2e09790cc86", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2fc890e4b748": { + "actionError": { + "$rpc": "null" + }, + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "51406f060db7": { + "name": "git.stage#1", + "args": [ + { + "name": "method", + "value": "git.stage" + }, + { + "name": "params", + "value": { + "filePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "staged": true + } + } + } + }, + "543f60e3c255": { + "name": "load-review-data", + "value": {}, + "sent": 1 + }, + "e1156e5340fe": { + "name": "git.stage#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.stage\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"src/app.ts\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "review-stage-file", + "checkpoints": [ + { + "id": "staged", + "observation": { + "sender": ["51406f060db7"], + "payloads": ["e1156e5340fe"], + "settlements": { + "stage": "eb79a9b3682a" + }, + "state": "2fc890e4b748", + "effects": ["543f60e3c255"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/review-stage-refused.json b/mobile/rpc-foundation/goldens/review-stage-refused.json new file mode 100644 index 00000000000..be478263106 --- /dev/null +++ b/mobile/rpc-foundation/goldens/review-stage-refused.json @@ -0,0 +1,114 @@ +{ + "operation": "session.diff-review-actions", + "family": "session.diff-review-actions", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", + "scenarioSha256": "46b720fed417d29f79dbde4cc7941579f2d6a2f920bae24234537480079e7de5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0038658e2aec": { + "name": "git.discard#1", + "args": [ + { + "name": "method", + "value": "git.discard" + }, + { + "name": "params", + "value": { + "filePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "git_conflict", + "message": "Cannot discard during a merge" + }, + "id": "frame-1", + "ok": false + } + } + }, + "36787858f78b": { + "actionError": "Cannot discard during a merge", + "busyAction": { + "$rpc": "null" + }, + "screenState": { + "branchCompare": { + "$rpc": "null" + }, + "comments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "side": "modified", + "worktreeId": "workspace-1" + } + ], + "kind": "ready", + "reviewState": { + "files": {}, + "version": 1 + }, + "status": { + "entries": [] + } + }, + "sendSheet": { + "$rpc": "null" + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ffc8292df05c": { + "name": "git.discard#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.discard\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"src/app.ts\"}}" + } + }, + "recording": { + "scenario": "review-stage-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["0038658e2aec"], + "payloads": ["ffc8292df05c"], + "settlements": { + "discard": "eb79a9b3682a" + }, + "state": "36787858f78b", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/sc-base-ref-default.json b/mobile/rpc-foundation/goldens/sc-base-ref-default.json index c76b9d943bc..d3fc9dbf470 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-default.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-default.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "374129def6baa0e06b808c067831820966638d79d7a782e96c1f2f891cc9dc86", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json b/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json index da7d6e651d2..3f2670ff640 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "97a8b8f5b9a7c7467745666becee07f5dfc57fb283d4e80dcbe7941509177598", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json b/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json index 270087d293c..888114b725c 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "25a4762d735dfb4979e6ef31b9fdb380941a824a54b45b3d08ddb2cde25c2eb7", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json b/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json index 5ad1321ea49..f7fdb5f833c 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "f3b193f93f6c9de41d11e706ecbd99648eb2ed41ccb7c66cdb80c934e780ed7c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json b/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json index 29c8cfe3554..d72a5ba8943 100644 --- a/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json +++ b/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "013db25622b180a8333bb1ef27c22a5b1f8e04148201201e5cc3413a10640781", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json b/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json index 2f7f942cc75..eb719a12b52 100644 --- a/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json +++ b/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "15bf6c17f4b524dfbf5373b2eeed61ee2e659421cf8b6e3cff6c0378c7692cc1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-commit-message-generated.json b/mobile/rpc-foundation/goldens/sc-commit-message-generated.json index a8ed3e8eb58..bd0bffad7f5 100644 --- a/mobile/rpc-foundation/goldens/sc-commit-message-generated.json +++ b/mobile/rpc-foundation/goldens/sc-commit-message-generated.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "540f05d84d1cbffd566af933c547838c75500bb5d708e8558c21fe8131d724e3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-create-existing-review.json b/mobile/rpc-foundation/goldens/sc-create-existing-review.json index 0b952fddd08..43f3c3279d7 100644 --- a/mobile/rpc-foundation/goldens/sc-create-existing-review.json +++ b/mobile/rpc-foundation/goldens/sc-create-existing-review.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "7d6099248aa6a2ef19f2e169ff917af794649d9d64d139aa9ffeea6a41355ddc", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-create-intent-stage-commit-push-create.json b/mobile/rpc-foundation/goldens/sc-create-intent-stage-commit-push-create.json index c6e3217b489..7da77e10d4a 100644 --- a/mobile/rpc-foundation/goldens/sc-create-intent-stage-commit-push-create.json +++ b/mobile/rpc-foundation/goldens/sc-create-intent-stage-commit-push-create.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "447f9b3d697dbfe21cb7fb6e12d1bf5fa94b023b7e1697bdc2dc82ce7072183f", "platform": "darwin", @@ -99,6 +99,16 @@ "name": "hostedReview.create#1", "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" }, + "0b80f2766914": { + "name": "progress", + "value": "generating_commit_message", + "sent": 3 + }, + "0d7681dfb908": { + "name": "progress", + "value": "pushing", + "sent": 7 + }, "125fbea5f50a": { "name": "git.generateCommitMessage#1", "args": [ @@ -287,9 +297,10 @@ "name": "git.bulkStage#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" }, - "368b0b9ce80a": { + "3a3a688f828b": { "name": "progress", - "value": "staging" + "value": "staging", + "sent": 1 }, "43ccfe31d2a4": { "outcome": { @@ -375,10 +386,6 @@ } } }, - "5975e0bdd4a4": { - "name": "progress", - "value": "creating_review" - }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -419,14 +426,6 @@ "name": "git.status#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "60421d882fd2": { - "name": "progress", - "value": "pushing" - }, - "6a5c9570c542": { - "name": "progress", - "value": "generating_commit_message" - }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -464,14 +463,15 @@ "72b388fd3302": { "outcome": "unrun" }, + "7349acf3d5b8": { + "name": "progress", + "value": "committing", + "sent": 4 + }, "7679f4e521d1": { "name": "git.push#1", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, - "7778d4c43a58": { - "name": "progress", - "value": "committing" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -797,6 +797,11 @@ "name": "git.generateCommitMessage#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" }, + "bbf5b6093f56": { + "name": "progress", + "value": "creating_review", + "sent": 10 + }, "c444aeacec59": { "name": "git.status#3", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" @@ -908,7 +913,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a"] + "effects": ["3a3a688f828b"] } }, { @@ -920,7 +925,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542"] + "effects": ["3a3a688f828b", "0b80f2766914"] } }, { @@ -944,7 +949,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -972,7 +977,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8"] } }, { @@ -1002,7 +1007,7 @@ "run": "9270aeb7d9c6" }, "state": "72b388fd3302", - "effects": ["368b0b9ce80a", "6a5c9570c542", "7778d4c43a58", "60421d882fd2"] + "effects": ["3a3a688f828b", "0b80f2766914", "7349acf3d5b8", "0d7681dfb908"] } }, { @@ -1039,11 +1044,11 @@ }, "state": "72b388fd3302", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } }, @@ -1083,11 +1088,11 @@ }, "state": "43ccfe31d2a4", "effects": [ - "368b0b9ce80a", - "6a5c9570c542", - "7778d4c43a58", - "60421d882fd2", - "5975e0bdd4a4" + "3a3a688f828b", + "0b80f2766914", + "7349acf3d5b8", + "0d7681dfb908", + "bbf5b6093f56" ] } } diff --git a/mobile/rpc-foundation/goldens/sc-create-link-failure-is-non-fatal.json b/mobile/rpc-foundation/goldens/sc-create-link-failure-is-non-fatal.json index 9d61406da06..709b3ed7e5c 100644 --- a/mobile/rpc-foundation/goldens/sc-create-link-failure-is-non-fatal.json +++ b/mobile/rpc-foundation/goldens/sc-create-link-failure-is-non-fatal.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "2deb0435ef63a3e0102e28f2f3f331039486d193d1e1ffdfb53ad86d3ff039f0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json b/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json index f9ab36195c2..ae90efc3cf1 100644 --- a/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json +++ b/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "0f86b3e6059c48cd327c55df2452a9bc6ea85584ffbeacafad496f600c20e06f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json b/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json index 354ebe983e3..19d2f3b0720 100644 --- a/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json +++ b/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "5008e69a8e396b1deccd98712d92650a630f971cd76a02862a461afb8617b8a4", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json b/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json index 29f87a4e070..2dff86d2288 100644 --- a/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json +++ b/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "ea71081982a101d0f8624707b59c99de9981e9b1d1bafa25c66d575e3f876ff4", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json b/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json index 04855184026..b43f568ebf5 100644 --- a/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json +++ b/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "f6a1595073abe11b33973e8865900a1d849f44221961da5c12ea13aa696f6490", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-history-loaded.json b/mobile/rpc-foundation/goldens/sc-history-loaded.json index 97057f6b87f..9b28ac554a0 100644 --- a/mobile/rpc-foundation/goldens/sc-history-loaded.json +++ b/mobile/rpc-foundation/goldens/sc-history-loaded.json @@ -3,9 +3,9 @@ "family": "git.history-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "83f61085a91458bad529905ecc6fe240c598cddfe44a56dd497b8aed9fb8a7e5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json b/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json index e8b753e6209..55a99b2d4c3 100644 --- a/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json +++ b/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "42b0304b2fdce08b7ff52ec979dd9f199f368e5e4ef0b5370acc417909b592b3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-pr-link-read.json b/mobile/rpc-foundation/goldens/sc-pr-link-read.json index 35274e88132..afa2dbeb508 100644 --- a/mobile/rpc-foundation/goldens/sc-pr-link-read.json +++ b/mobile/rpc-foundation/goldens/sc-pr-link-read.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "4520bd54a55eabfe6ec64a4b2f824f095f98b2fffd1bf22fe4f9ec7f63cbfa3f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-pr-link-set.json b/mobile/rpc-foundation/goldens/sc-pr-link-set.json index 7d8e446162d..747c59fcf44 100644 --- a/mobile/rpc-foundation/goldens/sc-pr-link-set.json +++ b/mobile/rpc-foundation/goldens/sc-pr-link-set.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "b65bad4f8c0ae0b686f6c3db93bd43ffa072ae426f978f1a86ad8008fb24fa24", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json index 825bf0c72bb..e5039401343 100644 --- a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json +++ b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "9de96287a4dfa6cf5c9a8b683cc696fdc2cd387f86f231e22ee3f100a2e778e3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json index 6de7dba7764..0c3dd8ee2d3 100644 --- a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json +++ b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "adbdfcc3895cc04d830900de518e689c9e63f6f75569127e1fde24488658e8a0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json b/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json index 9b9d6f0bba3..8399b4e6079 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "ec2847b4af357d8564d8e0a9a1072713c1afd7ff86ba69e9c83c056a6841ee39", "platform": "darwin", @@ -62,13 +62,14 @@ } } }, + "3e471b70b788": { + "name": "progress", + "value": "force_pushing", + "sent": 0 + }, "ef6c20bf075b": { "name": "git.push#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\",\"forceWithLease\":true}}" - }, - "f664712ae7ac": { - "name": "progress", - "value": "force_pushing" } }, "recording": { @@ -83,7 +84,7 @@ "apply": "00e8a3bac22f" }, "state": "0fe2eb2410a4", - "effects": ["f664712ae7ac"] + "effects": ["3e471b70b788"] } } ] diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json b/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json index 4582527e5d0..335553c1810 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "6cf6ebd20adc4cc76a12d3424863ee9db2b24f36593664a1f4e0e05de9a53d39", "platform": "darwin", @@ -32,6 +32,11 @@ "name": "git.push#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\",\"publish\":true}}" }, + "8e30f48c04a4": { + "name": "progress", + "value": "publishing", + "sent": 0 + }, "b12e1ce5068c": { "name": "git.push#1", "args": [ @@ -65,10 +70,6 @@ } } } - }, - "dc538c734db2": { - "name": "progress", - "value": "publishing" } }, "recording": { @@ -83,7 +84,7 @@ "apply": "00e8a3bac22f" }, "state": "0fe2eb2410a4", - "effects": ["dc538c734db2"] + "effects": ["8e30f48c04a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-push.json b/mobile/rpc-foundation/goldens/sc-prerequisite-push.json index 558c144f578..5db72062fc0 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-push.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-push.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "e6e8197a541cd73e5811a1f28b0dbfc414a4d34c1ae6929fc1bbae1213820674", "platform": "darwin", @@ -28,9 +28,10 @@ "ran": true } }, - "60421d882fd2": { + "8c74af79c1cf": { "name": "progress", - "value": "pushing" + "value": "pushing", + "sent": 0 }, "9270aeb7d9c6": { "status": "pending", @@ -114,7 +115,7 @@ "apply": "9270aeb7d9c6" }, "state": "cf19981c2114", - "effects": ["60421d882fd2"] + "effects": ["8c74af79c1cf"] } }, { @@ -126,7 +127,7 @@ "apply": "00e8a3bac22f" }, "state": "0fe2eb2410a4", - "effects": ["60421d882fd2"] + "effects": ["8c74af79c1cf"] } } ] diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json b/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json index b5586451541..34fdce4dac5 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "523d1ee21e3871a4dffc32f48d2e28c31ecea48cbf3f842acffc8355be06b14b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json b/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json index a98acca0b87..0d30683e294 100644 --- a/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json +++ b/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "00b26cb279b0a934df98d93ba98a4a0c79e302c7690c582e778dc0156ab4f235", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-reveal-timeout.json b/mobile/rpc-foundation/goldens/sc-reveal-timeout.json index 66794476446..826be6b02dc 100644 --- a/mobile/rpc-foundation/goldens/sc-reveal-timeout.json +++ b/mobile/rpc-foundation/goldens/sc-reveal-timeout.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "fcd61f1ef46c42889827a87876239534b851c425f8ef7a9405ea95b8d07d2363", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json b/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json index 26e58d25537..5f391bfe082 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "db1fb2a584cd806028b9be861283a63aa4836c83f61558f3d518ddbb7a59498d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-review-commit-refused-empty-message.json b/mobile/rpc-foundation/goldens/sc-review-commit-refused-empty-message.json index a221a2a472e..ea6a9f68c73 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit-refused-empty-message.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit-refused-empty-message.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "dba1676583dc832ef059285a6bd4c3eefe6be0230e42100cb9d7a125755d136b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json b/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json index e09a4cf0e08..0cc510b2993 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "de079de9cc21bfb40da6e1431273b10c3e2a5b5402b91b2b8a85c8d7ac41bc97", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-review-commit.json b/mobile/rpc-foundation/goldens/sc-review-commit.json index 9cf3b9f923b..a3fa35e7976 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "a29d518b2d075e8e4811404e0fcbf8948fbfe53a3aefbf0948cb2f2e622e8cbb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-review-status-entries-not-array.json b/mobile/rpc-foundation/goldens/sc-review-status-entries-not-array.json index d6db52edd5e..a677d0bdbe9 100644 --- a/mobile/rpc-foundation/goldens/sc-review-status-entries-not-array.json +++ b/mobile/rpc-foundation/goldens/sc-review-status-entries-not-array.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "37ba7780ca9525ab313c0a9c781ce5bb26344e63af9272c32ae889621f383b2b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-review-status-normalized.json b/mobile/rpc-foundation/goldens/sc-review-status-normalized.json index 774300c3d03..f7c7cf581ce 100644 --- a/mobile/rpc-foundation/goldens/sc-review-status-normalized.json +++ b/mobile/rpc-foundation/goldens/sc-review-status-normalized.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "93193acd57d6f00abc8e6c22ec3a8f1ca6ce7c5808d906d0aa7c11e41dab4635", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/schedules-b3.json b/mobile/rpc-foundation/goldens/schedules-b3.json index 839015088b0..4b310744b5c 100644 --- a/mobile/rpc-foundation/goldens/schedules-b3.json +++ b/mobile/rpc-foundation/goldens/schedules-b3.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "b59fb599dd3a5fbc79bb8602dcec4b1c51a392c662efab7efc8324fc718ce8de", "platform": "darwin", @@ -48,13 +48,10 @@ } } }, - "1474fb688cbe": { + "0e0abca05602": { "name": "detailError", - "value": "RPC interrupted by connection migration" - }, - "1696f2f90218": { - "name": "detailError", - "value": "comments transport error" + "value": "comments transport error", + "sent": 2 }, "210ccd4fdd98": { "name": "linear.getIssue#1", @@ -132,10 +129,6 @@ } } }, - "3b01c25bcd45": { - "name": "detailError", - "value": "" - }, "3cb9a384ce0e": { "name": "linear.issueComments#1", "args": [ @@ -265,6 +258,11 @@ } } }, + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, "58b60616b373": { "name": "linear.issueComments#1", "args": [ @@ -297,9 +295,10 @@ } } }, - "71339c38458c": { + "760b8f2ae31c": { "name": "detailError", - "value": "Request timed out: linear.getIssue" + "value": "Request timed out: linear.getIssue", + "sent": 2 }, "780aaf1d97be": { "error": "", @@ -308,16 +307,6 @@ "$rpc": "null" } }, - "7d21147e56c1": { - "name": "detailLoading", - "value": true - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, "88573133f7d5": { "error": "RPC interrupted by connection migration", "loading": false, @@ -325,13 +314,22 @@ "$rpc": "null" } }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false - }, - "99253302972b": { + "99482bc5b01e": { "name": "detailError", - "value": "linear.getIssue#1 rejected" + "value": "RPC interrupted by connection migration", + "sent": 2 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 }, "a778223fed77": { "error": "linear.getIssue#1 rejected", @@ -376,6 +374,11 @@ } } }, + "cb552eff11a1": { + "name": "detailError", + "value": "linear.issueComments#1 rejected", + "sent": 2 + }, "cc1d7d1a2a81": { "name": "linear.getIssue#1", "args": [ @@ -452,18 +455,20 @@ "$rpc": "null" } }, - "dbf8961c1dc1": { + "df409b3cc9c2": { "name": "detailError", - "value": "linear.issueComments#1 rejected" + "value": "Connection lost", + "sent": 2 + }, + "e4f04d0c9aea": { + "name": "detailError", + "value": "linear.getIssue#1 rejected", + "sent": 2 }, "e7f73629d075": { "name": "linear.issueComments#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" }, - "ea91918fd5a8": { - "name": "detailError", - "value": "Connection lost" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -472,6 +477,11 @@ "$rpc": "undefined" } }, + "ee0c4638d266": { + "name": "detailLoading", + "value": false, + "sent": 2 + }, "fc4ce176400a": { "name": "linear.getIssue#1", "args": [ @@ -518,7 +528,7 @@ "mount": "eb79a9b3682a" }, "state": "780aaf1d97be", - "effects": ["7d341b2cb946", "3b01c25bcd45", "7d21147e56c1"] + "effects": ["9bd1de5d9753", "9d6ce9f28401", "56d172ecd2fe"] } }, { @@ -531,11 +541,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -549,11 +559,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -567,11 +577,11 @@ }, "state": "42903545f0f8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1696f2f90218", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "0e0abca05602", + "ee0c4638d266" ] } }, @@ -585,11 +595,11 @@ }, "state": "a778223fed77", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "99253302972b", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "e4f04d0c9aea", + "ee0c4638d266" ] } }, @@ -603,11 +613,11 @@ }, "state": "a778223fed77", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "99253302972b", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "e4f04d0c9aea", + "ee0c4638d266" ] } }, @@ -621,11 +631,11 @@ }, "state": "24f3de063dfd", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dbf8961c1dc1", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "cb552eff11a1", + "ee0c4638d266" ] } }, @@ -639,11 +649,11 @@ }, "state": "24f3de063dfd", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "dbf8961c1dc1", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "cb552eff11a1", + "ee0c4638d266" ] } }, @@ -657,11 +667,11 @@ }, "state": "a778223fed77", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "99253302972b", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "e4f04d0c9aea", + "ee0c4638d266" ] } }, @@ -675,11 +685,11 @@ }, "state": "a778223fed77", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "99253302972b", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "e4f04d0c9aea", + "ee0c4638d266" ] } }, @@ -693,11 +703,11 @@ }, "state": "fc6d55bc97ed", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "71339c38458c", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "760b8f2ae31c", + "ee0c4638d266" ] } }, @@ -712,11 +722,11 @@ }, "state": "d40dd5c93d21", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "ea91918fd5a8", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "df409b3cc9c2", + "ee0c4638d266" ] } }, @@ -731,11 +741,11 @@ }, "state": "88573133f7d5", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "1474fb688cbe", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "99482bc5b01e", + "ee0c4638d266" ] } } diff --git a/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json b/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json index 229a056dfa0..cd71748b1b2 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "fbd311a377672a9335521c30734880eea1b04bab0aff367854c1deebcf66b105", "platform": "darwin", @@ -75,12 +75,6 @@ } } }, - "24054d93a95f": { - "name": "providers", - "value": { - "host-1": ["github"] - } - }, "27e92f99be15": { "name": "linear.status#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" @@ -288,6 +282,13 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "a3c30fa6fdda": { "name": "linear.status#1", "args": [ @@ -606,7 +607,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -630,7 +631,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -642,7 +643,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -654,7 +655,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -666,7 +667,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -678,7 +679,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -690,7 +691,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -702,7 +703,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -714,7 +715,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -727,7 +728,7 @@ "disconnect": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -740,7 +741,7 @@ "cutover": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } } ] diff --git a/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json b/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json index c293ce5e29f..69711308ad9 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "2726d71130f623e3ad02c168c13269979ca6f84703bf1c5aaf36bd4432dfb516", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json index 025e675c03b..817166d068a 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "664eba1468e229f9ac2dced262e7ad896ead01688dff4c570f397c3f8594efd7", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -38,6 +46,13 @@ "startedAt": 0 } }, + "04741fa0bd91": { + "name": "hostPlatform", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, "06eff8247d02": { "name": "settings.get#1", "args": [ @@ -232,10 +247,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4335d4b6568f": { "name": "settings.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -259,13 +270,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -369,10 +373,28 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 + }, + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, "9acf4d7a0ba1": { "name": "host.platform#1", "args": [ @@ -404,9 +426,10 @@ } } }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 }, "a7ffdd83bc7d": { "name": "host.platform#1", @@ -444,13 +467,6 @@ } } }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] - }, "af6903aed166": { "name": "settings.get#1", "args": [ @@ -567,27 +583,10 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" }, - "e24ce14b72e9": { - "name": "hostPlatform", - "value": { - "$rpc": "null" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -596,6 +595,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -648,7 +655,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -662,12 +669,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -681,7 +688,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -695,12 +702,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -714,7 +721,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -728,12 +735,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -747,7 +754,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -761,12 +768,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -780,7 +787,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -793,7 +800,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -807,12 +814,12 @@ }, "state": "6134b73f18d0", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -827,12 +834,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -848,12 +855,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } }, @@ -869,12 +876,12 @@ }, "state": "1de50f3b4aac", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "e24ce14b72e9" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "04741fa0bd91" ] } } diff --git a/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json index 996e9424f33..0ccef41a660 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "7bfba3fae1dc33acf40e8a955bbfccf28580b3daee3270dec6a15e6cefd45a84", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json b/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json index 15d5c83d91b..97e8fe98e08 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "02e3ca10296704b5478185e9d3dc0136596a2ee57580d7f9268672568dab4cd4", "platform": "darwin", @@ -13,21 +13,17 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" - }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, "06eff8247d02": { "name": "settings.get#1", @@ -65,6 +61,13 @@ } } }, + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, "090c88478661": { "name": "settings.get#1", "args": [ @@ -90,27 +93,25 @@ "startedAt": 0 } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, - "149b4ddbd6c6": { - "name": "error", - "value": "RPC interrupted by connection migration" + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 }, - "16f398d67267": { - "name": "linearConnected", - "value": false - }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -149,9 +150,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -178,51 +180,71 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", + "28fa1cba5d1a": { + "name": "githubProjectSettings", "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { + "2c04c960ee94": { "name": "showLinearTeamPicker", - "value": false + "value": false, + "sent": 0 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 + }, + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "45337ae88e11": { + "name": "error", + "value": "Connection lost", + "sent": 5 }, "47d40c6fb90c": { "name": "preflight.check#1", @@ -260,43 +282,22 @@ } } }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false + "4976dfca54f0": { + "name": "taskStateHydrated", + "value": false, + "sent": 5 }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", + "546c38d1781a": { + "name": "mergeMethodProjectRow", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false - }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false - }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] - }, - "57da83afd125": { - "name": "taskStateHydrated", - "value": true - }, - "5851c3d3d9e0": { - "name": "error", - "value": "ui.get#1 rejected" + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 }, "586159bf259e": { "name": "preflight.check#1", @@ -329,6 +330,11 @@ } } }, + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 + }, "58c52d8b7c76": { "hydrated": true, "settings": { @@ -339,12 +345,13 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -371,6 +378,19 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, + "685a5cc6be3d": { + "name": "error", + "value": "Request timed out: settings.get", + "sent": 5 + }, "68aa55411b15": { "name": "ui.get#1", "args": [ @@ -466,27 +486,24 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 + }, + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, "7fc945a92540": { "name": "settings.get#1", @@ -519,41 +536,100 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" - }, - "888c93f6f346": { - "name": "appliedQuery", - "value": "is:issue is:open" - }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" - }, - "8f30512a5135": { - "name": "error", - "value": "Request timed out: settings.get" - }, - "977e1de1ac2f": { + "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", + "86a763922cd7": { + "name": "appliedQuery", + "value": "is:issue is:open", + "sent": 5 + }, + "8810d8a1143b": { + "name": "error", + "value": "ui.get#1 rejected", + "sent": 5 + }, + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "9a0f810232ef": { - "name": "provider", - "value": "github" + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 + }, + "990d36ffab6d": { + "name": "error", + "value": "RPC interrupted by connection migration", + "sent": 5 + }, + "9b1d9febbcf6": { + "name": "showLinearGroupPicker", + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "a1b99265507f": { "name": "ui.get#1", @@ -591,9 +667,10 @@ } } }, - "a211e64f0900": { - "name": "showLinearGroupPicker", - "value": false + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -620,9 +697,26 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -661,12 +755,6 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, "ae1d901c204f": { "name": "linear.status#1", "args": [ @@ -729,31 +817,17 @@ } } }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false + "b9481aea1fae": { + "name": "taskStateHydrated", + "value": false, + "sent": 0 }, "ba4739591371": { "name": "linear.status#1", @@ -817,34 +891,34 @@ } } }, - "bbbd4bc0a4ef": { - "name": "taskStateHydrated", - "value": false + "bf998d79cda2": { + "name": "error", + "value": "settings.get#1 rejected", + "sent": 5 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, - "bfd6af371d88": { - "name": "githubProjectSettings", - "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 + }, + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, "cdeb94d60934": { "name": "linear.status#1", @@ -882,13 +956,6 @@ } } }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } - }, "d041d5155ed5": { "name": "settings.get#1", "args": [ @@ -920,9 +987,10 @@ } } }, - "d36257ed8dd7": { - "name": "error", - "value": "settings.get#1 rejected" + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 }, "d42b1a5610cf": { "name": "ui.get#1", @@ -955,9 +1023,15 @@ } } }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "d705fce957e8": { "name": "settings.get#1", @@ -998,14 +1072,6 @@ } } }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false - }, "e5662efa8968": { "name": "preflight.check#1", "args": [ @@ -1045,14 +1111,22 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1065,25 +1139,20 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 }, - "fa7ce9018e50": { - "name": "error", - "value": "Connection lost" - }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -1111,46 +1180,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1176,65 +1245,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1260,46 +1329,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -1325,65 +1394,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1409,48 +1478,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "d36257ed8dd7", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "bf998d79cda2", + "4976dfca54f0" ] } }, @@ -1476,48 +1545,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "d36257ed8dd7", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "bf998d79cda2", + "4976dfca54f0" ] } }, @@ -1543,48 +1612,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "5851c3d3d9e0", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "8810d8a1143b", + "4976dfca54f0" ] } }, @@ -1610,48 +1679,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "5851c3d3d9e0", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "8810d8a1143b", + "4976dfca54f0" ] } }, @@ -1677,48 +1746,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "d36257ed8dd7", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "bf998d79cda2", + "4976dfca54f0" ] } }, @@ -1744,48 +1813,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "d36257ed8dd7", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "bf998d79cda2", + "4976dfca54f0" ] } }, @@ -1811,48 +1880,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "8f30512a5135", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "685a5cc6be3d", + "4976dfca54f0" ] } }, @@ -1879,48 +1948,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "fa7ce9018e50", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "45337ae88e11", + "4976dfca54f0" ] } }, @@ -1947,48 +2016,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "149b4ddbd6c6", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "990d36ffab6d", + "4976dfca54f0" ] } } diff --git a/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json b/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json index 6ddd9f7159d..8213b62afcb 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "eb980fc027ca0200212ba6ad3bf9a1ab3460936a7bb4b04353a9462eecd287a1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-browser-refused.json b/mobile/rpc-foundation/goldens/session-create-browser-refused.json new file mode 100644 index 00000000000..9a4dd9a4f17 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-create-browser-refused.json @@ -0,0 +1,95 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "59b5f0aac2f8c1aab5fc3a457fb69e1a2f46cc88c617c25e638175acb7f7c0cb", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "bb05a6069ebb": { + "name": "browser.tabCreate#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.tabCreate\",\"params\":{\"worktree\":\"id:workspace-1\",\"url\":\"https://example.com/\",\"activate\":true}}" + }, + "c0b693ccb37f": { + "name": "toast", + "value": { + "message": "Browser unavailable" + }, + "sent": 1 + }, + "dd0b5e7b9130": { + "createError": "Browser unavailable", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "e9f47954fab6": { + "name": "browser.tabCreate#1", + "args": [ + { + "name": "method", + "value": "browser.tabCreate" + }, + { + "name": "params", + "value": { + "activate": true, + "url": "https://example.com/", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "browser_unavailable", + "message": "Browser unavailable" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "session-create-browser-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["e9f47954fab6"], + "payloads": ["bb05a6069ebb"], + "settlements": { + "browser": "7ed3d39f0607" + }, + "state": "dd0b5e7b9130", + "effects": ["c0b693ccb37f"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-create-browser-tab.json b/mobile/rpc-foundation/goldens/session-create-browser-tab.json new file mode 100644 index 00000000000..d826a8c6850 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-create-browser-tab.json @@ -0,0 +1,95 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "36dbd24dc3d24be8c14217ced1963d10ef8264438729dd146cbff79d9fbdf279", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "07d997e5200c": { + "name": "browser.tabCreate#1", + "args": [ + { + "name": "method", + "value": "browser.tabCreate" + }, + { + "name": "params", + "value": { + "activate": true, + "url": "https://example.com/", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "browserPageId": "page-1" + } + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "bb05a6069ebb": { + "name": "browser.tabCreate#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.tabCreate\",\"params\":{\"worktree\":\"id:workspace-1\",\"url\":\"https://example.com/\",\"activate\":true}}" + }, + "c859631e4bcf": { + "name": "fetch-pending-browser-tabs", + "value": {}, + "sent": 1 + }, + "ea918e983453": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 1 + }, + "f1e12d7f04c7": { + "createError": "", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": "page-1" + } + }, + "recording": { + "scenario": "session-create-browser-tab", + "checkpoints": [ + { + "id": "created", + "observation": { + "sender": ["07d997e5200c"], + "payloads": ["bb05a6069ebb"], + "settlements": { + "browser": "84e5ca07cb7a" + }, + "state": "f1e12d7f04c7", + "effects": ["ea918e983453", "c859631e4bcf", "c859631e4bcf"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json b/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json new file mode 100644 index 00000000000..e4685d0d82a --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json @@ -0,0 +1,260 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "be8d4b4be07b0ee5988471b26813d7d0d2a97fbd789b52e7ce00dd09a2e9d75c", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "13a89fc89dab": { + "name": "files.createFile#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled-2.md\",\"expectedExecutionHostId\":\"local\"}}" + }, + "1516e9dc6c00": { + "name": "files.createFile#2", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled-2.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "created": true + } + } + } + }, + "1ae76b6c393a": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "file_exists", + "message": "File already exists" + }, + "id": "frame-3", + "ok": false + } + } + }, + "1e5b32902af7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "28f2fcd8bdba": { + "name": "files.open#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled-2.md\"}}" + }, + "8bdc2aec524d": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + } + }, + "9199aee60486": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "a56852d6836b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + } + }, + "c9a43ed104a1": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 5 + }, + "d574cdcd4bef": { + "createError": "", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "e344f453f8a0": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + }, + "e841975c6b30": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled-2.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-5", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-create-markdown-name-collision", + "checkpoints": [ + { + "id": "created-second", + "observation": { + "sender": [ + "a56852d6836b", + "8bdc2aec524d", + "1ae76b6c393a", + "1516e9dc6c00", + "e841975c6b30" + ], + "payloads": [ + "1e5b32902af7", + "9199aee60486", + "e344f453f8a0", + "13a89fc89dab", + "28f2fcd8bdba" + ], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["c9a43ed104a1"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-create-markdown-note.json b/mobile/rpc-foundation/goldens/session-create-markdown-note.json new file mode 100644 index 00000000000..ae943c2debf --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-create-markdown-note.json @@ -0,0 +1,208 @@ +{ + "operation": "session.content-create", + "family": "session.content-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "4118eea1175cba0f15174072f5715f9054ded09a4cb0c359fc4ee41ad00e9440", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "085ee12ac483": { + "name": "fetch-session-tabs", + "value": {}, + "sent": 4 + }, + "1e5b32902af7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "37cca55d53d5": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" + }, + "4267c22fd1f9": { + "name": "files.createFile#1", + "args": [ + { + "name": "method", + "value": "files.createFile" + }, + { + "name": "params", + "value": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "created": true + } + } + } + }, + "8bdc2aec524d": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + } + }, + "9199aee60486": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "a56852d6836b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + } + }, + "d38c135a5752": { + "name": "files.open#1", + "args": [ + { + "name": "method", + "value": "files.open" + }, + { + "name": "params", + "value": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "opened": true + } + } + } + }, + "d574cdcd4bef": { + "createError": "", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, + "e344f453f8a0": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-create-markdown-note", + "checkpoints": [ + { + "id": "created", + "observation": { + "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], + "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d574cdcd4bef", + "effects": ["085ee12ac483"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json b/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json new file mode 100644 index 00000000000..397b6514970 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json @@ -0,0 +1,87 @@ +{ + "operation": "session.diff-notes", + "family": "session.diff-notes", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "5ab16800f82813778078e84739e0ac72886c145d20789dedcea9428ee31b9182", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "03647b94e7bf": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "432aeb4f1709": { + "busy": false, + "diffComments": [], + "pendingDelivery": { + "$rpc": "null" + } + }, + "db47451011c5": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + }, + "id": "frame-1", + "ok": false + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-diff-notes-load-refused", + "checkpoints": [ + { + "id": "unchanged", + "observation": { + "sender": ["db47451011c5"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "432aeb4f1709", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json b/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json new file mode 100644 index 00000000000..81ed3284fbd --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json @@ -0,0 +1,129 @@ +{ + "operation": "session.diff-notes", + "family": "session.diff-notes", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "795286ff495a243059a3eb55ccbbc9b4adfdd2034258f91f9182e83c7492fa60", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "03647b94e7bf": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "aca7af380492": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "worktree": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "worktreeId": "workspace-1" + } + ] + } + } + } + } + }, + "e28b1ad79121": { + "busy": false, + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "diffIdentity": { + "$rpc": "undefined" + }, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "oldPath": { + "$rpc": "undefined" + }, + "scope": { + "$rpc": "undefined" + }, + "selectedText": { + "$rpc": "undefined" + }, + "sentAt": { + "$rpc": "undefined" + }, + "side": "modified", + "source": "diff", + "startLine": { + "$rpc": "undefined" + }, + "updatedAt": { + "$rpc": "undefined" + }, + "worktreeId": "workspace-1" + } + ], + "pendingDelivery": { + "$rpc": "null" + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-diff-notes-loaded", + "checkpoints": [ + { + "id": "loaded", + "observation": { + "sender": ["aca7af380492"], + "payloads": ["03647b94e7bf"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "e28b1ad79121", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-file-tab-read.json b/mobile/rpc-foundation/goldens/session-file-tab-read.json new file mode 100644 index 00000000000..f3c09305d45 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-file-tab-read.json @@ -0,0 +1,94 @@ +{ + "operation": "session.tab-documents", + "family": "session.tab-documents", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "82c1d8e87e0a87c1c1a6dba7bd4f61e08f77fe0ae1b3758d1b5543bd9719a53f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "06d27c3812c2": { + "name": "files.read#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" + }, + "5ea03f95e781": { + "file": { + "tab-file": { + "byteLength": 2, + "content": "a\n", + "kind": "file", + "status": "ready", + "truncated": false + } + }, + "markdown": {} + }, + "d2e653f33d26": { + "name": "files.read#1", + "args": [ + { + "name": "method", + "value": "files.read" + }, + { + "name": "params", + "value": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "byteLength": 2, + "content": "a\n", + "truncated": false + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-file-tab-read", + "checkpoints": [ + { + "id": "read", + "observation": { + "sender": ["d2e653f33d26"], + "payloads": ["06d27c3812c2"], + "settlements": { + "file": "eb79a9b3682a" + }, + "state": "5ea03f95e781", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json b/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json new file mode 100644 index 00000000000..bac5c4a3188 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json @@ -0,0 +1,97 @@ +{ + "operation": "session.markdown-save", + "family": "session.markdown-save", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "76bccdabb78dc3f16b36987f6b7cefbe41e08167fe39612620e27ad476089f93", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0d00673cd931": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "version_conflict", + "message": "Document changed on disk" + }, + "id": "frame-1", + "ok": false + } + } + }, + "aa5c91b36a35": { + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": true, + "localContent": "# b", + "saveError": "Document changed on disk", + "saving": false, + "status": "ready" + } + } + }, + "be35c536a20e": { + "name": "markdown.saveTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-markdown-save-conflict", + "checkpoints": [ + { + "id": "conflicted", + "observation": { + "sender": ["0d00673cd931"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "aa5c91b36a35", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-markdown-saved.json b/mobile/rpc-foundation/goldens/session-markdown-saved.json new file mode 100644 index 00000000000..890d0a1e34d --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-markdown-saved.json @@ -0,0 +1,103 @@ +{ + "operation": "session.markdown-save", + "family": "session.markdown-save", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", + "scenarioSha256": "a2b5b73b2455f9efc48361e4b96ab1d3ecc3d136459403c9c3678104604cd774", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "36de5fd645a3": { + "markdown": { + "tab-md": { + "baseVersion": "v2", + "content": "# b", + "editable": true, + "isDirty": false, + "localContent": "# b", + "status": "ready" + } + } + }, + "976e04874a1e": { + "name": "toast", + "value": { + "message": "Saved" + }, + "sent": 1 + }, + "a06e17cbe383": { + "name": "markdown.saveTab#1", + "args": [ + { + "name": "method", + "value": "markdown.saveTab" + }, + { + "name": "params", + "value": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "content": "# b", + "isDirty": false, + "version": "v2" + } + } + } + }, + "be35c536a20e": { + "name": "markdown.saveTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-markdown-saved", + "checkpoints": [ + { + "id": "saved", + "observation": { + "sender": ["a06e17cbe383"], + "payloads": ["be35c536a20e"], + "settlements": { + "save": "eb79a9b3682a" + }, + "state": "36de5fd645a3", + "effects": ["976e04874a1e"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json b/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json new file mode 100644 index 00000000000..1fbfceef61a --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json @@ -0,0 +1,136 @@ +{ + "operation": "session.tab-documents", + "family": "session.tab-documents", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "f46cef9d1c6a5ed6d8b6f1d180cdf5c666f52e043b70feb07e5fccee885ceeda", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "10a4d64eaaba": { + "name": "files.read#1", + "args": [ + { + "name": "method", + "value": "files.read" + }, + { + "name": "params", + "value": { + "relativePath": "docs/readme.md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "byteLength": 6, + "content": "# disk", + "truncated": false + } + } + } + }, + "82537e84c006": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "renderer_unavailable", + "message": "Renderer unavailable" + }, + "id": "frame-1", + "ok": false + } + } + }, + "b084676e5f8f": { + "name": "markdown.readTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + }, + "c6cea5310098": { + "file": {}, + "markdown": { + "tab-md": { + "baseVersion": "", + "content": "# disk", + "editable": false, + "isDirty": false, + "localContent": "# disk", + "readOnlyReason": "Editing needs Orca desktop running.", + "stale": false, + "status": "ready" + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ff6e4cc603b2": { + "name": "files.read#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}" + } + }, + "recording": { + "scenario": "session-markdown-tab-disk-fallback", + "checkpoints": [ + { + "id": "fell-back", + "observation": { + "sender": ["82537e84c006", "10a4d64eaaba"], + "payloads": ["b084676e5f8f", "ff6e4cc603b2"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "c6cea5310098", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-read.json b/mobile/rpc-foundation/goldens/session-markdown-tab-read.json new file mode 100644 index 00000000000..63a7d12e629 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-markdown-tab-read.json @@ -0,0 +1,100 @@ +{ + "operation": "session.tab-documents", + "family": "session.tab-documents", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "f88c39d410655b229aa740b45ccdaa10186f41f7c6cbff9fed6eaee3f0a55844", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "38b08634cae3": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "content": "# a", + "editable": true, + "isDirty": false, + "version": "v1" + } + } + } + }, + "b084676e5f8f": { + "name": "markdown.readTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + }, + "d4cf305b17f8": { + "file": {}, + "markdown": { + "tab-md": { + "baseVersion": "v1", + "content": "# a", + "editable": true, + "isDirty": false, + "localContent": "# a", + "readOnlyReason": { + "$rpc": "undefined" + }, + "stale": false, + "status": "ready" + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-markdown-tab-read", + "checkpoints": [ + { + "id": "read", + "observation": { + "sender": ["38b08634cae3"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "d4cf305b17f8", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json b/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json new file mode 100644 index 00000000000..08f344f5ea0 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json @@ -0,0 +1,90 @@ +{ + "operation": "session.tab-documents", + "family": "session.tab-documents", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "63227f28110e90acac78058baa875b1bc7f8895b5033e47016a2ffa9f42f66ce", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "287a8e550afb": { + "name": "markdown.readTab#1", + "args": [ + { + "name": "method", + "value": "markdown.readTab" + }, + { + "name": "params", + "value": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "tab_not_found", + "message": "No such tab" + }, + "id": "frame-1", + "ok": false + } + } + }, + "877720375363": { + "file": {}, + "markdown": { + "tab-md": { + "message": "Couldn't load markdown", + "status": "error" + } + } + }, + "b084676e5f8f": { + "name": "markdown.readTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-markdown-tab-refused", + "checkpoints": [ + { + "id": "errored", + "observation": { + "sender": ["287a8e550afb"], + "payloads": ["b084676e5f8f"], + "settlements": { + "markdown": "eb79a9b3682a" + }, + "state": "877720375363", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tab-activation-focus-and-activate.json b/mobile/rpc-foundation/goldens/session-tab-activation-focus-and-activate.json new file mode 100644 index 00000000000..3dd023ccb6b --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tab-activation-focus-and-activate.json @@ -0,0 +1,157 @@ +{ + "operation": "session.tab-activation", + "family": "session.tab-activation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "72a972996461cc58bda2b1c11dbb4ecdbdecd5ff2f977c3d61e40d635f63c1b9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0442e34fbb3f": { + "name": "terminal.focus#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" + }, + "4e4394afbcef": { + "activate": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + }, + "failure": { + "$rpc": "null" + }, + "focus": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + }, + "7118e8aeaaae": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + } + }, + "84d74a6de2ca": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + } + }, + "c9c16f3b6d6f": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" + }, + "e495a9a84cf0": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "activated": true + } + } + } + }, + "ecc5d1639f16": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "focused": true + } + } + } + }, + "recording": { + "scenario": "session-tab-activation-focus-and-activate", + "checkpoints": [ + { + "id": "activated", + "observation": { + "sender": ["7118e8aeaaae", "e495a9a84cf0"], + "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "settlements": { + "focus": "ecc5d1639f16", + "activate": "84d74a6de2ca" + }, + "state": "4e4394afbcef", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tab-activation-refused.json b/mobile/rpc-foundation/goldens/session-tab-activation-refused.json new file mode 100644 index 00000000000..20da9b09f6d --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tab-activation-refused.json @@ -0,0 +1,102 @@ +{ + "operation": "session.tab-activation", + "family": "session.tab-activation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "e5049c9ee2aef93194adf1b9540c1eb4b085e6f975648c5ed605718d19fc6afa", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "21ff36a206dc": { + "name": "session.tabs.activate#1", + "args": [ + { + "name": "method", + "value": "session.tabs.activate" + }, + { + "name": "params", + "value": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "tab_not_found", + "message": "No such tab" + }, + "id": "frame-1", + "ok": false + } + } + }, + "28eff5fc7100": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" + }, + "7a0a4e34e537": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "tab_not_found", + "message": "No such tab" + }, + "id": "frame-1", + "ok": false + } + }, + "97f1e4150cc6": { + "activate": { + "error": { + "code": "tab_not_found", + "message": "No such tab" + }, + "id": "frame-1", + "ok": false + }, + "failure": { + "$rpc": "null" + } + } + }, + "recording": { + "scenario": "session-tab-activation-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["21ff36a206dc"], + "payloads": ["28eff5fc7100"], + "settlements": { + "activate": "7a0a4e34e537" + }, + "state": "97f1e4150cc6", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json b/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json new file mode 100644 index 00000000000..0d0a6532da5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json @@ -0,0 +1,83 @@ +{ + "operation": "session.tab-activation", + "family": "session.tab-activation", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "44e25e8624c6d7f072c5f7aa3c706df29d0e751bb59b3fb58bec003233f7e5e3", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0442e34fbb3f": { + "name": "terminal.focus#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" + }, + "6b74a7e08acf": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Request timed out", + "isRpcDeliveryUnknown": false + } + }, + "9acb73463ead": { + "failure": "Request timed out" + }, + "cbd74f978cf1": { + "name": "terminal.focus#1", + "args": [ + { + "name": "method", + "value": "terminal.focus" + }, + { + "name": "params", + "value": { + "navigation": "host", + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Request timed out", + "isRpcDeliveryUnknown": false + } + } + } + }, + "recording": { + "scenario": "session-tab-activation-transport-error", + "checkpoints": [ + { + "id": "errored", + "observation": { + "sender": ["cbd74f978cf1"], + "payloads": ["0442e34fbb3f"], + "settlements": { + "focus": "6b74a7e08acf" + }, + "state": "9acb73463ead", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tab-close-refused-keeps-tab.json b/mobile/rpc-foundation/goldens/session-tab-close-refused-keeps-tab.json new file mode 100644 index 00000000000..06f66f7482f --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tab-close-refused-keeps-tab.json @@ -0,0 +1,99 @@ +{ + "operation": "session.tab-close", + "family": "session.tab-close", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "1b3da0207aef65f4b2348aed334284259170c640e767fb354b9e95f3c1369445", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2d697fe0c9bf": { + "name": "terminal.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "3e15def58214": { + "activeHandle": "terminal-1", + "sessionTabs": [ + { + "id": "tab-1", + "isActive": true, + "terminal": "terminal-1", + "title": "Terminal", + "type": "terminal" + } + ], + "terminals": [ + { + "handle": "terminal-1", + "isActive": true, + "title": "Terminal" + } + ] + }, + "ca6a54b1b350": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "terminal_not_found", + "message": "No such terminal" + }, + "id": "frame-1", + "ok": false + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tab-close-refused-keeps-tab", + "checkpoints": [ + { + "id": "kept", + "observation": { + "sender": ["ca6a54b1b350"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "3e15def58214", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json b/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json new file mode 100644 index 00000000000..246e5383561 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json @@ -0,0 +1,108 @@ +{ + "operation": "session.tab-close", + "family": "session.tab-close", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "fe83a7d50d08f874d863eb8872bcb24d974c1dc46571a93d3f9184f8feba63a4", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "375042b2eaa9": { + "name": "session.tabs.close#1", + "args": [ + { + "name": "method", + "value": "session.tabs.close" + }, + { + "name": "params", + "value": { + "reason": "user", + "tabId": "tab-1", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "closed": true + } + } + } + }, + "567d11711027": { + "activeHandle": { + "$rpc": "null" + }, + "sessionTabs": [], + "terminals": [ + { + "handle": "terminal-1", + "isActive": true, + "title": "Terminal" + } + ] + }, + "a1c0c7168922": { + "name": "unsubscribe-terminal", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "c965e2e20176": { + "name": "clear-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "cc794cc20e4c": { + "name": "session.tabs.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.close\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"reason\":\"user\"}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tab-close-session-tab", + "checkpoints": [ + { + "id": "closed", + "observation": { + "sender": ["375042b2eaa9"], + "payloads": ["cc794cc20e4c"], + "settlements": { + "close-tab": "eb79a9b3682a" + }, + "state": "567d11711027", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tab-close-terminal.json b/mobile/rpc-foundation/goldens/session-tab-close-terminal.json new file mode 100644 index 00000000000..cde03759e0e --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tab-close-terminal.json @@ -0,0 +1,108 @@ +{ + "operation": "session.tab-close", + "family": "session.tab-close", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "194b010d00fdeca85418870fd053ac500c38cae02e98c4bfc544b8fea78bbcb8", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2d697fe0c9bf": { + "name": "terminal.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "7e31b0a0202e": { + "name": "terminal.close#1", + "args": [ + { + "name": "method", + "value": "terminal.close" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "closed": true + } + } + } + }, + "a1c0c7168922": { + "name": "unsubscribe-terminal", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "c965e2e20176": { + "name": "clear-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "de039f500462": { + "activeHandle": { + "$rpc": "null" + }, + "sessionTabs": [ + { + "id": "tab-1", + "isActive": true, + "terminal": "terminal-1", + "title": "Terminal", + "type": "terminal" + } + ], + "terminals": [] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tab-close-terminal", + "checkpoints": [ + { + "id": "closed", + "observation": { + "sender": ["7e31b0a0202e"], + "payloads": ["2d697fe0c9bf"], + "settlements": { + "close-terminal": "eb79a9b3682a" + }, + "state": "de039f500462", + "effects": ["a1c0c7168922", "c965e2e20176"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tab-rename.json b/mobile/rpc-foundation/goldens/session-tab-rename.json new file mode 100644 index 00000000000..41ddacdb053 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tab-rename.json @@ -0,0 +1,104 @@ +{ + "operation": "session.tab-close", + "family": "session.tab-close", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", + "scenarioSha256": "9e877af8539e5425f65edd6b3ff8af73e719aae2033980411a8e8a3b508dcd9e", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "42b6d6d7fdf9": { + "activeHandle": "terminal-1", + "sessionTabs": [ + { + "id": "tab-1", + "isActive": true, + "terminal": "terminal-1", + "title": "Terminal", + "type": "terminal" + } + ], + "terminals": [ + { + "handle": "terminal-1", + "isActive": true, + "title": "build" + } + ] + }, + "5d179ad4af0c": { + "name": "fetch-terminals", + "value": {}, + "sent": 1 + }, + "89e4126272a3": { + "name": "terminal.rename#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.rename\",\"params\":{\"terminal\":\"terminal-1\",\"title\":\"build\"}}" + }, + "986504944223": { + "name": "terminal.rename#1", + "args": [ + { + "name": "method", + "value": "terminal.rename" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1", + "title": "build" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "renamed": true + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tab-rename", + "checkpoints": [ + { + "id": "renamed", + "observation": { + "sender": ["986504944223"], + "payloads": ["89e4126272a3"], + "settlements": { + "rename": "eb79a9b3682a" + }, + "state": "42b6d6d7fdf9", + "effects": ["5d179ad4af0c"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-errored.json b/mobile/rpc-foundation/goldens/session-tabs-health-errored.json new file mode 100644 index 00000000000..8ce56a02350 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tabs-health-errored.json @@ -0,0 +1,98 @@ +{ + "operation": "session.tabs-stream-health", + "family": "session.tabs-stream-health", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "4f55a21a5c42ff8d96ccb1b16de235f91f9f7e38fe90de7191c36c8c16cc4e43", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2f0306c93cc8": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Connection lost", + "isRpcDeliveryUnknown": true + } + } + }, + "30425281a407": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "49a2260ea0e7": { + "accepted": "unapplied", + "applicationRevision": 0 + }, + "5a7cc7a45078": { + "name": "fetch-started", + "value": {}, + "sent": 0 + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "8930753f2284": { + "name": "fetch-errored", + "value": "Connection lost", + "sent": 1 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tabs-health-errored", + "checkpoints": [ + { + "id": "errored", + "observation": { + "sender": ["2f0306c93cc8"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "8930753f2284"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json b/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json new file mode 100644 index 00000000000..4b70f7a2640 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json @@ -0,0 +1,117 @@ +{ + "operation": "session.tabs-stream-health", + "family": "session.tabs-stream-health", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "29bee268df8e92fb1e3fd59291262c8d2d04a1b7e9fe40f6ed8dd181b0df828a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "30425281a407": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "5a7cc7a45078": { + "name": "fetch-started", + "value": {}, + "sent": 0 + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "9653864fb896": { + "name": "fetch-succeeded", + "value": { + "tabs": [ + { + "id": "tab-1" + } + ] + }, + "sent": 1 + }, + "d46815b7ac09": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tabs": [ + { + "id": "tab-1" + } + ] + } + } + } + }, + "e29309cc10af": { + "accepted": { + "source": "list", + "tabs": [ + { + "id": "tab-1" + } + ] + }, + "applicationRevision": 0 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tabs-health-reconciled", + "checkpoints": [ + { + "id": "reconciled", + "observation": { + "sender": ["d46815b7ac09"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "e29309cc10af", + "effects": ["5a7cc7a45078", "9653864fb896"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-refused.json b/mobile/rpc-foundation/goldens/session-tabs-health-refused.json new file mode 100644 index 00000000000..bb650df900a --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tabs-health-refused.json @@ -0,0 +1,104 @@ +{ + "operation": "session.tabs-stream-health", + "family": "session.tabs-stream-health", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "101e8ce865088891800680db0e3df787b5f15ceb05ace9840931c384d9732d1c", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "30425281a407": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "49a2260ea0e7": { + "accepted": "unapplied", + "applicationRevision": 0 + }, + "5a7cc7a45078": { + "name": "fetch-started", + "value": {}, + "sent": 0 + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "98c25056240e": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + }, + "id": "frame-1", + "ok": false + } + } + }, + "d63bc6be6a3f": { + "name": "fetch-failed", + "value": { + "code": "worktree_not_found", + "message": "No such workspace" + }, + "sent": 1 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tabs-health-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["98c25056240e"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a" + }, + "state": "49a2260ea0e7", + "effects": ["5a7cc7a45078", "d63bc6be6a3f"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-stale-application-revision.json b/mobile/rpc-foundation/goldens/session-tabs-health-stale-application-revision.json new file mode 100644 index 00000000000..2b3db55ac65 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-tabs-health-stale-application-revision.json @@ -0,0 +1,106 @@ +{ + "operation": "session.tabs-stream-health", + "family": "session.tabs-stream-health", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", + "scenarioSha256": "5381b6ade796596ac362d4ed64349266e65fe8fd2b4fc778a54315d4b6fda3da", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "30425281a407": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + }, + "59faf5cb6372": { + "accepted": "unapplied", + "applicationRevision": 1 + }, + "5a7cc7a45078": { + "name": "fetch-started", + "value": {}, + "sent": 0 + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "adcbf91f89c3": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": 1 + }, + "d46815b7ac09": { + "name": "session.tabs.list#1", + "args": [ + { + "name": "method", + "value": "session.tabs.list" + }, + { + "name": "params", + "value": { + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "tabs": [ + { + "id": "tab-1" + } + ] + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "session-tabs-health-stale-application-revision", + "checkpoints": [ + { + "id": "dropped", + "observation": { + "sender": ["d46815b7ac09"], + "payloads": ["30425281a407"], + "settlements": { + "activate": "84e5ca07cb7a", + "reconcile": "eb79a9b3682a", + "revise": "adcbf91f89c3" + }, + "state": "59faf5cb6372", + "effects": ["5a7cc7a45078"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json b/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json new file mode 100644 index 00000000000..d44557518e9 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json @@ -0,0 +1,117 @@ +{ + "operation": "session.terminal-inventory", + "family": "session.terminal-inventory", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "d0f5ecc9c8fcb10193f481648215a54460ce5a54a8fbd2ded3921a9599fefc0a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "271df7941ce5": { + "name": "default-live-input", + "value": ["terminal-1"], + "sent": 1 + }, + "2d3e1bb92043": { + "name": "prune-live-input", + "value": ["terminal-1"], + "sent": 1 + }, + "580c77c4c1df": { + "known": [ + { + "handle": "terminal-1", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "one" + } + ], + "terminals": [ + { + "handle": "terminal-1", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "one" + } + ] + }, + "5eea50c700fd": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "8bdb2a48d7ae": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminals": [ + { + "handle": "terminal-1", + "title": "one" + }, + { + "handle": "terminal-1", + "title": "renamed" + } + ] + } + } + } + } + }, + "recording": { + "scenario": "session-terminal-list-dedupes-handles", + "checkpoints": [ + { + "id": "deduped", + "observation": { + "sender": ["8bdb2a48d7ae"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "84e5ca07cb7a" + }, + "state": "580c77c4c1df", + "effects": ["2d3e1bb92043", "271df7941ce5"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json b/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json new file mode 100644 index 00000000000..1b6e6a1c919 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json @@ -0,0 +1,82 @@ +{ + "operation": "session.terminal-inventory", + "family": "session.terminal-inventory", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "5c2b3237a14f9df9357ab458b2e21f2df8e68ad6bf6dc5670c0ace7eeb567e80", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "328e7f8994b4": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminals": [] + } + } + } + }, + "5eea50c700fd": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" + }, + "6aa9d70c1c82": { + "known": [], + "terminals": [] + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + } + }, + "recording": { + "scenario": "session-terminal-list-empty-guarded", + "checkpoints": [ + { + "id": "kept", + "observation": { + "sender": ["328e7f8994b4"], + "payloads": ["5eea50c700fd"], + "settlements": { + "no-empty": "84e5ca07cb7a" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-merged.json b/mobile/rpc-foundation/goldens/session-terminal-list-merged.json new file mode 100644 index 00000000000..13fce52aae3 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-terminal-list-merged.json @@ -0,0 +1,131 @@ +{ + "operation": "session.terminal-inventory", + "family": "session.terminal-inventory", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "9f3fb6e58e8d9ef4f52b2b6c0a42b6e4285d5786060f966261795cf64d055f65", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "5cd2b97372d8": { + "name": "prune-live-input", + "value": ["terminal-1", "terminal-2"], + "sent": 1 + }, + "5eea50c700fd": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" + }, + "727166f3bc25": { + "known": [ + { + "handle": "terminal-1", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "one" + }, + { + "handle": "terminal-2", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "two" + } + ], + "terminals": [ + { + "handle": "terminal-1", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "one" + }, + { + "handle": "terminal-2", + "terminalTheme": { + "$rpc": "undefined" + }, + "title": "two" + } + ] + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "c2ee5279a532": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "terminals": [ + { + "handle": "terminal-1", + "title": "one" + }, + { + "handle": "terminal-2", + "title": "two" + } + ] + } + } + } + }, + "ce7002e0ac64": { + "name": "default-live-input", + "value": ["terminal-1", "terminal-2"], + "sent": 1 + } + }, + "recording": { + "scenario": "session-terminal-list-merged", + "checkpoints": [ + { + "id": "listed", + "observation": { + "sender": ["c2ee5279a532"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "84e5ca07cb7a" + }, + "state": "727166f3bc25", + "effects": ["5cd2b97372d8", "ce7002e0ac64"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-refused.json b/mobile/rpc-foundation/goldens/session-terminal-list-refused.json new file mode 100644 index 00000000000..0af7ef6f597 --- /dev/null +++ b/mobile/rpc-foundation/goldens/session-terminal-list-refused.json @@ -0,0 +1,83 @@ +{ + "operation": "session.terminal-inventory", + "family": "session.terminal-inventory", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", + "scenarioSha256": "10a8ba5332f4fc2f90cff537ca69f2f1474339cbc4996f67a6feaea70669fb25", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "5eea50c700fd": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" + }, + "6aa9d70c1c82": { + "known": [], + "terminals": [] + }, + "7ed3d39f0607": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": false + }, + "fcb148236ef4": { + "name": "terminal.list#1", + "args": [ + { + "name": "method", + "value": "terminal.list" + }, + { + "name": "params", + "value": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + }, + "id": "frame-1", + "ok": false + } + } + } + }, + "recording": { + "scenario": "session-terminal-list-refused", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["fcb148236ef4"], + "payloads": ["5eea50c700fd"], + "settlements": { + "fetch": "7ed3d39f0607" + }, + "state": "6aa9d70c1c82", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json b/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json index ee0b0f66ccc..8b78fd734b3 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4b4b4a8d1acaaec1c8dde0233dc49a696ffe53466578477efcbcdb7263dbd617", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json b/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json index cf4ecd40d63..63ce3a3346c 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "cac4980465661fba372e187699741123a4edeb9270125a0a1cad7bbb6a6adebd", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json b/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json index 8e72fa1c8df..208898de170 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "f8ebd2348373b2b39c167735e0c418dfe868511fb5306ecba90cb6f2a905b95e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json b/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json index 11270bc946c..ca58b440e06 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "f7e63144421a689f05cc50ad87ec901a9eaeb3163165656887be12a5f2753005", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-home-coalesced.json b/mobile/rpc-foundation/goldens/settings-home-coalesced.json index 18be38031d1..e489508180e 100644 --- a/mobile/rpc-foundation/goldens/settings-home-coalesced.json +++ b/mobile/rpc-foundation/goldens/settings-home-coalesced.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d8d6f738ee11d84d6e9e546624f4babcb42476432f6bddbc74e8519d9ca18370", "platform": "darwin", @@ -100,11 +100,12 @@ "name": "preflight.check#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "24054d93a95f": { + "267fa3075543": { "name": "providers", "value": { "host-1": ["github"] - } + }, + "sent": 6 }, "27e92f99be15": { "name": "linear.status#1", @@ -547,7 +548,7 @@ "overlapping-load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["267fa3075543"] } }, { @@ -574,7 +575,7 @@ "overlapping-load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f", "24054d93a95f"] + "effects": ["267fa3075543", "267fa3075543"] } }, { @@ -608,7 +609,7 @@ "third-load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f", "24054d93a95f"] + "effects": ["267fa3075543", "267fa3075543"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json b/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json index f1b8af8930a..9ae2ae80510 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a32b2fc99e830c58460e6f7c857aed0048738a55501e508eb236604680b9c235", "platform": "darwin", @@ -13,12 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "24054d93a95f": { - "name": "providers", - "value": { - "host-1": ["github"] - } - }, "27e92f99be15": { "name": "linear.status#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" @@ -159,6 +153,13 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "a3c30fa6fdda": { "name": "linear.status#1", "args": [ @@ -250,7 +251,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-refuse-after-data.json b/mobile/rpc-foundation/goldens/settings-home-providers-refuse-after-data.json index bf2291c5e69..ec51b41dfdc 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "78c48025c4af6cc0f1f136448c0ede9f76b7485d7b33b1356d11dec017bd9053", "platform": "darwin", @@ -50,11 +50,12 @@ "name": "preflight.check#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "24054d93a95f": { + "267fa3075543": { "name": "providers", "value": { "host-1": ["github"] - } + }, + "sent": 6 }, "27e92f99be15": { "name": "linear.status#1", @@ -284,6 +285,13 @@ "name": "linear.status#2", "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "a3c30fa6fdda": { "name": "linear.status#1", "args": [ @@ -439,7 +447,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -451,7 +459,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -478,7 +486,7 @@ "reload": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } }, { @@ -505,7 +513,7 @@ "reload": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f", "24054d93a95f"] + "effects": ["8f1426c2f53b", "267fa3075543"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-refused.json b/mobile/rpc-foundation/goldens/settings-home-providers-refused.json index 73c488ffcf3..a800c4840f1 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-refused.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-refused.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "c22f33a0ed28622d4d53ae31e934056f87d2c10e8dc4475831ae1ee5fd3a9b8b", "platform": "darwin", @@ -13,12 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "24054d93a95f": { - "name": "providers", - "value": { - "host-1": ["github"] - } - }, "27e92f99be15": { "name": "linear.status#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" @@ -154,6 +148,13 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "a3c30fa6fdda": { "name": "linear.status#1", "args": [ @@ -245,7 +246,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json b/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json index f395811d7b9..d9598485ec4 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4f16b43dddfb9257828342b0297317868df24b03fd98a89c66f5cd1897829d73", "platform": "darwin", @@ -44,12 +44,6 @@ } } }, - "24054d93a95f": { - "name": "providers", - "value": { - "host-1": ["github"] - } - }, "27e92f99be15": { "name": "linear.status#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" @@ -151,6 +145,13 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, + "8f1426c2f53b": { + "name": "providers", + "value": { + "host-1": ["github"] + }, + "sent": 3 + }, "a3c30fa6fdda": { "name": "linear.status#1", "args": [ @@ -242,7 +243,7 @@ "load": "eb79a9b3682a" }, "state": "79b8c1b0d1d1", - "effects": ["24054d93a95f"] + "effects": ["8f1426c2f53b"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-new-tab-refused.json b/mobile/rpc-foundation/goldens/settings-new-tab-refused.json index f4f3efb3b34..ecd616b3111 100644 --- a/mobile/rpc-foundation/goldens/settings-new-tab-refused.json +++ b/mobile/rpc-foundation/goldens/settings-new-tab-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "b6fb40be3bb92d7d9f1a79d99dee077cf95097077917679dc99702f912241fa4", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json b/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json index 288a2ca7d9b..cb9b3b98238 100644 --- a/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json +++ b/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "31f8a348322551738b14207b3477bae492d48d45c5d51be4d97ffaca2fe2b6e1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json b/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json index a608cfdda24..340b8e1ec79 100644 --- a/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "1347663aba0ada1eee8e88fac306757dc0d29fe21f0d062ac2d3968a30a2f214", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json b/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json index 5866844d800..85d09596af6 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json +++ b/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "adebd553e2648278d719a1d7299cb36683fce714682a1ab7b49d4c9027eea34e", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -88,10 +96,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4335d4b6568f": { "name": "settings.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -115,13 +119,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -194,20 +191,32 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 }, "ab830a39e448": { "name": "repo.list#2", @@ -284,17 +293,6 @@ "status": "pending", "startedAt": 60000 }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" @@ -307,6 +305,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f43afee17848": { "status": "fulfilled", "startedAt": 59000, @@ -367,7 +373,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -381,12 +387,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -402,12 +408,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -424,12 +430,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -459,12 +465,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json index 4e81df6de50..c4c642babdf 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "b45eba2007e8e2668f524cd7503b8a711eba67816c9c35af5c3725a1afe32d8d", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -84,10 +92,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4335d4b6568f": { "name": "settings.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -111,13 +115,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -190,20 +187,32 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 }, "b40605df86b7": { "name": "repo.list#1", @@ -251,17 +260,6 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" @@ -274,6 +272,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -326,7 +332,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -340,12 +346,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-refuse-after-data.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-refuse-after-data.json index 68f6b66a86a..594e96f3b41 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "b1c0b957b828c32e7ec388ec6668273fe84bbe5d11d8286b9a246fa92395a26e", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -122,10 +130,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "3fc2a1b54e13": { "name": "settings.get#2", "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -195,13 +199,6 @@ "name": "host.platform#2", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -274,10 +271,23 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 + }, "940445cd9bd1": { "name": "repo.list#2", "args": [ @@ -324,6 +334,32 @@ } } }, + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, + "94f713006fe2": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 5 + }, + "95ed175e5a10": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 5 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 + }, "a2a51f870c81": { "name": "host.platform#2", "args": [ @@ -357,16 +393,10 @@ } } }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] - }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] + "b278f9a15c59": { + "name": "repoIconsByName", + "value": [], + "sent": 5 }, "b40605df86b7": { "name": "repo.list#1", @@ -414,6 +444,14 @@ } } }, + "c3f3741b4b0e": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 5 + }, "c6d210e4939c": { "name": "repo.list#2", "args": [ @@ -439,16 +477,15 @@ "startedAt": 0 } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] + "c87423a99f8a": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 8 }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] + "ca3107ec7381": { + "name": "hostPlatform", + "value": "linux", + "sent": 8 }, "df7cbc246ac0": { "name": "host.platform#1", @@ -462,6 +499,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -518,7 +563,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -532,12 +577,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -552,12 +597,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -585,12 +630,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } }, @@ -624,18 +669,18 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f", - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5", + "95ed175e5a10", + "b278f9a15c59", + "94f713006fe2", + "c3f3741b4b0e", + "c87423a99f8a", + "ca3107ec7381" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json index 893d7aad168..7588e3d6796 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "867b6905c8a533ddd1c7c8174bf4aadd5fd725cc72bdddbcb2ea8af26e219078", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -84,10 +92,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4335d4b6568f": { "name": "settings.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -111,13 +115,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -151,20 +148,32 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 }, "b40605df86b7": { "name": "repo.list#1", @@ -246,17 +255,6 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" @@ -269,6 +267,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -321,7 +327,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -335,12 +341,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json index b651adb232f..77bf0f7ef9d 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d8a00a72849f1ed254c3b35ebcc330dd1bb15b189f006bd1517853a19e53de6c", "platform": "darwin", @@ -28,34 +28,38 @@ ["Remote folder", "repo-2"] ] }, - "330bbbce8c90": { + "453573d632b2": { "name": "repoHostIdByRepoId", "value": [ ["repo-1", "ssh:ssh-1"], ["repo-2", "ssh:ssh-1"] - ] - }, - "63fc2c031079": { - "name": "repoIdsByName", - "value": [ - ["Remote", "repo-1"], - ["Remote folder", "repo-2"] - ] + ], + "sent": 1 }, "6bdbf70bafa2": { "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "6c85f114767d": { + "82e9a5619b14": { + "name": "repoIdsByName", + "value": [ + ["Remote", "repo-1"], + ["Remote folder", "repo-2"] + ], + "sent": 1 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 + }, + "e81ffbaa95e9": { "name": "repoColorsByName", "value": [ ["Remote", "#f97316"], ["Remote folder", "#ec4899"] - ] - }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] + ], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -123,7 +127,7 @@ "load": "eb79a9b3682a" }, "state": "2bd489a9fa29", - "effects": ["6c85f114767d", "d228b095cad2", "63fc2c031079", "330bbbce8c90"] + "effects": ["e81ffbaa95e9", "9b746c7d3d3a", "82e9a5619b14", "453573d632b2"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json index 29065700bf4..0e6f0cc004d 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "741db13a84dbcec2e97e80605d742e69558954657c72f8450f3f8bc177dd01b6", "platform": "darwin", @@ -13,6 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01c17b40bd86": { + "name": "repoColorsByName", + "value": [ + ["Local", "#6366f1"], + ["Remote", "#f97316"] + ], + "sent": 1 + }, "02449e890487": { "name": "host.platform#1", "args": [ @@ -115,10 +123,6 @@ "name": "ssh.listTargetSummaries#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" }, - "388d7275af5f": { - "name": "hostPlatform", - "value": "linux" - }, "4335d4b6568f": { "name": "settings.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -142,13 +146,6 @@ "name": "repo.list#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" }, - "7d956f17cf24": { - "name": "repoColorsByName", - "value": [ - ["Local", "#6366f1"], - ["Remote", "#f97316"] - ] - }, "7f85f28c922e": { "name": "host.platform#1", "args": [ @@ -182,20 +179,32 @@ } } }, + "85cc15d64d8b": { + "name": "repoHostIdByRepoId", + "value": [ + ["repo-1", "local"], + ["repo-2", "ssh:ssh-1"] + ], + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "a4830eb5b420": { - "name": "hostLabelById", - "value": [["ssh:ssh-1", "SSH"]] + "93f4efbf2bd5": { + "name": "hostPlatform", + "value": "linux", + "sent": 4 }, - "a95587e993a9": { - "name": "repoIdsByName", - "value": [ - ["Local", "repo-1"], - ["Remote", "repo-2"] - ] + "94a0e83966bb": { + "name": "hostLabelById", + "value": [["ssh:ssh-1", "SSH"]], + "sent": 4 + }, + "9b746c7d3d3a": { + "name": "repoIconsByName", + "value": [], + "sent": 1 }, "b40605df86b7": { "name": "repo.list#1", @@ -243,17 +252,6 @@ } } }, - "d228b095cad2": { - "name": "repoIconsByName", - "value": [] - }, - "d6a308f7b0ff": { - "name": "repoHostIdByRepoId", - "value": [ - ["repo-1", "local"], - ["repo-2", "ssh:ssh-1"] - ] - }, "df7cbc246ac0": { "name": "host.platform#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" @@ -266,6 +264,14 @@ "$rpc": "undefined" } }, + "f070375a490f": { + "name": "repoIdsByName", + "value": [ + ["Local", "repo-1"], + ["Remote", "repo-2"] + ], + "sent": 1 + }, "f7539bb05693": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -318,7 +324,7 @@ "load": "9270aeb7d9c6" }, "state": "6134b73f18d0", - "effects": ["7d956f17cf24", "d228b095cad2", "a95587e993a9", "d6a308f7b0ff"] + "effects": ["01c17b40bd86", "9b746c7d3d3a", "f070375a490f", "85cc15d64d8b"] } }, { @@ -332,12 +338,12 @@ }, "state": "071880b671a1", "effects": [ - "7d956f17cf24", - "d228b095cad2", - "a95587e993a9", - "d6a308f7b0ff", - "a4830eb5b420", - "388d7275af5f" + "01c17b40bd86", + "9b746c7d3d3a", + "f070375a490f", + "85cc15d64d8b", + "94a0e83966bb", + "93f4efbf2bd5" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json index 8c07aca4bd6..7df440f8b86 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "7a8d0a5305aafea56733c229989b6e825fe9b8a681f48f6cef405350304520b6", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-resume-metadata-refuse-after-data.json b/mobile/rpc-foundation/goldens/settings-resume-metadata-refuse-after-data.json index ff8cab822dd..53798ad879a 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a11756ecaf7c2d3955b9512aa7479ca55d810341f1492f472985abb538e140e8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json b/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json index afcb178cb7c..b8d5c0cfc8b 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "def0640be601a8013f9537f161b60d8c14ac9551931e5ee4d4cc2acd3c2baf2a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json b/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json index 85b47acc81f..16b8d7493e4 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "17c31d0c2b7ae5322fd59bafcfa1d2779ae9eff841e12c0cf16b27e454b49f13", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json b/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json index 6ebbf7452a8..115f8f4024b 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "c08cce5d1f71761dbf504863b736e5546abb42b9ff4ab8ced65c7c42e3d66c0e", "platform": "darwin", @@ -13,21 +13,24 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -54,23 +57,25 @@ "startedAt": 0 } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -109,9 +114,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -138,85 +144,83 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", + "28fa1cba5d1a": { + "name": "githubProjectSettings", "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { + "2c04c960ee94": { "name": "showLinearTeamPicker", - "value": false + "value": false, + "sent": 0 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", - "value": { - "$rpc": "null" - } - }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" - }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", - "value": { - "$rpc": "null" - } - }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false - }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { + "2e442e4df37c": { "name": "showGitHubProjectFieldsPicker", - "value": false + "value": false, + "sent": 0 }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 }, - "57da83afd125": { - "name": "taskStateHydrated", - "value": true + "334b82d94582": { + "name": "linearStatusPickerItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 + }, + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 + }, + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -228,12 +232,13 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -260,6 +265,14 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -293,63 +306,114 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, - "888c93f6f346": { - "name": "appliedQuery", - "value": "is:issue is:open" - }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" - }, - "977e1de1ac2f": { + "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", + "86a763922cd7": { + "name": "appliedQuery", + "value": "is:issue is:open", + "sent": 5 + }, + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "9a0f810232ef": { - "name": "provider", - "value": "github" + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "a211e64f0900": { + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 + }, + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -376,9 +440,26 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -417,77 +498,56 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, - "bfd6af371d88": { - "name": "githubProjectSettings", - "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "d705fce957e8": { "name": "settings.get#1", @@ -528,14 +588,6 @@ } } }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false - }, "e5662efa8968": { "name": "preflight.check#1", "args": [ @@ -575,14 +627,22 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -595,21 +655,20 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -637,46 +696,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -702,65 +761,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-hydration-refuse-after-data.json b/mobile/rpc-foundation/goldens/settings-task-hydration-refuse-after-data.json index 585bda27b7d..e2fa1d30e48 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "b23c3076081901c89e8a8fb8d20028e03f030db040c9cd793b6f2c7cd49d8f25", "platform": "darwin", @@ -13,13 +13,17 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, "02f9384f5305": { "name": "settings.get#2", @@ -55,13 +59,12 @@ } } }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -88,23 +91,31 @@ "startedAt": 0 } }, - "12388aa75326": { + "0d33c93fcbfd": { "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 5 + }, + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, "12ff4d4f8fc0": { "name": "linear.status#2", "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "1652eab5c64a": { + "name": "provider", + "value": "github", + "sent": 10 }, "1825a87a7ca8": { "hydrated": false, @@ -116,9 +127,15 @@ "visibleTaskProviders": ["github", "linear"] } }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 + }, + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -157,9 +174,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -186,33 +204,73 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "326e3f8f7e0b": { - "name": "runtimeTaskSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } - }, - "347cc433c473": { - "name": "projectRowDetail", + "252f3a25533f": { + "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 5 }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false + "28fa1cba5d1a": { + "name": "githubProjectSettings", + "value": { + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false + "29e877d918a0": { + "name": "linearConnected", + "value": false, + "sent": 10 + }, + "2c04c960ee94": { + "name": "showLinearTeamPicker", + "value": false, + "sent": 0 + }, + "2c4387ddd366": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "302fa402db4a": { + "name": "error", + "value": "", + "sent": 6 + }, + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 + }, + "321bfff34ac2": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 5 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 }, "3986390fc039": { "name": "linear.status#2", @@ -247,13 +305,15 @@ } } }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 }, - "3e9fac4d6c32": { - "name": "showLinearTeamPicker", - "value": false + "3c29e49e60af": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 10 }, "3f6cb9f1d075": { "name": "status.get#2", @@ -292,49 +352,88 @@ "name": "settings.get#2", "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "3fee2a1d2652": { + "name": "linearFilter", + "value": "all", + "sent": 10 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" + "460c956ad356": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 5 }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { + "46e2a51822f5": { "name": "selectedLinearWorkspaceId", "value": { "$rpc": "null" - } + }, + "sent": 10 }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false + "47b218ef208f": { + "name": "showRepoPicker", + "value": false, + "sent": 5 }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false - }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] - }, - "57da83afd125": { + "4976dfca54f0": { "name": "taskStateHydrated", - "value": true + "value": false, + "sent": 5 + }, + "4f58fdfd02e0": { + "name": "githubKind", + "value": "issues", + "sent": 10 + }, + "528091bec621": { + "name": "githubMode", + "value": "items", + "sent": 10 + }, + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "551c964c61ea": { + "name": "showProviderPicker", + "value": false, + "sent": 5 + }, + "56f2fa086479": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 + }, + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 }, "58c52d8b7c76": { "hydrated": true, @@ -346,12 +445,30 @@ "visibleTaskProviders": ["github", "linear"] } }, - "5b1145eb3832": { + "59936af3cc5b": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 5 + }, + "5d87a58f6c98": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 + }, + "5ebcdff07023": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 5 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -378,6 +495,29 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, + "67d7ef589c15": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 5 + }, + "6e5246994fa0": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 5 + }, + "6f02e2ca43f4": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 10 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -448,71 +588,224 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "7746273caf63": { + "name": "taskStateHydrated", + "value": true, + "sent": 10 + }, + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 + }, + "7a688c351c65": { + "name": "showSortPicker", + "value": false, + "sent": 5 + }, + "7c0f59ba016c": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "7c6e6014385b": { + "name": "showCreateTask", + "value": false, + "sent": 5 + }, + "83f55c58a6c5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 5 }, "84b10f34b617": { "name": "ui.get#2", "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, - "888c93f6f346": { - "name": "appliedQuery", - "value": "is:issue is:open" + "851fcb1af715": { + "name": "query", + "value": "is:issue is:open", + "sent": 10 }, - "8f287f21cfc4": { + "85beb8cfde14": { + "name": "mergeMethodTaskItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "8653f810a31c": { "name": "defaultGitHubPreset", - "value": "issues" + "value": "issues", + "sent": 10 + }, + "86a763922cd7": { + "name": "appliedQuery", + "value": "is:issue is:open", + "sent": 5 + }, + "874e70d237d7": { + "name": "projectRepoNotInOrca", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8c294e773a32": { + "name": "linearTeams", + "value": [], + "sent": 10 + }, + "8c53814e586c": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "8f483afc6fdd": { + "name": "runtimeTaskSettings", + "value": {}, + "sent": 10 + }, + "9035f956e10e": { + "name": "githubProjectSettings", + "value": { + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 10 + }, + "921033244a12": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 5 + }, + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 }, "963a91c532c8": { "hydrated": true, "settings": {} }, - "977e1de1ac2f": { - "name": "mergeMethodTaskItem", - "value": { - "$rpc": "null" - } + "96a071be5404": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 5 }, - "991081048cc2": { - "name": "reset-workspace", - "value": { - "$rpc": "null" - } + "9abed258acba": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 5 }, - "9a0f810232ef": { - "name": "provider", - "value": "github" - }, - "a211e64f0900": { + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9d1a470b3def": { + "name": "githubPreset", + "value": "issues", + "sent": 10 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a242348c4324": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "supported" + }, + "sent": 6 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -539,9 +832,26 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, + "aa095faa9afd": { + "name": "runtimeTaskSettings", + "value": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 5 }, "aa624b10c314": { "name": "linear.status#1", @@ -580,70 +890,67 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { + "afb75a8d93f3": { "name": "showLinearWorkspacePicker", - "value": false + "value": false, + "sent": 5 + }, + "b341e832c60d": { + "name": "projectRowItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "b577c113c079": { + "name": "showLinearViewPicker", + "value": false, + "sent": 5 + }, + "b9481aea1fae": { + "name": "taskStateHydrated", + "value": false, + "sent": 0 }, "b9ce3caa927f": { "name": "preflight.check#2", "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "bbbd4bc0a4ef": { - "name": "taskStateHydrated", - "value": false + "ba7facf123fb": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 10 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, - "bfd6af371d88": { - "name": "githubProjectSettings", + "c0739ee88dc8": { + "name": "reset-workspace", "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "$rpc": "null" + }, + "sent": 5 + }, + "c2601492c7cd": { + "name": "showLinearConnect", + "value": false, + "sent": 5 + }, + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, "c9012709cb6f": { "name": "preflight.check#2", @@ -705,16 +1012,44 @@ "startedAt": 0 } }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d0c2ba0d141f": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 5 + }, + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 + }, + "d3db1d1b21c6": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 + }, + "d6ed7b17eb65": { + "name": "linearStatusPickerItem", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "d705fce957e8": { "name": "settings.get#1", @@ -755,17 +1090,27 @@ } } }, - "dae7907f03cc": { - "name": "runtimeTaskSettings", - "value": {} + "d8fee76f0800": { + "name": "linearWorkspaces", + "value": [], + "sent": 10 }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false + "dc50f834cf28": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "ddd2bd23169a": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 10 + }, + "de85b23d1a59": { + "name": "showLinearTeamPicker", + "value": false, + "sent": 5 }, "e5662efa8968": { "name": "preflight.check#1", @@ -806,14 +1151,39 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e7af9bf83610": { + "name": "mergeMethodTaskItem", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, + "e96a98c6404f": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 5 + }, + "ea9da6ec3f4b": { + "name": "appliedQuery", + "value": "is:issue is:open", + "sent": 10 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -826,21 +1196,42 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "ef60e60436d0": { + "name": "showGitLabViewPicker", + "value": false, + "sent": 5 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", + "f31031e7e491": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 5 + }, + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 + }, + "f5ca82f623ea": { + "name": "pendingGitHubProjectViewSelection", "value": { "$rpc": "null" - } + }, + "sent": 5 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "f695768dc671": { + "name": "showLinearGroupPicker", + "value": false, + "sent": 5 + }, + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 + }, + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -868,46 +1259,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -933,65 +1324,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1017,65 +1408,65 @@ }, "state": "58c52d8b7c76", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } }, @@ -1104,103 +1495,103 @@ }, "state": "1825a87a7ca8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8" ] } }, @@ -1237,124 +1628,124 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "326e3f8f7e0b", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125", - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "aa095faa9afd", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e", + "4976dfca54f0", + "8c53814e586c", + "afb75a8d93f3", + "de85b23d1a59", + "b577c113c079", + "f695768dc671", + "59936af3cc5b", + "6e5246994fa0", + "c2601492c7cd", + "551c964c61ea", + "f31031e7e491", + "321bfff34ac2", + "ef60e60436d0", + "5ebcdff07023", + "67d7ef589c15", + "7a688c351c65", + "47b218ef208f", + "e96a98c6404f", + "9abed258acba", + "460c956ad356", + "d0c2ba0d141f", + "921033244a12", + "96a071be5404", + "f5ca82f623ea", + "252f3a25533f", + "0d33c93fcbfd", + "874e70d237d7", + "dc50f834cf28", + "d3db1d1b21c6", + "7c6e6014385b", + "83f55c58a6c5", + "d6ed7b17eb65", + "2c4387ddd366", + "5d87a58f6c98", + "56f2fa086479", + "e7af9bf83610", + "7c0f59ba016c", + "c0739ee88dc8", + "a242348c4324", + "302fa402db4a", + "8f483afc6fdd", + "6f02e2ca43f4", + "ddd2bd23169a", + "29e877d918a0", + "d8fee76f0800", + "8c294e773a32", + "ba7facf123fb", + "46e2a51822f5", + "3c29e49e60af", + "1652eab5c64a", + "528091bec621", + "8653f810a31c", + "9d1a470b3def", + "4f58fdfd02e0", + "3fee2a1d2652", + "9035f956e10e", + "851fcb1af715", + "ea9da6ec3f4b", + "7746273caf63" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json b/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json index 2fa821603a7..bf83a220be8 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a510ff7505cddbd6dad3c7e5a2dcde206a5dab1940901511d72c97aca576a6f1", "platform": "darwin", @@ -13,21 +13,24 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "02d5832df83d": { - "name": "query", - "value": "is:issue is:open" + "01e1056d97a4": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 5 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -54,23 +57,25 @@ "startedAt": 0 } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } + "12b5d58423cb": { + "name": "githubProjectHiddenFieldIdsByView", + "value": {}, + "sent": 5 }, - "1410db92f7e5": { - "name": "linearTeams", - "value": [] + "16348b11fcba": { + "name": "defaultGitHubPreset", + "value": "issues", + "sent": 5 }, - "16f398d67267": { - "name": "linearConnected", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -109,9 +114,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -138,82 +144,96 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "347cc433c473": { - "name": "projectRowDetail", + "28fa1cba5d1a": { + "name": "githubProjectSettings", "value": { - "$rpc": "null" - } + "activeProject": { + "$rpc": "null" + }, + "lastViewByProject": {}, + "pinned": [], + "recent": [] + }, + "sent": 5 }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { + "2c04c960ee94": { "name": "showLinearTeamPicker", - "value": false + "value": false, + "sent": 0 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", - "value": { - "$rpc": "null" - } - }, - "45d50e768fcc": { - "name": "githubPreset", - "value": "issues" - }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false - }, - "4cc1535f7ccf": { - "name": "githubProjectHiddenFieldIdsByView", - "value": {} - }, - "4efedb5c24f1": { - "name": "selectedLinearWorkspaceId", - "value": { - "$rpc": "null" - } - }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false - }, - "52bdddbac50f": { - "name": "trustedOrcaHooks", - "value": {} - }, - "54ea1a00a461": { + "2e442e4df37c": { "name": "showGitHubProjectFieldsPicker", - "value": false + "value": false, + "sent": 0 }, - "5731a23b16cd": { - "name": "selectedLinearTeamIds", - "value": [] + "2fc20c1f9a22": { + "name": "runtimeTaskSettings", + "value": {}, + "sent": 5 }, - "57da83afd125": { - "name": "taskStateHydrated", - "value": true + "308ffd78bb89": { + "name": "linearFilter", + "value": "all", + "sent": 5 }, - "5b1145eb3832": { + "334b82d94582": { + "name": "linearStatusPickerItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 + }, + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 + }, + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 + }, + "416e38ac3c1e": { + "name": "githubMode", + "value": "items", + "sent": 5 + }, + "41be2620a06b": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 + }, + "586d2ff60587": { + "name": "githubKind", + "value": "issues", + "sent": 5 + }, + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -240,6 +260,14 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, "68155c1eb584": { "name": "settings.get#1", "args": [ @@ -307,67 +335,118 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "74a4162f39f8": { - "name": "githubKind", - "value": "issues" - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "76ef2e9da242": { + "name": "selectedLinearWorkspaceId", + "value": { + "$rpc": "null" + }, + "sent": 5 }, - "8372342e5a51": { - "name": "linearFilter", - "value": "all" + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, - "888c93f6f346": { + "85beb8cfde14": { + "name": "mergeMethodTaskItem", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "86a763922cd7": { "name": "appliedQuery", - "value": "is:issue is:open" + "value": "is:issue is:open", + "sent": 5 }, - "8f287f21cfc4": { - "name": "defaultGitHubPreset", - "value": "issues" + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8a2b4e3d0eed": { + "name": "trustedOrcaHooks", + "value": {}, + "sent": 5 + }, + "8a3cb00faee0": { + "name": "linearConnected", + "value": false, + "sent": 5 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "947cf7373dd6": { + "name": "linearTeams", + "value": [], + "sent": 5 }, "963a91c532c8": { "hydrated": true, "settings": {} }, - "977e1de1ac2f": { - "name": "mergeMethodTaskItem", - "value": { - "$rpc": "null" - } - }, - "991081048cc2": { - "name": "reset-workspace", - "value": { - "$rpc": "null" - } - }, - "9a0f810232ef": { - "name": "provider", - "value": "github" - }, - "a211e64f0900": { + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "9f93d78e416e": { + "name": "taskStateHydrated", + "value": true, + "sent": 5 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -394,9 +473,15 @@ "startedAt": 0 } }, - "a67d16a13986": { - "name": "githubMode", - "value": "items" + "a63e620951f0": { + "name": "selectedLinearTeamIds", + "value": [], + "sent": 5 + }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 }, "aa624b10c314": { "name": "linear.status#1", @@ -435,89 +520,56 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b66eccd2062e": { - "name": "linearWorkspaces", - "value": [] - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, - "bfd6af371d88": { - "name": "githubProjectSettings", - "value": { - "activeProject": { - "$rpc": "null" - }, - "lastViewByProject": {}, - "pinned": [], - "recent": [] - } + "c27ba127946c": { + "name": "linearWorkspaces", + "value": [], + "sent": 5 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "cbb40988c5a5": { + "name": "query", + "value": "is:issue is:open", + "sent": 5 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false + "d225c567feae": { + "name": "githubPreset", + "value": "issues", + "sent": 5 }, - "dae7907f03cc": { - "name": "runtimeTaskSettings", - "value": {} + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "e5662efa8968": { "name": "preflight.check#1", @@ -558,14 +610,22 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -578,21 +638,20 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } + "f95005ae133d": { + "name": "provider", + "value": "github", + "sent": 5 }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -620,46 +679,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -685,65 +744,65 @@ }, "state": "963a91c532c8", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "dae7907f03cc", - "52bdddbac50f", - "4cc1535f7ccf", - "16f398d67267", - "b66eccd2062e", - "1410db92f7e5", - "5731a23b16cd", - "4efedb5c24f1", - "eafaa34ddedb", - "9a0f810232ef", - "a67d16a13986", - "8f287f21cfc4", - "45d50e768fcc", - "74a4162f39f8", - "8372342e5a51", - "bfd6af371d88", - "02d5832df83d", - "888c93f6f346", - "57da83afd125" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "2fc20c1f9a22", + "8a2b4e3d0eed", + "12b5d58423cb", + "8a3cb00faee0", + "c27ba127946c", + "947cf7373dd6", + "a63e620951f0", + "76ef2e9da242", + "01e1056d97a4", + "f95005ae133d", + "416e38ac3c1e", + "16348b11fcba", + "d225c567feae", + "586d2ff60587", + "308ffd78bb89", + "28fa1cba5d1a", + "cbb40988c5a5", + "86a763922cd7", + "9f93d78e416e" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json b/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json index 14e37f44f9f..0a28f6a3df3 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d4a2fef3aefb78bdb4aed94fda982124f24a3af3832227654d324735f44aaeeb", "platform": "darwin", @@ -13,17 +13,19 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "00eea9f3200b": { + "name": "pendingGitHubProjectViewSelection", + "value": { + "$rpc": "null" + }, + "sent": 0 }, - "03f32b62aa80": { - "name": "showGitHubProjectViewPicker", - "value": false - }, - "068f4fd0ad0c": { - "name": "showRepoPicker", - "value": false + "073647d24ac4": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "090c88478661": { "name": "settings.get#1", @@ -81,15 +83,20 @@ } } }, - "12388aa75326": { - "name": "projectRowItem", - "value": { - "$rpc": "null" - } + "18730b0f4776": { + "name": "error", + "value": "settings disconnected", + "sent": 5 }, - "1b3fd2de141f": { - "name": "showLinearOrderPicker", - "value": false + "1dffb3fe8cd8": { + "name": "showLinearDisplayPicker", + "value": false, + "sent": 0 + }, + "1e1de8badcac": { + "name": "showLinearConnect", + "value": false, + "sent": 0 }, "1e5b32902af7": { "name": "status.get#1", @@ -128,9 +135,10 @@ } } }, - "1f96a2f943c0": { + "1fd209dc12de": { "name": "showGitLabViewPicker", - "value": false + "value": false, + "sent": 0 }, "234fabe27913": { "name": "preflight.check#1", @@ -157,60 +165,69 @@ "startedAt": 0 } }, - "321a59c40cce": { - "name": "showProviderPicker", - "value": false - }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, - "367b8fc27ba4": { - "name": "showLinearViewPicker", - "value": false - }, - "38721e31cbb4": { - "name": "showGitHubProjectSortPicker", - "value": false - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "3e9fac4d6c32": { + "2c04c960ee94": { "name": "showLinearTeamPicker", - "value": false + "value": false, + "sent": 0 }, - "42d2e0167dad": { - "name": "pendingGitHubProjectViewSelection", + "2e442e4df37c": { + "name": "showGitHubProjectFieldsPicker", + "value": false, + "sent": 0 + }, + "334b82d94582": { + "name": "linearStatusPickerItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "4a435aea04b4": { - "name": "showLinearFilterPicker", - "value": false + "345762fe1fa4": { + "name": "showLinearOrderPicker", + "value": false, + "sent": 0 }, - "5093ceeca936": { - "name": "showGitHubPagePicker", - "value": false + "3adce6077ae5": { + "name": "showCreateTargetPicker", + "value": false, + "sent": 0 }, - "54ea1a00a461": { - "name": "showGitHubProjectFieldsPicker", - "value": false + "40eabccc0362": { + "name": "showProviderPicker", + "value": false, + "sent": 0 }, - "5b1145eb3832": { + "41be2620a06b": { + "name": "reset-workspace", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "4976dfca54f0": { + "name": "taskStateHydrated", + "value": false, + "sent": 5 + }, + "546c38d1781a": { + "name": "mergeMethodProjectRow", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "58140f732f03": { + "name": "showLinearWorkspacePicker", + "value": false, + "sent": 0 + }, + "5e05b4814013": { "name": "tasksSupportState", "value": { "client": "logical-client", "kind": "supported" - } - }, - "5fb094097bdb": { - "name": "error", - "value": "settings disconnected" + }, + "sent": 1 }, "5fbdd64c75bc": { "name": "ui.get#1", @@ -237,6 +254,14 @@ "startedAt": 0 } }, + "63b9d87881e1": { + "name": "tasksSupportState", + "value": { + "client": "logical-client", + "kind": "unknown" + }, + "sent": 0 + }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -270,43 +295,82 @@ } } }, - "740d91a30846": { - "name": "pendingHostedStateChange", - "value": { - "$rpc": "null" - } - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "7f2e001f13e7": { + "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "78a159d9a918": { + "name": "showGitHubProjectViewPicker", + "value": false, + "sent": 0 }, - "977e1de1ac2f": { + "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "991081048cc2": { - "name": "reset-workspace", + "8832da75be8d": { + "name": "showGitHubPagePicker", + "value": false, + "sent": 0 + }, + "886ccf2737c7": { + "name": "showSortPicker", + "value": false, + "sent": 0 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "a211e64f0900": { + "921e10a277e7": { + "name": "pendingHostedMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9b1d9febbcf6": { "name": "showLinearGroupPicker", - "value": false + "value": false, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9cc2d35c57dc": { + "name": "showGitLabFilterPicker", + "value": false, + "sent": 0 + }, + "9e19e2a66126": { + "name": "showRepoPicker", + "value": false, + "sent": 0 + }, + "a060c9ebc224": { + "name": "pendingProjectGitHubMerge", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "a2cc59889dc0": { + "name": "showGitHubKindPicker", + "value": false, + "sent": 0 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -333,6 +397,11 @@ "startedAt": 0 } }, + "a91aca142b2e": { + "name": "showCreateTask", + "value": false, + "sent": 0 + }, "aa624b10c314": { "name": "linear.status#1", "args": [ @@ -370,70 +439,41 @@ "name": "linear.status#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" }, - "ac9996319e05": { - "name": "actionItem", + "b341e832c60d": { + "name": "projectRowItem", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "afdf1ac21a92": { - "name": "showCreateTargetPicker", - "value": false - }, - "b7c9b524edd4": { - "name": "pendingHostedMerge", - "value": { - "$rpc": "null" - } - }, - "b80be68cd059": { - "name": "showGitHubKindPicker", - "value": false - }, - "b82f9e80bd6a": { - "name": "showGitHubPresetPicker", - "value": false - }, - "b8ca6ac0e3ec": { - "name": "showLinearWorkspacePicker", - "value": false - }, - "bbbd4bc0a4ef": { + "b9481aea1fae": { "name": "taskStateHydrated", - "value": false + "value": false, + "sent": 0 }, - "bc6d9aaa835c": { - "name": "showLinearDisplayPicker", - "value": false + "c0016b5b1033": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 0 }, "c6178e6a0f4e": { "hydrated": false, "settings": {} }, - "c78894b47bfd": { - "name": "mergeMethodProjectRow", - "value": { - "$rpc": "null" - } + "c7fb67dfaaa0": { + "name": "showLinearViewPicker", + "value": false, + "sent": 0 }, - "ce5f2125a8c4": { - "name": "tasksSupportState", - "value": { - "client": "logical-client", - "kind": "unknown" - } + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, - "d47b67d8f357": { - "name": "showGitHubIssueSourcePicker", - "value": false - }, - "e23c248f269a": { - "name": "showSortPicker", - "value": false - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "d4d3179bb79e": { + "name": "showGitHubPresetPicker", + "value": false, + "sent": 0 }, "e5662efa8968": { "name": "preflight.check#1", @@ -474,6 +514,18 @@ "name": "ui.get#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" }, + "e69b48c9e675": { + "name": "pendingHostedStateChange", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "e8bff64c02da": { + "name": "showGitHubProjectSortPicker", + "value": false, + "sent": 0 + }, "eac54552d8bc": { "name": "settings.get#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" @@ -490,21 +542,15 @@ "name": "preflight.check#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "f19db62f49cd": { - "name": "showGitLabFilterPicker", - "value": false + "f40b9d8aa1eb": { + "name": "showLinearFilterPicker", + "value": false, + "sent": 0 }, - "f7c5ddb715d7": { - "name": "pendingProjectGitHubMerge", - "value": { - "$rpc": "null" - } - }, - "fb70d4271ae2": { - "name": "linearStatusPickerItem", - "value": { - "$rpc": "null" - } + "feb5f42359fb": { + "name": "showGitHubIssueSourcePicker", + "value": false, + "sent": 0 } }, "recording": { @@ -532,46 +578,46 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c" ] } }, @@ -597,48 +643,48 @@ }, "state": "c6178e6a0f4e", "effects": [ - "bbbd4bc0a4ef", - "ce5f2125a8c4", - "b8ca6ac0e3ec", - "3e9fac4d6c32", - "367b8fc27ba4", - "a211e64f0900", - "1b3fd2de141f", - "bc6d9aaa835c", - "002ad269dd44", - "321a59c40cce", - "b80be68cd059", - "b82f9e80bd6a", - "1f96a2f943c0", - "f19db62f49cd", - "4a435aea04b4", - "e23c248f269a", - "068f4fd0ad0c", - "d47b67d8f357", - "5093ceeca936", - "e542d7c9af9f", - "03f32b62aa80", - "38721e31cbb4", - "54ea1a00a461", - "42d2e0167dad", - "ac9996319e05", - "12388aa75326", - "7f2e001f13e7", - "7d341b2cb946", - "347cc433c473", - "3e610f908f29", - "afdf1ac21a92", - "fb70d4271ae2", - "b7c9b524edd4", - "f7c5ddb715d7", - "740d91a30846", - "977e1de1ac2f", - "c78894b47bfd", - "991081048cc2", - "5b1145eb3832", - "82cd71d524c8", - "5fb094097bdb", - "bbbd4bc0a4ef" + "b9481aea1fae", + "63b9d87881e1", + "58140f732f03", + "2c04c960ee94", + "c7fb67dfaaa0", + "9b1d9febbcf6", + "345762fe1fa4", + "1dffb3fe8cd8", + "1e1de8badcac", + "40eabccc0362", + "a2cc59889dc0", + "d4d3179bb79e", + "1fd209dc12de", + "9cc2d35c57dc", + "f40b9d8aa1eb", + "886ccf2737c7", + "9e19e2a66126", + "feb5f42359fb", + "8832da75be8d", + "c0016b5b1033", + "78a159d9a918", + "e8bff64c02da", + "2e442e4df37c", + "00eea9f3200b", + "073647d24ac4", + "b341e832c60d", + "758b8c1db523", + "9bd1de5d9753", + "8e5298b22c5f", + "a91aca142b2e", + "3adce6077ae5", + "334b82d94582", + "921e10a277e7", + "a060c9ebc224", + "e69b48c9e675", + "85beb8cfde14", + "546c38d1781a", + "41be2620a06b", + "5e05b4814013", + "d48d5c49486c", + "18730b0f4776", + "4976dfca54f0" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json b/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json index 25374abefc1..be7d92cb15b 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "662c3e04e31bce5757f09f91e3e3739fb9d57767b7443be4dc936705b64b1432", "platform": "darwin", @@ -13,12 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "067cef118d9f": { - "name": "runtimeTaskSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": [] - } + "05ed43b996fb": { + "name": "navigation", + "value": "/h/host-1/session/wt-1?name=ORC-1+Recorded+issue&created=1", + "sent": 2 }, "090c88478661": { "name": "settings.get#1", @@ -89,11 +87,12 @@ } } }, - "180125f5d1a6": { + "1847f1d16cc3": { "name": "workspaceCreateDraft", "value": { "$rpc": "null" - } + }, + "sent": 2 }, "2473f12c7cdd": { "name": "settings.get#1", @@ -131,6 +130,11 @@ } } }, + "2a3409305e35": { + "name": "creatingKey", + "value": "linear:1", + "sent": 0 + }, "33e3b949d4c5": { "creating": { "$rpc": "null" @@ -141,16 +145,6 @@ "disabledTuiAgents": [] } }, - "6eb4e79ad99a": { - "name": "setupPrompt", - "value": { - "$rpc": "null" - } - }, - "730f92993963": { - "name": "creatingKey", - "value": "linear:1" - }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -162,33 +156,47 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "7ee99993a895": { - "name": "navigation", - "value": "/h/host-1/session/wt-1?name=ORC-1+Recorded+issue&created=1" - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "ac9996319e05": { + "94d10e7369a8": { + "name": "setupPrompt", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "a1c21422795e": { + "name": "creatingKey", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, + "b3786fd78eba": { "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 2 }, "baa74a0ec378": { "name": "worktree.create#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}" }, - "c9cb32059b8d": { - "name": "creatingKey", + "d78d24fff8fb": { + "name": "runtimeTaskSettings", "value": { - "$rpc": "null" - } + "defaultTuiAgent": "codex", + "disabledTuiAgents": [] + }, + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -212,7 +220,7 @@ "submit": "9270aeb7d9c6" }, "state": "7abdfe20af50", - "effects": ["730f92993963", "82cd71d524c8"] + "effects": ["2a3409305e35", "9e263f5e91be"] } }, { @@ -226,14 +234,14 @@ }, "state": "33e3b949d4c5", "effects": [ - "730f92993963", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "7ee99993a895", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "d78d24fff8fb", + "b3786fd78eba", + "1847f1d16cc3", + "94d10e7369a8", + "05ed43b996fb", + "a1c21422795e" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-create-pr-start-point.json b/mobile/rpc-foundation/goldens/settings-task-workspace-create-pr-start-point.json index 4488843d117..a015aca91e2 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-create-pr-start-point.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-create-pr-start-point.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "8ae9e1dbb32d404eac9e01f71dacf1c37497030220a8e988c0093bb7ed2d159b", "platform": "darwin", @@ -13,12 +13,12 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "067cef118d9f": { - "name": "runtimeTaskSettings", + "0289e08fa363": { + "name": "workspaceCreateDraft", "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": [] - } + "$rpc": "null" + }, + "sent": 3 }, "090c88478661": { "name": "settings.get#1", @@ -45,12 +45,6 @@ "startedAt": 0 } }, - "180125f5d1a6": { - "name": "workspaceCreateDraft", - "value": { - "$rpc": "null" - } - }, "2473f12c7cdd": { "name": "settings.get#1", "args": [ @@ -112,24 +106,40 @@ "disabledTuiAgents": ["claude"] } }, - "6eb4e79ad99a": { + "759bb7d4b5cf": { "name": "setupPrompt", "value": { "$rpc": "null" - } + }, + "sent": 3 }, "7ddcb1852b39": { "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" + "8f08c9b94011": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 3 }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "96be595b4b0e": { + "name": "creatingKey", + "value": { + "$rpc": "null" + }, + "sent": 3 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, "9e9f36142bbd": { "name": "worktree.create#1", "args": [ @@ -209,25 +219,22 @@ "startedAt": 0 } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } - }, "b66f6d1958b9": { "name": "worktree.create#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"pr-7\",\"displayName\":\"Recorded pull request\",\"displayNameKind\":\"generated\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://github.com/o/r/pull/7\",\"createdWithAgent\":\"claude\",\"baseBranch\":\"main\",\"linkedPR\":7}}" }, - "be0ebed89b2b": { - "name": "navigation", - "value": "/h/host-1/session/wt-2?name=Recorded+pull+request&created=1&warning=shallow+clone" - }, - "c9cb32059b8d": { - "name": "creatingKey", + "d78d24fff8fb": { + "name": "runtimeTaskSettings", "value": { - "$rpc": "null" - } + "defaultTuiAgent": "codex", + "disabledTuiAgents": [] + }, + "sent": 1 + }, + "e00e0d995284": { + "name": "creatingKey", + "value": "github:7", + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -241,9 +248,10 @@ "name": "worktree.resolvePrBase#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":7}}" }, - "ecefc28694cb": { - "name": "creatingKey", - "value": "github:7" + "f2ca7e4f0a73": { + "name": "navigation", + "value": "/h/host-1/session/wt-2?name=Recorded+pull+request&created=1&warning=shallow+clone", + "sent": 3 }, "f9e183f427ee": { "name": "worktree.resolvePrBase#1", @@ -293,7 +301,7 @@ "submit": "9270aeb7d9c6" }, "state": "52051fd3214e", - "effects": ["ecefc28694cb", "82cd71d524c8"] + "effects": ["e00e0d995284", "9e263f5e91be"] } }, { @@ -306,7 +314,7 @@ "submit": "9270aeb7d9c6" }, "state": "3dc266b1bda1", - "effects": ["ecefc28694cb", "82cd71d524c8", "067cef118d9f"] + "effects": ["e00e0d995284", "9e263f5e91be", "d78d24fff8fb"] } }, { @@ -320,14 +328,14 @@ }, "state": "33e3b949d4c5", "effects": [ - "ecefc28694cb", - "82cd71d524c8", - "067cef118d9f", - "ac9996319e05", - "180125f5d1a6", - "6eb4e79ad99a", - "be0ebed89b2b", - "c9cb32059b8d" + "e00e0d995284", + "9e263f5e91be", + "d78d24fff8fb", + "8f08c9b94011", + "0289e08fa363", + "759bb7d4b5cf", + "f2ca7e4f0a73", + "96be595b4b0e" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json b/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json index 3eb86fcd0da..e8e6d327bd1 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "5c4c890e4c71e80fa8847a5e29700fc9df3ac3bd634bad6289db37522fadd621", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01533f698bc3": { + "name": "workspaceAgent", + "value": "codex", + "sent": 1 + }, "090c88478661": { "name": "settings.get#1", "args": [ @@ -38,7 +43,12 @@ "startedAt": 0 } }, - "326e3f8f7e0b": { + "2a3409305e35": { + "name": "creatingKey", + "value": "linear:1", + "sent": 0 + }, + "2d957a8af6b3": { "name": "runtimeTaskSettings", "value": { "defaultTuiAgent": "codex", @@ -46,19 +56,15 @@ "hostSettingOverrides": {}, "prBotAuthorOverrides": ["bot-user"], "visibleTaskProviders": ["github", "linear"] - } + }, + "sent": 1 }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." - }, - "3f453dd79b03": { - "name": "workspaceAgent", - "value": "codex" - }, - "730f92993963": { + "3542b2dc7cf4": { "name": "creatingKey", - "value": "linear:1" + "value": { + "$rpc": "null" + }, + "sent": 1 }, "7abdfe20af50": { "creating": "linear:1", @@ -110,10 +116,6 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "8b8197eed660": { "creating": { "$rpc": "null" @@ -131,15 +133,20 @@ "status": "pending", "startedAt": 0 }, - "c9cb32059b8d": { - "name": "creatingKey", - "value": { - "$rpc": "null" - } - }, - "ea709e13f0f0": { + "98260d6be053": { "name": "workspaceAgentOverridden", - "value": false + "value": false, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -163,7 +170,7 @@ "submit": "9270aeb7d9c6" }, "state": "7abdfe20af50", - "effects": ["730f92993963", "82cd71d524c8"] + "effects": ["2a3409305e35", "9e263f5e91be"] } }, { @@ -177,13 +184,13 @@ }, "state": "8b8197eed660", "effects": [ - "730f92993963", - "82cd71d524c8", - "326e3f8f7e0b", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "2d957a8af6b3", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json b/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json index 35575d1dcd4..19f23abbe65 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "a699a0a5b128fa422dab0c7557b5aa18599b2d23fa6685cdcc02e17edf328af1", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01533f698bc3": { + "name": "workspaceAgent", + "value": "codex", + "sent": 1 + }, "090c88478661": { "name": "settings.get#1", "args": [ @@ -38,17 +43,17 @@ "startedAt": 0 } }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." - }, - "3f453dd79b03": { - "name": "workspaceAgent", - "value": "codex" - }, - "730f92993963": { + "2a3409305e35": { "name": "creatingKey", - "value": "linear:1" + "value": "linear:1", + "sent": 0 + }, + "3542b2dc7cf4": { + "name": "creatingKey", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "7abdfe20af50": { "creating": "linear:1", @@ -61,19 +66,19 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "c9cb32059b8d": { - "name": "creatingKey", - "value": { - "$rpc": "null" - } + "98260d6be053": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "d5df3f6b123a": { "creating": { @@ -118,9 +123,10 @@ } } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -144,7 +150,7 @@ "submit": "9270aeb7d9c6" }, "state": "7abdfe20af50", - "effects": ["730f92993963", "82cd71d524c8"] + "effects": ["2a3409305e35", "9e263f5e91be"] } }, { @@ -158,12 +164,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json b/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json index cef7790d7f9..3b389799fc6 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "a5e812cd508826b3f01ec3798c621ab4303de6536a364113f01a4770dd197bb5", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "01533f698bc3": { + "name": "workspaceAgent", + "value": "codex", + "sent": 1 + }, "090c88478661": { "name": "settings.get#1", "args": [ @@ -69,17 +74,17 @@ } } }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." - }, - "3f453dd79b03": { - "name": "workspaceAgent", - "value": "codex" - }, - "730f92993963": { + "2a3409305e35": { "name": "creatingKey", - "value": "linear:1" + "value": "linear:1", + "sent": 0 + }, + "3542b2dc7cf4": { + "name": "creatingKey", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "7abdfe20af50": { "creating": "linear:1", @@ -92,19 +97,19 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "c9cb32059b8d": { - "name": "creatingKey", - "value": { - "$rpc": "null" - } + "98260d6be053": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "d5df3f6b123a": { "creating": { @@ -115,9 +120,10 @@ "disabledTuiAgents": ["claude"] } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -141,7 +147,7 @@ "submit": "9270aeb7d9c6" }, "state": "7abdfe20af50", - "effects": ["730f92993963", "82cd71d524c8"] + "effects": ["2a3409305e35", "9e263f5e91be"] } }, { @@ -155,12 +161,12 @@ }, "state": "d5df3f6b123a", "effects": [ - "730f92993963", - "82cd71d524c8", - "3f453dd79b03", - "ea709e13f0f0", - "3405a06dce84", - "c9cb32059b8d" + "2a3409305e35", + "9e263f5e91be", + "01533f698bc3", + "98260d6be053", + "eaf6fe088c19", + "3542b2dc7cf4" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-task-write.json b/mobile/rpc-foundation/goldens/settings-task-write.json index 928c074ae90..2d26583502f 100644 --- a/mobile/rpc-foundation/goldens/settings-task-write.json +++ b/mobile/rpc-foundation/goldens/settings-task-write.json @@ -3,9 +3,9 @@ "family": "settings-best-effort", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "bbcdefe16b07068a81f3c46ae60df01ccb0fbe5a7c1eade3f584f6f0130c23fe", "platform": "darwin", @@ -76,9 +76,10 @@ "startedAt": 0 } }, - "b2897d5daa49": { + "8bdf90b8099a": { "name": "defaultGitHubPreset", - "value": "assigned" + "value": "assigned", + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -102,7 +103,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } }, { @@ -115,7 +116,7 @@ "write": "eb79a9b3682a" }, "state": "5db909d58c6f", - "effects": ["b2897d5daa49"] + "effects": ["8bdf90b8099a"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json b/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json index ce8985a7623..a4119e07024 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "287f94e469548f28c9d5591ff6ffb916fa22caa18776b091542b75704c9e1fee", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-workspace-context-refuse-after-data.json b/mobile/rpc-foundation/goldens/settings-workspace-context-refuse-after-data.json index 370aad3fdb0..e5b42a33628 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "76793a56e7b9e596d8c42e9a5a1c47337db32d7437bec2e41d6e7253943f3fd8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json b/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json index b9628c7d3fa..f3a44e66e01 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "ad19fc24973b49ee7d14bc31460a7e4af5d207db6a2375b52b5a0aa878e09205", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json b/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json index 753a1380d77..b0d83b8c350 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a2c80c9cdbb631f3a8fa648dfbb9e691418467d6ead8fe769d72e7e1d8b552b4", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json b/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json index aada374cc76..04568411b08 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "b10ff86086c134284cb0446e8857cd4b55f5ff2bd0507388ec659a95f25e2a19", "platform": "darwin", @@ -45,9 +45,18 @@ "disabledTuiAgents": ["claude"] } }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." + "3af6dc91992c": { + "name": "agentOverridden", + "value": false, + "sent": 1 + }, + "4c38e416e041": { + "name": "selectedAgent", + "value": { + "id": "codex", + "label": "Codex" + }, + "sent": 1 }, "5efbd884ea5a": { "creating": false, @@ -60,16 +69,6 @@ "visibleTaskProviders": ["github", "linear"] } }, - "6c2789ab0e4b": { - "name": "runtimeSettings", - "value": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } - }, "7ca23c4c946b": { "name": "settings.get#1", "args": [ @@ -113,24 +112,30 @@ "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "ae291b5dba88": { - "name": "agentOverridden", - "value": false + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, - "eb6f7a9c5bf1": { - "name": "selectedAgent", + "ea718cd95024": { + "name": "runtimeSettings", "value": { - "id": "codex", - "label": "Codex" - } + "defaultTuiAgent": "codex", + "disabledTuiAgents": ["claude"], + "hostSettingOverrides": {}, + "prBotAuthorOverrides": ["bot-user"], + "visibleTaskProviders": ["github", "linear"] + }, + "sent": 1 + }, + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -154,7 +159,7 @@ "submit": "9270aeb7d9c6" }, "state": "13c996e4ec2b", - "effects": ["82cd71d524c8"] + "effects": ["9e263f5e91be"] } }, { @@ -168,11 +173,11 @@ }, "state": "5efbd884ea5a", "effects": [ - "82cd71d524c8", - "6c2789ab0e4b", - "eb6f7a9c5bf1", - "ae291b5dba88", - "3405a06dce84" + "9e263f5e91be", + "ea718cd95024", + "4c38e416e041", + "3af6dc91992c", + "eaf6fe088c19" ] } } diff --git a/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json b/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json index 0ebb89d5302..8f1054b9d1a 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "373ea3743dac4e0845df01d5c8f75c909563b8c517f3858293a478234dc9ca5c", "platform": "darwin", @@ -52,25 +52,31 @@ "disabledTuiAgents": ["claude"] } }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." + "3af6dc91992c": { + "name": "agentOverridden", + "value": false, + "sent": 1 + }, + "4c38e416e041": { + "name": "selectedAgent", + "value": { + "id": "codex", + "label": "Codex" + }, + "sent": 1 }, "7ddcb1852b39": { "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "ae291b5dba88": { - "name": "agentOverridden", - "value": false + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "d6140b218abd": { "name": "settings.get#1", @@ -106,12 +112,10 @@ } } }, - "eb6f7a9c5bf1": { - "name": "selectedAgent", - "value": { - "id": "codex", - "label": "Codex" - } + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -135,7 +139,7 @@ "submit": "9270aeb7d9c6" }, "state": "13c996e4ec2b", - "effects": ["82cd71d524c8"] + "effects": ["9e263f5e91be"] } }, { @@ -148,7 +152,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } } ] diff --git a/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json b/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json index 28f728cff4a..efcffbe62e0 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "dfbacbd6392ae8e8199550952fe917e7c01182349df6c99a06eb0682cfd9175c", "platform": "darwin", @@ -83,32 +83,36 @@ "disabledTuiAgents": ["claude"] } }, - "3405a06dce84": { - "name": "error", - "value": "Selected agent is disabled. Choose an enabled agent before creating." + "3af6dc91992c": { + "name": "agentOverridden", + "value": false, + "sent": 1 + }, + "4c38e416e041": { + "name": "selectedAgent", + "value": { + "id": "codex", + "label": "Codex" + }, + "sent": 1 }, "7ddcb1852b39": { "name": "settings.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "ae291b5dba88": { - "name": "agentOverridden", - "value": false + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, - "eb6f7a9c5bf1": { - "name": "selectedAgent", - "value": { - "id": "codex", - "label": "Codex" - } + "eaf6fe088c19": { + "name": "error", + "value": "Selected agent is disabled. Choose an enabled agent before creating.", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -132,7 +136,7 @@ "submit": "9270aeb7d9c6" }, "state": "13c996e4ec2b", - "effects": ["82cd71d524c8"] + "effects": ["9e263f5e91be"] } }, { @@ -145,7 +149,7 @@ "submit": "eb79a9b3682a" }, "state": "2e8e352c8dd1", - "effects": ["82cd71d524c8", "eb6f7a9c5bf1", "ae291b5dba88", "3405a06dce84"] + "effects": ["9e263f5e91be", "4c38e416e041", "3af6dc91992c", "eaf6fe088c19"] } } ] diff --git a/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json b/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json index aad317a9b65..fad25494184 100644 --- a/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json +++ b/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json @@ -3,9 +3,9 @@ "family": "speech.dictation-chunk", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "08b583790d858a4cb7cf7377126818b6d05766c02587343ec89a167f94094082", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json b/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json index c4889ea65f8..635f1d90aec 100644 --- a/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json +++ b/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "35fadd03f2c98344e22d6aec2dc85ad15ca5ac8e092fc1c29a20366db5d46628", "platform": "darwin", @@ -18,18 +18,19 @@ "idle": false, "started": true }, - "76026c7189a2": { - "name": "keep-awake-acquire", - "value": { - "id": "dictation-1" - } - }, "84e5ca07cb7a": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": true }, + "a0128a3c7e10": { + "name": "keep-awake-acquire", + "value": { + "id": "dictation-1" + }, + "sent": 1 + }, "bbe508ab7f95": { "name": "speech.dictation.start#1", "args": [ @@ -80,7 +81,7 @@ "start": "84e5ca07cb7a" }, "state": "6db9a10e2b00", - "effects": ["76026c7189a2"] + "effects": ["a0128a3c7e10"] } } ] diff --git a/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json b/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json index e3fa6566f75..ce4443bbfca 100644 --- a/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json +++ b/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "75b8d1b7ed98b2bf7420986958d0a36222b007c535f85c1308b534301241ec2d", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "17d9ffdaaf04": { + "0744999456ef": { "name": "rollback-recording", - "value": {} + "value": {}, + "sent": 1 }, "1cf8d4be517f": { "activeId": { @@ -57,12 +58,6 @@ } } }, - "76026c7189a2": { - "name": "keep-awake-acquire", - "value": { - "id": "dictation-1" - } - }, "7a657475cacc": { "status": "rejected", "startedAt": 0, @@ -73,11 +68,12 @@ "isRpcDeliveryUnknown": false } }, - "90cdfbb42957": { - "name": "keep-awake-release", + "a0128a3c7e10": { + "name": "keep-awake-acquire", "value": { "id": "dictation-1" - } + }, + "sent": 1 }, "a78a87e09f05": { "name": "speech.dictation.cancel#1", @@ -119,6 +115,13 @@ "e1538fe51a1e": { "name": "speech.dictation.start#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}" + }, + "ff7a7828636f": { + "name": "keep-awake-release", + "value": { + "id": "dictation-1" + }, + "sent": 1 } }, "recording": { @@ -133,7 +136,7 @@ "start": "7a657475cacc" }, "state": "1cf8d4be517f", - "effects": ["76026c7189a2", "17d9ffdaaf04", "90cdfbb42957"] + "effects": ["a0128a3c7e10", "0744999456ef", "ff7a7828636f"] } } ] diff --git a/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json b/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json index ebc2da5280e..da4b691a818 100644 --- a/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json +++ b/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "b1c4a6d6c94d54fb5f60eb2deb437562ededd724140dd3973d842d7c29bf1a60", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json b/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json index 1f182257f43..ba63230bf1e 100644 --- a/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json +++ b/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "cc8338e31b7a2dc232238281afd2e3240343bb817a652744789f58ace806325a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json b/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json index 297eec8a0a2..db637264946 100644 --- a/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json +++ b/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "e49a25f36fe41125d875205f7d543218078b87f0039f16ba3dc2f10c6a9e9860", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/speech-setup-sheet-denied-to-mobile.json b/mobile/rpc-foundation/goldens/speech-setup-sheet-denied-to-mobile.json index 69dc9a6bd6a..2deeb4bb3ae 100644 --- a/mobile/rpc-foundation/goldens/speech-setup-sheet-denied-to-mobile.json +++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-denied-to-mobile.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "69c1c20ea667a2b6a5b53aeb3d9af11b2b707e04086e15ee4ff9e954b1701851", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json b/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json index 89c35923e4a..2efc08bbb49 100644 --- a/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json +++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "748e1bc0575fca6baab51b19cbbea5ac6185fca2a15dc4d8577212134355cd7e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json b/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json index 9740074644e..6ef8bbf1e03 100644 --- a/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json +++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "0ba2d8283fe98206c7500b62732e30acdc5b8e55f50b7ea8cae96403b803d519", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/structured-launch-created.json b/mobile/rpc-foundation/goldens/structured-launch-created.json new file mode 100644 index 00000000000..3ae781eec19 --- /dev/null +++ b/mobile/rpc-foundation/goldens/structured-launch-created.json @@ -0,0 +1,137 @@ +{ + "operation": "agentSession.structured-launch", + "family": "agentSession.structured-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", + "scenarioSha256": "0b5dd55868490e4d62d7d718821dec9634773b20d32fe9889523606a3f6b9168", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "4a8f44bda967": { + "name": "agentSession.createSupport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "6d6669cd1a85": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "created", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + }, + "87c3a18d4168": { + "name": "agentSession.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "bc88a2996f1c": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "supported": true + } + } + } + }, + "d00057b53c3e": { + "launched": { + "kind": "created", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + }, + "d786cd5ee0ac": { + "name": "agentSession.create#1", + "args": [ + { + "name": "method", + "value": "agentSession.create" + }, + { + "name": "params", + "value": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": { + "$rpc": "null" + }, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "ok": true, + "value": { + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + } + } + } + } + }, + "recording": { + "scenario": "structured-launch-created", + "checkpoints": [ + { + "id": "created", + "observation": { + "sender": ["bc88a2996f1c", "d786cd5ee0ac"], + "payloads": ["4a8f44bda967", "87c3a18d4168"], + "settlements": { + "claude": "6d6669cd1a85" + }, + "state": "d00057b53c3e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json b/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json new file mode 100644 index 00000000000..fb12bee8def --- /dev/null +++ b/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json @@ -0,0 +1,138 @@ +{ + "operation": "agentSession.structured-launch", + "family": "agentSession.structured-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", + "scenarioSha256": "64916f2d8ab51132b08c3e8c72f89c3a2698d83945def294f42edf22eb6d08ea", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "4a8f44bda967": { + "name": "agentSession.createSupport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "509ea9274732": { + "name": "agentSession.create#1", + "args": [ + { + "name": "method", + "value": "agentSession.create" + }, + { + "name": "params", + "value": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": { + "$rpc": "null" + }, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "ok": false, + "refusal": { + "code": "agent_session_unsupported", + "message": "No agent" + } + } + } + } + }, + "57068cb6a8b6": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "unknown", + "message": "No agent" + } + }, + "87c3a18d4168": { + "name": "agentSession.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "bc88a2996f1c": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "supported": true + } + } + } + }, + "cddfb66db4f3": { + "launched": { + "kind": "unknown", + "message": "No agent" + } + } + }, + "recording": { + "scenario": "structured-launch-definitive-refusal", + "checkpoints": [ + { + "id": "refused", + "observation": { + "sender": ["bc88a2996f1c", "509ea9274732"], + "payloads": ["4a8f44bda967", "87c3a18d4168"], + "settlements": { + "claude": "57068cb6a8b6" + }, + "state": "cddfb66db4f3", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json b/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json new file mode 100644 index 00000000000..443d614fa99 --- /dev/null +++ b/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json @@ -0,0 +1,182 @@ +{ + "operation": "agentSession.structured-launch", + "family": "agentSession.structured-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", + "scenarioSha256": "fb1ab1209f0a7c03ee1b3985401ce2df080d673532f045c4fca26e754d5e5a9f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "4a72f70dd463": { + "name": "agentSession.create#1", + "args": [ + { + "name": "method", + "value": "agentSession.create" + }, + { + "name": "params", + "value": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": { + "$rpc": "null" + }, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Connection lost", + "isRpcDeliveryUnknown": true + } + } + }, + "4a8f44bda967": { + "name": "agentSession.createSupport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "5576fc62b696": { + "name": "agentSession.create#2", + "args": [ + { + "name": "method", + "value": "agentSession.create" + }, + { + "name": "params", + "value": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": { + "$rpc": "null" + }, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "timeoutMs": 15000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true, + "value": { + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + } + } + } + }, + "68ca9e9559ad": { + "name": "agentSession.create#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "6d6669cd1a85": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "created", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + }, + "87c3a18d4168": { + "name": "agentSession.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "bc88a2996f1c": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "supported": true + } + } + } + }, + "d00057b53c3e": { + "launched": { + "kind": "created", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + } + }, + "recording": { + "scenario": "structured-launch-replays-dropped-create", + "checkpoints": [ + { + "id": "replayed", + "observation": { + "sender": ["bc88a2996f1c", "4a72f70dd463", "5576fc62b696"], + "payloads": ["4a8f44bda967", "87c3a18d4168", "68ca9e9559ad"], + "settlements": { + "claude": "6d6669cd1a85" + }, + "state": "d00057b53c3e", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/structured-launch-support-refused.json b/mobile/rpc-foundation/goldens/structured-launch-support-refused.json new file mode 100644 index 00000000000..c2c2f28f386 --- /dev/null +++ b/mobile/rpc-foundation/goldens/structured-launch-support-refused.json @@ -0,0 +1,86 @@ +{ + "operation": "agentSession.structured-launch", + "family": "agentSession.structured-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", + "scenarioSha256": "d8928461e3295d265872e5f98fb8aad445b5edc55fc76f137e45c0cff0d8b961", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2c227fd1941f": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "unsupported" + } + }, + "4a8f44bda967": { + "name": "agentSession.createSupport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "99caa4276b06": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "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 + } + } + }, + "f40adca316f9": { + "launched": { + "kind": "unsupported" + } + } + }, + "recording": { + "scenario": "structured-launch-support-refused", + "checkpoints": [ + { + "id": "unsupported", + "observation": { + "sender": ["99caa4276b06"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "2c227fd1941f" + }, + "state": "f40adca316f9", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/structured-launch-unsupported.json b/mobile/rpc-foundation/goldens/structured-launch-unsupported.json new file mode 100644 index 00000000000..69af7e0106c --- /dev/null +++ b/mobile/rpc-foundation/goldens/structured-launch-unsupported.json @@ -0,0 +1,88 @@ +{ + "operation": "agentSession.structured-launch", + "family": "agentSession.structured-launch", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", + "scenarioSha256": "c30e9cae49e134715c009a98f423f3e4a9d552c014be3e28b38e98c57999b6f5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "4a8f44bda967": { + "name": "agentSession.createSupport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + }, + "551313dcc738": { + "launched": { + "kind": "unsupported", + "reason": "remote" + } + }, + "bef30d717da6": { + "name": "agentSession.createSupport#1", + "args": [ + { + "name": "method", + "value": "agentSession.createSupport" + }, + { + "name": "params", + "value": { + "agent": "claude", + "worktree": "id:workspace-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "reason": "remote", + "supported": false + } + } + } + }, + "dd51c5566f19": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "unsupported", + "reason": "remote" + } + } + }, + "recording": { + "scenario": "structured-launch-unsupported", + "checkpoints": [ + { + "id": "unsupported", + "observation": { + "sender": ["bef30d717da6"], + "payloads": ["4a8f44bda967"], + "settlements": { + "claude": "dd51c5566f19" + }, + "state": "551313dcc738", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json b/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json index 8e13ece35ba..7b50176565d 100644 --- a/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json +++ b/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json @@ -3,9 +3,9 @@ "family": "terminal.query-reply", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "bfa1d5f83b4112d3cce6a19e9dc27daf9281ed99745bc01bd19226dd7b268c71", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json b/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json index 35dc4766e1e..eced0be5882 100644 --- a/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json +++ b/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json @@ -3,9 +3,9 @@ "family": "terminal.query-reply", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "ad03596f31eeccc5e9eb7e5061b1af705f9af249f76377c8f5ce1a9db257770f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json b/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json index eb7f52598c1..7bd2474c28b 100644 --- a/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json +++ b/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "76fc0c1499ec48a67428f35eba705f68147d2ff2c344b67aa0c9d60ed999f173", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json b/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json index b37613745b6..8f9b2840b4b 100644 --- a/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json +++ b/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "579077efd3a4652a6930af3f6690138c20536270cbcd7274246047d2e322199f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json b/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json index 17993297cde..d3e22799c37 100644 --- a/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json +++ b/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "c2236257032fab72ebb007391313eec4e5f0a1bdb4fbcbd907117f9914ffafc6", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json b/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json index 0bc6e7d40c5..0e92c8371bc 100644 --- a/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json +++ b/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "8ad436ca6c3de8b0b3148326337acce18a8a4cf3c514acad1a4530a001f28c75", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json b/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json index e89c9e8aaf1..2ff49e82e31 100644 --- a/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json +++ b/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json @@ -3,9 +3,9 @@ "family": "terminal.viewport-refit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "f966c2ef2e747a5231f423147ddaf38458cb08c719434b274016a5e4abc10771", "platform": "darwin", @@ -55,18 +55,13 @@ } } }, - "472aa5c4220c": { - "name": "measure-fit", - "value": { - "frameHeight": 600 - } - }, - "58cda7b4ca05": { + "3c255f83f3e1": { "name": "reflow", "value": { "cols": 100, "rows": 30 - } + }, + "sent": 1 }, "7e0619ad636f": { "measured": true, @@ -79,6 +74,13 @@ "name": "terminal.updateViewport#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}" }, + "a993d0d38252": { + "name": "measure-fit", + "value": { + "frameHeight": 600 + }, + "sent": 0 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -101,7 +103,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "58cda7b4ca05"] + "effects": ["a993d0d38252", "3c255f83f3e1"] } } ] diff --git a/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json b/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json index 53ff7f413fc..8e4ef06e34f 100644 --- a/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json +++ b/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json @@ -3,9 +3,9 @@ "family": "terminal.viewport-refit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "88961a369cb7a7fa92708bb83aa7f818e904018e8cfcedc2f50ef9a0058c8b9d", "platform": "darwin", @@ -13,23 +13,12 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "05338e19b42a": { + "37024426b62f": { "name": "subscribe-terminal", "value": { "handle": "terminal-1" - } - }, - "472aa5c4220c": { - "name": "measure-fit", - "value": { - "frameHeight": 600 - } - }, - "5fde1571425b": { - "name": "unsubscribe-terminal", - "value": { - "handle": "terminal-1" - } + }, + "sent": 1 }, "7e0619ad636f": { "measured": true, @@ -42,6 +31,20 @@ "name": "terminal.updateViewport#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}" }, + "a1c0c7168922": { + "name": "unsubscribe-terminal", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "a993d0d38252": { + "name": "measure-fit", + "value": { + "frameHeight": 600 + }, + "sent": 0 + }, "aef14699e2f6": { "name": "terminal.updateViewport#1", "args": [ @@ -106,7 +109,7 @@ "height": "eb79a9b3682a" }, "state": "7e0619ad636f", - "effects": ["472aa5c4220c", "5fde1571425b", "05338e19b42a"] + "effects": ["a993d0d38252", "a1c0c7168922", "37024426b62f"] } } ] diff --git a/mobile/rpc-foundation/goldens/tk-create-github.json b/mobile/rpc-foundation/goldens/tk-create-github.json index 0fec1bb4744..cbdbac19bd0 100644 --- a/mobile/rpc-foundation/goldens/tk-create-github.json +++ b/mobile/rpc-foundation/goldens/tk-create-github.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "260a84280f69c43ac582149d9befe6ae547b2ad2b5f56a181d8e3a1314a0a071", "platform": "darwin", @@ -54,13 +54,10 @@ "name": "github.createIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "4a66cf72bc8f": { + "46bbfadb0481": { "name": "creatingTask", - "value": false + "value": true, + "sent": 0 }, "5ab5b62983be": { "composer": false, @@ -90,21 +87,42 @@ "updatedAt": "2026-01-01T00:00:00.000Z" } }, - "5b8e3a96030e": { + "6652745ed1c6": { "name": "createBody", - "value": "" + "value": "", + "sent": 1 }, - "791f05938c43": { - "name": "creatingTask", - "value": true + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "871b62dd230b": { - "name": "createTitle", - "value": "" + "873de7fc7ff8": { + "name": "actionItem", + "value": { + "key": "github:repo-1:issue:11", + "provider": "github", + "source": { + "author": { + "$rpc": "null" + }, + "id": "issue:11", + "labels": [], + "number": 11, + "repoId": "repo-1", + "repoName": "Repo", + "state": "open", + "title": "A new task", + "type": "issue", + "updatedAt": "2026-01-01T00:00:00.000Z", + "url": "https://github.com/owner/repo/issues/11" + }, + "status": "Open", + "subtitle": "Repo #11", + "title": "A new task", + "updatedAt": "2026-01-01T00:00:00.000Z" + }, + "sent": 1 }, "98e33157a9f2": { "name": "repo.update#1", @@ -142,36 +160,25 @@ } } }, - "a10650cc438b": { - "name": "actionItem", - "value": { - "key": "github:repo-1:issue:11", - "provider": "github", - "source": { - "author": { - "$rpc": "null" - }, - "id": "issue:11", - "labels": [], - "number": 11, - "repoId": "repo-1", - "repoName": "Repo", - "state": "open", - "title": "A new task", - "type": "issue", - "updatedAt": "2026-01-01T00:00:00.000Z", - "url": "https://github.com/owner/repo/issues/11" - }, - "status": "Open", - "subtitle": "Repo #11", - "title": "A new task", - "updatedAt": "2026-01-01T00:00:00.000Z" - } + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "c0c0f9a6037e": { + "name": "createTitle", + "value": "", + "sent": 1 }, "c41296ee02f7": { "name": "repo.update#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}" }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -179,6 +186,11 @@ "value": { "$rpc": "undefined" } + }, + "fc7f792d6e89": { + "name": "creatingTask", + "value": false, + "sent": 1 } }, "recording": { @@ -195,13 +207,13 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } }, @@ -217,14 +229,14 @@ }, "state": "5ab5b62983be", "effects": [ - "791f05938c43", - "82cd71d524c8", - "a10650cc438b", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f", - "82cd71d524c8" + "46bbfadb0481", + "9e263f5e91be", + "873de7fc7ff8", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89", + "d48d5c49486c" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-create-gitlab.json b/mobile/rpc-foundation/goldens/tk-create-gitlab.json index d8d8e45006f..d3475dc2071 100644 --- a/mobile/rpc-foundation/goldens/tk-create-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-create-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a4d3d1f322d49593056bd20f4122bbf0309d2161123e404161950bcab65decd5", "platform": "darwin", @@ -13,39 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0357d0481a9f": { - "name": "actionItem", - "value": { - "key": "gitlab:repo-1:issue:6", - "provider": "gitlab", - "source": { - "author": { - "$rpc": "null" - }, - "id": "issue:6", - "labels": [], - "number": 6, - "repoId": "repo-1", - "repoName": "Repo", - "state": "opened", - "title": "A new task", - "type": "issue", - "updatedAt": "2026-01-01T00:00:00.000Z", - "url": "https://gitlab.com/group/project/-/issues/6" - }, - "status": "Open", - "subtitle": "Repo #6", - "title": "A new task", - "updatedAt": "2026-01-01T00:00:00.000Z" - } - }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "4a66cf72bc8f": { + "46bbfadb0481": { "name": "creatingTask", - "value": false + "value": true, + "sent": 0 }, "580f3724d37b": { "composer": false, @@ -75,21 +46,25 @@ "updatedAt": "2026-01-01T00:00:00.000Z" } }, - "5b8e3a96030e": { + "6652745ed1c6": { "name": "createBody", - "value": "" + "value": "", + "sent": 1 }, - "791f05938c43": { - "name": "creatingTask", - "value": true + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 }, - "82cd71d524c8": { + "9e263f5e91be": { "name": "error", - "value": "" + "value": "", + "sent": 0 }, - "871b62dd230b": { + "c0c0f9a6037e": { "name": "createTitle", - "value": "" + "value": "", + "sent": 1 }, "c9c89070b638": { "name": "gitlab.createIssue#1", @@ -136,9 +111,41 @@ "$rpc": "undefined" } }, + "f4790c11c55e": { + "name": "actionItem", + "value": { + "key": "gitlab:repo-1:issue:6", + "provider": "gitlab", + "source": { + "author": { + "$rpc": "null" + }, + "id": "issue:6", + "labels": [], + "number": 6, + "repoId": "repo-1", + "repoName": "Repo", + "state": "opened", + "title": "A new task", + "type": "issue", + "updatedAt": "2026-01-01T00:00:00.000Z", + "url": "https://gitlab.com/group/project/-/issues/6" + }, + "status": "Open", + "subtitle": "Repo #6", + "title": "A new task", + "updatedAt": "2026-01-01T00:00:00.000Z" + }, + "sent": 1 + }, "f5bc6cfd470a": { "name": "gitlab.createIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" + }, + "fc7f792d6e89": { + "name": "creatingTask", + "value": false, + "sent": 1 } }, "recording": { @@ -155,13 +162,13 @@ }, "state": "580f3724d37b", "effects": [ - "791f05938c43", - "82cd71d524c8", - "0357d0481a9f", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "f4790c11c55e", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-create-linear.json b/mobile/rpc-foundation/goldens/tk-create-linear.json index e94c1d7ae5f..bfe0f52a3f0 100644 --- a/mobile/rpc-foundation/goldens/tk-create-linear.json +++ b/mobile/rpc-foundation/goldens/tk-create-linear.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "f6c7eea985190d9edeead5b36f90c8aa98679f69d19dab7579fec88841645259", "platform": "darwin", @@ -53,17 +53,10 @@ } } }, - "3e610f908f29": { - "name": "showCreateTask", - "value": false - }, - "4a66cf72bc8f": { + "46bbfadb0481": { "name": "creatingTask", - "value": false - }, - "5b8e3a96030e": { - "name": "createBody", - "value": "" + "value": true, + "sent": 0 }, "6105e77e3945": { "name": "linear.createIssue#1", @@ -104,19 +97,22 @@ "updatedAt": "2026-01-01T00:00:00.000Z" } }, - "791f05938c43": { - "name": "creatingTask", - "value": true + "6652745ed1c6": { + "name": "createBody", + "value": "", + "sent": 1 }, - "82cd71d524c8": { + "781721955405": { + "name": "showCreateTask", + "value": false, + "sent": 1 + }, + "9e263f5e91be": { "name": "error", - "value": "" + "value": "", + "sent": 0 }, - "871b62dd230b": { - "name": "createTitle", - "value": "" - }, - "9f7828134fd2": { + "b83a4bfe6154": { "name": "actionItem", "value": { "key": "linear:linear-workspace:issue-3", @@ -147,7 +143,13 @@ "subtitle": "ENG-3 · undefined", "title": "A sub-issue", "updatedAt": "2026-01-01T00:00:00.000Z" - } + }, + "sent": 1 + }, + "c0c0f9a6037e": { + "name": "createTitle", + "value": "", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -156,6 +158,11 @@ "value": { "$rpc": "undefined" } + }, + "fc7f792d6e89": { + "name": "creatingTask", + "value": false, + "sent": 1 } }, "recording": { @@ -172,13 +179,13 @@ }, "state": "61b2cb7e4313", "effects": [ - "791f05938c43", - "82cd71d524c8", - "9f7828134fd2", - "3e610f908f29", - "871b62dd230b", - "5b8e3a96030e", - "4a66cf72bc8f" + "46bbfadb0481", + "9e263f5e91be", + "b83a4bfe6154", + "781721955405", + "c0c0f9a6037e", + "6652745ed1c6", + "fc7f792d6e89" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-checks-files.json b/mobile/rpc-foundation/goldens/tk-item-checks-files.json index 2ba3c4b65a9..e5a516639ee 100644 --- a/mobile/rpc-foundation/goldens/tk-item-checks-files.json +++ b/mobile/rpc-foundation/goldens/tk-item-checks-files.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "15de2c1dd80a591a5e27d50664ff21d4e71442c711fc3bbdf7d1f95f499cf04c", "platform": "darwin", @@ -17,17 +17,33 @@ "name": "github.setPRFileViewed#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, - "0c85499cb425": { + "02b35324051f": { "name": "prFileLoadingPath", "value": { "$rpc": "null" - } + }, + "sent": 4 }, - "1022542acd40": { + "02b52513bb0d": { + "name": "mutatingStatus", + "value": true, + "sent": 4 + }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 + }, + "169fba726515": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "2322bd630112": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -73,11 +89,18 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + "30196bc9a973": { + "name": "detailRefreshSeq", + "value": 1, + "sent": 1 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, "38d90ed8a1ee": { "contents": { @@ -145,6 +168,17 @@ }, "refreshSeq": 1 }, + "3d589c54ccdc": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 4 + }, "4b4ca1abe880": { "contents": {}, "drafts": { @@ -199,6 +233,11 @@ }, "refreshSeq": 1 }, + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 + }, "56b95ef32926": { "name": "github.prFileContents#1", "args": [ @@ -242,6 +281,11 @@ } } }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "58deaf3a6563": { "contents": {}, "drafts": { @@ -296,76 +340,6 @@ }, "refreshSeq": 1 }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, - "679b3f3a0d12": { - "name": "prFileContents", - "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - }, - "6c85e969cc9d": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": true, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "VIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "719c7f70fd21": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" @@ -424,15 +398,12 @@ }, "refreshSeq": 1 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, - "8fd2d4171773": { + "8c3bfdbaf598": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -455,6 +426,14 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" + }, + { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" } ], "files": [ @@ -478,7 +457,18 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 5 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "a5b56b388d19": { "name": "github.addPRReviewComment#1", @@ -526,6 +516,11 @@ } } }, + "a82a30c9d838": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 3 + }, "a94ae672d47d": { "name": "github.rerunPRChecks#1", "args": [ @@ -562,9 +557,10 @@ } } }, - "ab7ba6b82907": { - "name": "detailRefreshSeq", - "value": 1 + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 }, "bcb382ff8ccc": { "name": "github.resolveReviewThread#1", @@ -599,10 +595,6 @@ } } }, - "c05d98f543b7": { - "name": "expandedPrFilePath", - "value": "src/index.ts" - }, "c3ea578fcb3f": { "contents": { "src/index.ts": { @@ -663,10 +655,74 @@ }, "refreshSeq": 1 }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d530e4061382": { "name": "github.prFileContents#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" }, + "d6639f415773": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": true, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "VIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e14b632f629a": { "name": "github.setPRFileViewed#1", "args": [ @@ -713,9 +769,15 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f1d782d012f9": { + "name": "expandedPrFilePath", + "value": "src/index.ts", + "sent": 3 + }, + "f28dd4f3c720": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 5 } }, "recording": { @@ -731,7 +793,7 @@ "rerun-0": "eb79a9b3682a" }, "state": "58deaf3a6563", - "effects": ["066ce15717c8", "82cd71d524c8", "ab7ba6b82907", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "30196bc9a973", "32a3635e06a4"] } }, { @@ -746,14 +808,14 @@ }, "state": "7418dba01b6e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf" ] } }, @@ -770,18 +832,18 @@ }, "state": "4b4ca1abe880", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5" ] } }, @@ -799,23 +861,23 @@ }, "state": "c3ea578fcb3f", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f" ] } }, @@ -846,28 +908,28 @@ }, "state": "38d90ed8a1ee", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ab7ba6b82907", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "1022542acd40", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "8fd2d4171773", - "f02550278f6a", - "c05d98f543b7", - "8aa9021b397d", - "82cd71d524c8", - "679b3f3a0d12", - "0c85499cb425", - "066ce15717c8", - "82cd71d524c8", - "5e884949c856", - "6c85e969cc9d", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "30196bc9a973", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2322bd630112", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "d6639f415773", + "0c0d6ea592d5", + "f1d782d012f9", + "a82a30c9d838", + "dbbebbd74a18", + "3d589c54ccdc", + "02b35324051f", + "02b52513bb0d", + "1e34370849ff", + "f28dd4f3c720", + "8c3bfdbaf598", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-comment-github.json b/mobile/rpc-foundation/goldens/tk-item-comment-github.json index 0e66e30e75d..f467c18fa23 100644 --- a/mobile/rpc-foundation/goldens/tk-item-comment-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-comment-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "fb0cdff9e02bac37b0bd8e1c47922474823d46fa735f3069ed70cdad41800be6", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { + "32a3635e06a4": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 1 }, "35cd4f653b4b": { "draft": "", @@ -132,7 +133,12 @@ "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"body\":\"a comment\",\"type\":\"issue\"}}" }, - "81e65eb25119": { + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "adb96f97611d": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -184,15 +190,13 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 1 }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -202,9 +206,10 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "ffdb6c1abbef": { + "name": "itemCommentDraft", + "value": "", + "sent": 1 } }, "recording": { @@ -221,11 +226,11 @@ }, "state": "35cd4f653b4b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "81e65eb25119", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "adb96f97611d", + "32a3635e06a4" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json index 23b0d6210cc..0e8ad78306f 100644 --- a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json +++ b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "cb696d402b8af2b9a54d4d6f9d85abfc12280e73b360196e55ec25530e610eee", "platform": "darwin", @@ -17,9 +17,35 @@ "name": "gitlab.addMRComment#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addMRComment\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" }, - "066ce15717c8": { + "1792a570e51c": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 905 + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 + }, + "32a3635e06a4": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 1 }, "6c49f5e0f2ca": { "draft": "", @@ -60,13 +86,10 @@ "provider": "gitlab" } }, - "82cd71d524c8": { + "9e263f5e91be": { "name": "error", - "value": "" - }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "value": "", + "sent": 0 }, "c6b7aaa4bd08": { "name": "gitlab.addMRComment#1", @@ -110,29 +133,10 @@ } } }, - "e25faf755127": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 905 - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -142,9 +146,10 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "ffdb6c1abbef": { + "name": "itemCommentDraft", + "value": "", + "sent": 1 } }, "recording": { @@ -161,11 +166,11 @@ }, "state": "6c49f5e0f2ca", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "e25faf755127", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "1792a570e51c", + "32a3635e06a4" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json index bc81345b76d..4a5d0d37550 100644 --- a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "d993b9f74cf8c5d7af8d31a73cf19d97141c54f6fcf009e98ca5b9106f3ba35b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "1f27ffccd3c3": { "name": "gitlab.addIssueComment#1", "args": [ @@ -59,6 +55,11 @@ } } }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "48a9b4deaa5b": { "draft": "", "error": "", @@ -98,15 +99,7 @@ "provider": "gitlab" } }, - "7251019fd224": { - "name": "gitlab.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "92ea6ed9109e": { + "59727d722699": { "name": "detailPayload", "value": { "assignees": [], @@ -128,11 +121,22 @@ "labels": ["bug"], "pipelineJobs": [], "provider": "gitlab" - } + }, + "sent": 1 }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "7251019fd224": { + "name": "gitlab.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -142,9 +146,10 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "ffdb6c1abbef": { + "name": "itemCommentDraft", + "value": "", + "sent": 1 } }, "recording": { @@ -161,11 +166,11 @@ }, "state": "48a9b4deaa5b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "a36b80f7b048", - "92ea6ed9109e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ffdb6c1abbef", + "59727d722699", + "32a3635e06a4" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-github.json b/mobile/rpc-foundation/goldens/tk-item-detail-github.json index fd66b2a80d1..9837e000971 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "5fbff075d7da476f93c2a7da871c2afacc67822d1317acf6c23000195e2b2576", "platform": "darwin", @@ -13,6 +13,30 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "026c8cc37792": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [], + "files": [], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": "APPROVED", + "reviewRequests": [] + }, + "sent": 1 + }, + "1867a9df681c": { + "name": "detailLoading", + "value": false, + "sent": 1 + }, "1874e6e64ab8": { "error": "", "item": { @@ -68,10 +92,6 @@ "reviewRequests": [] } }, - "3b01c25bcd45": { - "name": "detailError", - "value": "" - }, "54ee429ef116": { "name": "github.workItemDetails#1", "args": [ @@ -120,37 +140,22 @@ } } }, - "7d21147e56c1": { + "56d172ecd2fe": { "name": "detailLoading", - "value": true + "value": true, + "sent": 0 }, - "7d341b2cb946": { + "9bd1de5d9753": { "name": "detailPayload", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "8104eddfeb38": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [], - "files": [], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": "APPROVED", - "reviewRequests": [] - } - }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 }, "d46a22dbc133": { "name": "github.workItemDetails#1", @@ -178,11 +183,11 @@ }, "state": "1874e6e64ab8", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "8104eddfeb38", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "026c8cc37792", + "1867a9df681c" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json index cd06b4f8bef..a8d10ed05dc 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "36bbd34ed8b8f67e516ce7cd230b01ab88f14369fda632037c46dbbd1a0d95a3", "platform": "darwin", @@ -17,6 +17,11 @@ "name": "gitlab.workItemDetails#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":4,\"type\":\"issue\",\"projectRef\":\"group/project\"}}" }, + "1867a9df681c": { + "name": "detailLoading", + "value": false, + "sent": 1 + }, "292ec83c1b66": { "name": "gitlab.workItemDetails#1", "args": [ @@ -65,7 +70,36 @@ } } }, - "3383a335299c": { + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, + "9bd1de5d9753": { + "name": "detailPayload", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 + }, + "a11900db0941": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 1 + }, + "d6522427a24c": { "name": "actionItem", "value": { "provider": "gitlab", @@ -90,25 +124,38 @@ "type": "issue" }, "title": "A GitLab issue" - } + }, + "sent": 1 }, - "3b01c25bcd45": { - "name": "detailError", - "value": "" - }, - "7d21147e56c1": { - "name": "detailLoading", - "value": true - }, - "7d341b2cb946": { - "name": "detailPayload", - "value": { - "$rpc": "null" - } - }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false + "e8f33a90ab1d": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 0, + "pending": 0, + "state": "none", + "total": 0 + }, + "id": "gitlab:issue:4", + "labels": ["bug"], + "mergeable": "MERGEABLE", + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "reviewDecision": "approved", + "reviewerCount": 0, + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + } + ], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -179,46 +226,6 @@ "pipelineJobs": [], "provider": "gitlab" } - }, - "f461061bfc92": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } - }, - "f8c6ce51db00": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 0, - "pending": 0, - "state": "none", - "total": 0 - }, - "id": "gitlab:issue:4", - "labels": ["bug"], - "mergeable": "MERGEABLE", - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "reviewDecision": "approved", - "reviewerCount": 0, - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - ] } }, "recording": { @@ -234,13 +241,13 @@ }, "state": "f2d8814a60b2", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "f461061bfc92", - "3383a335299c", - "f8c6ce51db00", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "a11900db0941", + "d6522427a24c", + "e8f33a90ab1d", + "1867a9df681c" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-linear.json b/mobile/rpc-foundation/goldens/tk-item-detail-linear.json index bb33ca6529e..dcea1d500ef 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-linear.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-linear.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "f0407adc774b29553bdd177885e8ea9047127c4ebe8298de160a421fb4c1fe67", "platform": "darwin", @@ -13,7 +13,7 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "078876b4148c": { + "11e204c49d13": { "name": "detailPayload", "value": { "assignee": { @@ -36,7 +36,8 @@ "$rpc": "undefined" }, "provider": "linear" - } + }, + "sent": 2 }, "1764e3c48b18": { "name": "linear.issueComments#1", @@ -79,10 +80,6 @@ } } }, - "3b01c25bcd45": { - "name": "detailError", - "value": "" - }, "47f3ae87c00a": { "name": "linear.getIssue#1", "args": [ @@ -136,19 +133,56 @@ } } }, - "7d21147e56c1": { - "name": "detailLoading", - "value": true + "501841dc050a": { + "name": "actionItem", + "value": { + "provider": "linear", + "source": { + "description": "", + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "project": { + "$rpc": "null" + }, + "state": { + "color": "#000000", + "name": "Todo", + "type": "unstarted" + }, + "subIssues": [], + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering", + "workspaceId": "linear-workspace" + }, + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace", + "workspaceName": "Workspace" + }, + "title": "A Linear issue" + }, + "sent": 2 }, - "7d341b2cb946": { + "56d172ecd2fe": { + "name": "detailLoading", + "value": true, + "sent": 0 + }, + "9bd1de5d9753": { "name": "detailPayload", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "91a1c8142e23": { - "name": "detailLoading", - "value": false + "9d6ce9f28401": { + "name": "detailError", + "value": "", + "sent": 0 }, "a2e20872c3f2": { "error": "", @@ -242,39 +276,6 @@ "name": "linear.getIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" }, - "c051440f1f05": { - "name": "actionItem", - "value": { - "provider": "linear", - "source": { - "description": "", - "id": "issue-1", - "identifier": "ENG-1", - "labels": [], - "priority": 0, - "project": { - "$rpc": "null" - }, - "state": { - "color": "#000000", - "name": "Todo", - "type": "unstarted" - }, - "subIssues": [], - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering", - "workspaceId": "linear-workspace" - }, - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace", - "workspaceName": "Workspace" - }, - "title": "A Linear issue" - } - }, "e7f73629d075": { "name": "linear.issueComments#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" @@ -286,6 +287,11 @@ "value": { "$rpc": "undefined" } + }, + "ee0c4638d266": { + "name": "detailLoading", + "value": false, + "sent": 2 } }, "recording": { @@ -301,12 +307,12 @@ }, "state": "a2e20872c3f2", "effects": [ - "7d341b2cb946", - "3b01c25bcd45", - "7d21147e56c1", - "078876b4148c", - "c051440f1f05", - "91a1c8142e23" + "9bd1de5d9753", + "9d6ce9f28401", + "56d172ecd2fe", + "11e204c49d13", + "501841dc050a", + "ee0c4638d266" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json b/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json index 4bf84a48ea3..5a2fb733f65 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "e6429c235d8c0b0376f71fea7b47c3b9ff22b850c92922b85ff993ae8b6cd6d0", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0358aa4ddd2c": { - "name": "itemAssignableUsers", - "value": [] + "14b04c3d1156": { + "name": "itemAssignableUsersLoading", + "value": true, + "sent": 1 }, "187a6bd82efe": { "labels": ["bug", "chore"], @@ -33,9 +34,10 @@ "usersError": "", "usersLoading": false }, - "226ea8e4b98b": { - "name": "itemAssignableUsersError", - "value": "" + "30554accaab5": { + "name": "itemAvailableLabels", + "value": ["bug", "chore"], + "sent": 2 }, "31a9aea0d54a": { "name": "github.listLabels#1", @@ -68,29 +70,29 @@ } } }, - "3b9ce19a0449": { + "3af8e2a236cf": { + "name": "itemAssignableUsersError", + "value": "", + "sent": 1 + }, + "4be2a2e21bd0": { "name": "itemBodyDraft", - "value": "body" - }, - "419cde8cf391": { - "name": "itemLabelsError", - "value": "" - }, - "50ab150a7632": { - "name": "itemAssignableUsersLoading", - "value": true + "value": "body", + "sent": 0 }, "594a2904a1bc": { "name": "github.listAssignableUsers#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "903a54a21708": { - "name": "itemAvailableLabels", - "value": ["bug", "chore"] + "60ab7459b747": { + "name": "itemLabelsLoading", + "value": true, + "sent": 0 }, - "a05b630b1ca2": { - "name": "itemAssignableUsersLoading", - "value": false + "763cfed9792e": { + "name": "itemAssignableUsers", + "value": [], + "sent": 1 }, "a268d5d92265": { "name": "github.listAssignableUsers#1", @@ -131,13 +133,23 @@ } } }, - "aa97d0d3a0e8": { - "name": "itemLabelsLoading", - "value": true + "a37497fa506c": { + "name": "itemAssignableUsers", + "value": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": "Octo" + } + ], + "sent": 2 }, - "b7f5069690eb": { - "name": "itemAvailableLabels", - "value": [] + "e4421084ff39": { + "name": "itemLabelsLoading", + "value": false, + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -151,21 +163,20 @@ "name": "github.listLabels#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "f9cadd6cfc38": { - "name": "itemAssignableUsers", - "value": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": "Octo" - } - ] + "f70626574f7a": { + "name": "itemAvailableLabels", + "value": [], + "sent": 0 }, - "fd6c595204e3": { - "name": "itemLabelsLoading", - "value": false + "f991510500df": { + "name": "itemAssignableUsersLoading", + "value": false, + "sent": 2 + }, + "fc060a38ddda": { + "name": "itemLabelsError", + "value": "", + "sent": 0 } }, "recording": { @@ -181,17 +192,17 @@ }, "state": "187a6bd82efe", "effects": [ - "3b9ce19a0449", - "b7f5069690eb", - "419cde8cf391", - "aa97d0d3a0e8", - "0358aa4ddd2c", - "226ea8e4b98b", - "50ab150a7632", - "903a54a21708", - "fd6c595204e3", - "f9cadd6cfc38", - "a05b630b1ca2" + "4be2a2e21bd0", + "f70626574f7a", + "fc060a38ddda", + "60ab7459b747", + "763cfed9792e", + "3af8e2a236cf", + "14b04c3d1156", + "30554accaab5", + "e4421084ff39", + "a37497fa506c", + "f991510500df" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json index 451fb862cd8..3be55ef3588 100644 --- a/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-merge-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "28d8dfb15fec1ecaaa1c675c9c8c0cdc196e184a6884625c44dfe1f0f9fc8e7e", "platform": "darwin", @@ -13,19 +13,22 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { + "32a3635e06a4": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 1 }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "ac9996319e05": { + "84465663f388": { "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "b6a6630b4d40": { "error": "", @@ -104,6 +107,11 @@ "name": "gitlab.mergeMR#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.mergeMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"method\":\"squash\",\"projectRef\":\"group/project\"}}" }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -111,10 +119,6 @@ "value": { "$rpc": "undefined" } - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false } }, "recording": { @@ -130,7 +134,7 @@ "merge-0": "eb79a9b3682a" }, "state": "b6a6630b4d40", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/tk-item-metadata-github.json b/mobile/rpc-foundation/goldens/tk-item-metadata-github.json index 336c991b86b..aa7a7269a57 100644 --- a/mobile/rpc-foundation/goldens/tk-item-metadata-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-metadata-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "010c65eaa056c5df0b867dd5b5851e206e8479e9fcce02515f1e326df4b8889c", "platform": "darwin", @@ -13,11 +13,110 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { + "32a3635e06a4": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 1 }, - "2449c436b115": { + "48545870a5c1": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "title": "Renamed", + "type": "pr" + }, + "title": "Renamed" + } + ], + "sent": 1 + }, + "7cb20f219688": { + "name": "github.updatePR#1", + "args": [ + { + "name": "method", + "value": "github.updatePR" + }, + { + "name": "params", + "value": { + "prNumber": 12, + "repo": "id:repo-1", + "updates": { + "body": "new body", + "title": "Renamed" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "a42cad5a2c3e": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [], + "state": "open", + "title": "Renamed", + "type": "pr" + }, + "title": "Renamed" + }, + "sent": 1 + }, + "b092bbd7362d": { + "name": "github.updatePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"title\":\"Renamed\",\"body\":\"new body\"}}}" + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "dbb0d797e4ab": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -63,97 +162,8 @@ "$rpc": "null" }, "reviewRequests": [] - } - }, - "3544ee07bd2a": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "title": "Renamed", - "type": "pr" - }, - "title": "Renamed" - } - ] - }, - "51904fd2b002": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [], - "state": "open", - "title": "Renamed", - "type": "pr" - }, - "title": "Renamed" - } - }, - "7cb20f219688": { - "name": "github.updatePR#1", - "args": [ - { - "name": "method", - "value": "github.updatePR" - }, - { - "name": "params", - "value": { - "prNumber": 12, - "repo": "id:repo-1", - "updates": { - "body": "new body", - "title": "Renamed" - } - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "b092bbd7362d": { - "name": "github.updatePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"title\":\"Renamed\",\"body\":\"new body\"}}}" + }, + "sent": 1 }, "e3fcde8cdbfe": { "error": "", @@ -249,10 +259,6 @@ "value": { "$rpc": "undefined" } - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false } }, "recording": { @@ -269,12 +275,12 @@ }, "state": "e3fcde8cdbfe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "51904fd2b002", - "3544ee07bd2a", - "2449c436b115", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "a42cad5a2c3e", + "48545870a5c1", + "dbb0d797e4ab", + "32a3635e06a4" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json index 4ccd1c0bd78..2baf383da3b 100644 --- a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json +++ b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "daa54da6cfb8d96c2a66c138beeaf70c764f96a60bdc84f2ff4cde80483cb365", "platform": "darwin", @@ -13,11 +13,60 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { + "32a3635e06a4": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 1 }, - "425f7f3148bb": { + "45b929e1b010": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "id": "gitlab:mr:7", + "labels": ["bug", "triage"], + "number": 7, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "title": "Renamed", + "type": "mr" + }, + "title": "Renamed" + } + ], + "sent": 1 + }, + "6d96b92fa8ac": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 1 + }, + "7089c563f99c": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 1 + }, + "820a09a5345c": { + "name": "actionItem", + "value": { + "provider": "gitlab", + "source": { + "id": "gitlab:mr:7", + "labels": ["bug", "triage"], + "number": 7, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "title": "Renamed", + "type": "mr" + }, + "title": "Renamed" + }, + "sent": 1 + }, + "9c5b9e7fae33": { "name": "detailPayload", "value": { "assignees": [], @@ -33,15 +82,13 @@ "labels": ["bug", "triage"], "pipelineJobs": [], "provider": "gitlab" - } + }, + "sent": 1 }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, - "82cd71d524c8": { + "9e263f5e91be": { "name": "error", - "value": "" + "value": "", + "sent": 0 }, "a62f6e435d85": { "name": "gitlab.updateMR#1", @@ -88,24 +135,10 @@ } } }, - "b1876f15febc": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "id": "gitlab:mr:7", - "labels": ["bug", "triage"], - "number": 7, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "title": "Renamed", - "type": "mr" - }, - "title": "Renamed" - } - ] + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, "d03b2863c41e": { "error": "", @@ -164,34 +197,9 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, "f2369a06d2a9": { "name": "gitlab.updateMR#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"projectRef\":\"group/project\",\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]}}}" - }, - "fbabfbaa4919": { - "name": "actionItem", - "value": { - "provider": "gitlab", - "source": { - "id": "gitlab:mr:7", - "labels": ["bug", "triage"], - "number": 7, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "title": "Renamed", - "type": "mr" - }, - "title": "Renamed" - } - }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" } }, "recording": { @@ -208,14 +216,14 @@ }, "state": "d03b2863c41e", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "fbabfbaa4919", - "b1876f15febc", - "425f7f3148bb", - "7781b68e4a2b", - "fca590f95bf2", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "820a09a5345c", + "45b929e1b010", + "9c5b9e7fae33", + "7089c563f99c", + "6d96b92fa8ac", + "32a3635e06a4" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json index 9c5dbdf3c9a..a74ca8e797e 100644 --- a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "4daf374f040e27836c154245d6a7fbad9ba3f6e6c0c9608218451286e4712d6b", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true + "03cbbf630f86": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 1 }, "06ebfa394e4c": { "error": "", @@ -105,7 +106,31 @@ } } }, - "425f7f3148bb": { + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, + "34df3a1f4f16": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 1 + }, + "5feb9fb600e8": { + "name": "gitlab.updateIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]},\"projectRef\":\"group/project\"}}" + }, + "6d96b92fa8ac": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 1 + }, + "7089c563f99c": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 1 + }, + "9c5b9e7fae33": { "name": "detailPayload", "value": { "assignees": [], @@ -121,38 +146,15 @@ "labels": ["bug", "triage"], "pipelineJobs": [], "provider": "gitlab" - } + }, + "sent": 1 }, - "5feb9fb600e8": { - "name": "gitlab.updateIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]},\"projectRef\":\"group/project\"}}" - }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, - "82cd71d524c8": { + "9e263f5e91be": { "name": "error", - "value": "" + "value": "", + "sent": 0 }, - "9943087b18c1": { - "name": "actionItem", - "value": { - "provider": "gitlab", - "source": { - "id": "gitlab:issue:4", - "labels": ["bug", "triage"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "title": "Renamed", - "type": "issue" - }, - "title": "Renamed" - } - }, - "ab926d66c720": { + "b27915db5c55": { "name": "items", "value": [ { @@ -169,15 +171,13 @@ }, "title": "Renamed" } - ] + ], + "sent": 1 }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" - }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -187,13 +187,23 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" + "ee3f2425c02b": { + "name": "actionItem", + "value": { + "provider": "gitlab", + "source": { + "id": "gitlab:issue:4", + "labels": ["bug", "triage"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "title": "Renamed", + "type": "issue" + }, + "title": "Renamed" + }, + "sent": 1 } }, "recording": { @@ -210,16 +220,16 @@ }, "state": "06ebfa394e4c", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "9943087b18c1", - "ab926d66c720", - "425f7f3148bb", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "ee3f2425c02b", + "b27915db5c55", + "9c5b9e7fae33", + "7089c563f99c", + "6d96b92fa8ac", + "34df3a1f4f16", + "03cbbf630f86", + "32a3635e06a4" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-reply-merge.json b/mobile/rpc-foundation/goldens/tk-item-reply-merge.json index 380faf7b32b..e893d9c2c5b 100644 --- a/mobile/rpc-foundation/goldens/tk-item-reply-merge.json +++ b/mobile/rpc-foundation/goldens/tk-item-reply-merge.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "b8e60092a29ea4944a891adc026444cc1da18c52221876f9e7c07b450b34cea8", "platform": "darwin", @@ -52,70 +52,19 @@ } } }, - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "08f1b4229a2c": { "name": "github.addIssueComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" }, - "0eeeeae9df15": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0c0d6ea592d5": { + "name": "mutatingStatus", + "value": false, + "sent": 3 }, "19e3a37362dc": { "error": "", @@ -217,15 +166,7 @@ "reviewRequests": [] } }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} - }, - "6bd857c36deb": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" - }, - "71a30d754356": { + "2b89f7945bce": { "name": "items", "value": [ { @@ -245,50 +186,34 @@ }, "title": "A pull request" } - ] - }, - "7df24cf10f99": { - "name": "linear.updateIssue#1", - "args": [ - { - "name": "method", - "value": "linear.updateIssue" - }, - { - "name": "params", - "value": { - "id": "issue-1", - "updates": { - "stateId": "state-2" - }, - "workspaceId": "linear-workspace" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-4", - "ok": true, - "result": { - "ok": true - } - } - } + "sent": 4 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "2f84f3228054": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 2 }, - "92083670ec3e": { + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, + "6bd857c36deb": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" + }, + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 + }, + "7bbc96cd8511": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -349,8 +274,63 @@ "$rpc": "null" }, "reviewRequests": [] + }, + "sent": 2 + }, + "7df24cf10f99": { + "name": "linear.updateIssue#1", + "args": [ + { + "name": "method", + "value": "linear.updateIssue" + }, + { + "name": "params", + "value": { + "id": "issue-1", + "updates": { + "stateId": "state-2" + }, + "workspaceId": "linear-workspace" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "ok": true + } + } } }, + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, + "8f08c9b94011": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 3 + }, "976ce137a1ed": { "name": "github.addIssueComment#1", "args": [ @@ -393,11 +373,10 @@ } } }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "ae78fb6dcf29": { "name": "github.addPRReviewCommentReply#1", @@ -447,15 +426,96 @@ } } }, + "b19de2486603": { + "name": "itemReplyDrafts", + "value": { + "comment-2": "a reply" + }, + "sent": 1 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, "b959a668e307": { "name": "linear.updateIssue#1", "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" }, - "c9ebd6cbea9b": { - "name": "itemReplyDrafts", + "bc3f6bcb8a5e": { + "name": "detailPayload", "value": { - "comment-2": "a reply" - } + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 1 + }, + "c22bc4151f3c": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 4 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d640b8e687fa": { "error": "", @@ -543,6 +603,11 @@ "reviewRequests": [] } }, + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 + }, "e079a4228dc8": { "error": "", "item": { @@ -644,10 +709,6 @@ "value": { "$rpc": "undefined" } - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false } }, "recording": { @@ -664,11 +725,11 @@ }, "state": "e079a4228dc8", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4" ] } }, @@ -684,16 +745,16 @@ }, "state": "19e3a37362dc", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf" ] } }, @@ -710,20 +771,20 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5" ] } }, @@ -741,25 +802,25 @@ }, "state": "d640b8e687fa", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "c9ebd6cbea9b", - "0eeeeae9df15", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "240fb5bf0f1e", - "92083670ec3e", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "71a30d754356", - "ac9996319e05", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "b19de2486603", + "bc3f6bcb8a5e", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "2f84f3228054", + "7bbc96cd8511", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "8f08c9b94011", + "0c0d6ea592d5", + "0be9101a1dfc", + "dbbebbd74a18", + "2b89f7945bce", + "c22bc4151f3c", + "70678ab6df9a" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-review-github.json b/mobile/rpc-foundation/goldens/tk-item-review-github.json index 4656be3af0c..62e474ea059 100644 --- a/mobile/rpc-foundation/goldens/tk-item-review-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-review-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-review-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "3ba358ff7b6a95d9158257225483f77578dfa10c8643cdf89f8a81e0022997e9", "platform": "darwin", @@ -13,15 +13,153 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, - "14b4d8a75758": { + "0879b3f9a393": { "name": "itemReviewersDraft", - "value": "" + "value": "", + "sent": 1 }, - "16f5ce87ddd2": { + "0de54b42541b": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 1 + }, + "1a20f26b6a0f": { + "name": "detailPayload", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, + "4fdc894b14c6": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}" + }, + "53b8bc3863fe": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" + }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, + "76563654aeaf": { + "name": "actionItem", + "value": { + "provider": "github", + "source": { + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + }, + "sent": 1 + }, + "83c824cc5deb": { "name": "detailPayload", "value": { "assignees": ["octocat"], @@ -84,51 +222,8 @@ } } ] - } - }, - "4fdc894b14c6": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}" - }, - "53b8bc3863fe": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, - "7e06162b52b9": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] - }, - "82cd71d524c8": { - "name": "error", - "value": "" + }, + "sent": 2 }, "889936f92195": { "draft": "a comment", @@ -232,6 +327,11 @@ ] } }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, "8e390a30a275": { "name": "github.prChecks#1", "args": [ @@ -273,7 +373,53 @@ } } }, - "9ffffb907226": { + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "aaec5330620b": { + "name": "items", + "value": [ + { + "provider": "github", + "source": { + "checksSummary": { + "failed": 0, + "neutral": 0, + "passed": 1, + "pending": 0, + "state": "success", + "total": 1 + }, + "id": "github:pr:12", + "labels": ["bug"], + "latestReviews": [], + "number": 12, + "repoId": "repo-1", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ], + "state": "open", + "type": "pr" + }, + "title": "A pull request" + } + ], + "sent": 2 + }, + "c52d84cfe1e5": { "name": "actionItem", "value": { "provider": "github", @@ -309,65 +455,8 @@ "type": "pr" }, "title": "A pull request" - } - }, - "aa12c46da553": { - "name": "detailPayload", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } + }, + "sent": 2 }, "c6919e95e93b": { "draft": "a comment", @@ -456,6 +545,16 @@ ] } }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, "d4d38f1bf018": { "name": "github.requestPRReviewers#1", "args": [ @@ -491,76 +590,6 @@ } } }, - "dbf1942a661e": { - "name": "items", - "value": [ - { - "provider": "github", - "source": { - "checksSummary": { - "failed": 0, - "neutral": 0, - "passed": 1, - "pending": 0, - "state": "success", - "total": 1 - }, - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - ] - }, - "e58082bfe89c": { - "name": "actionItem", - "value": { - "provider": "github", - "source": { - "id": "github:pr:12", - "labels": ["bug"], - "latestReviews": [], - "number": 12, - "repoId": "repo-1", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ], - "state": "open", - "type": "pr" - }, - "title": "A pull request" - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -568,10 +597,6 @@ "value": { "$rpc": "undefined" } - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false } }, "recording": { @@ -588,13 +613,13 @@ }, "state": "c6919e95e93b", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4" ] } }, @@ -610,19 +635,19 @@ }, "state": "889936f92195", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "e58082bfe89c", - "7e06162b52b9", - "aa12c46da553", - "14b4d8a75758", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "16f5ce87ddd2", - "9ffffb907226", - "dbf1942a661e", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "76563654aeaf", + "0de54b42541b", + "1a20f26b6a0f", + "0879b3f9a393", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "83c824cc5deb", + "c52d84cfe1e5", + "aaec5330620b", + "8cde53a56cdf" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json b/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json index 2fb863cdf9e..f66563b5d55 100644 --- a/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json +++ b/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "5de4936aed0efd0d8bd5bc5ce893d561f6bc3d0fdf4a76c9e33e7cbefd6ec362", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "1380dafff177": { "name": "gitlab.updateMRState#1", "args": [ @@ -53,15 +49,22 @@ } } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 }, - "ac9996319e05": { + "84465663f388": { "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 1 + }, + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, "b6a6630b4d40": { "error": "", @@ -104,6 +107,11 @@ "name": "gitlab.updateMRState#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMRState\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"state\":\"closed\",\"projectRef\":\"group/project\"}}" }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -111,10 +119,6 @@ "value": { "$rpc": "undefined" } - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false } }, "recording": { @@ -130,7 +134,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "b6a6630b4d40", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } } ] diff --git a/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json index 467e5e73681..6f4e5de83dc 100644 --- a/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "85414544a9e8570567770b43e6bf5cfcc406c9b9b4ffed3a4ff0c8187beb7549", "platform": "darwin", @@ -13,22 +13,34 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { - "name": "mutatingStatus", - "value": true - }, "132591a733d1": { "name": "gitlab.updateIssue#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}" }, + "13b233a5bc5a": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 2 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, + "3c6c54110c00": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 2 + }, + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 + }, "71cb3feddd6c": { "name": "github.updateIssue#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}" }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, "779cb33e2c39": { "name": "gitlab.updateIssue#1", "args": [ @@ -67,9 +79,65 @@ } } }, - "82cd71d524c8": { + "7ff9a871c9b4": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 2 + }, + "84465663f388": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "893c7ff30ddf": { + "name": "items", + "value": [ + { + "provider": "gitlab", + "source": { + "id": "gitlab:issue:4", + "labels": ["bug"], + "number": 4, + "projectRef": "group/project", + "repoId": "repo-1", + "state": "opened", + "type": "issue" + }, + "title": "A GitLab issue" + } + ], + "sent": 2 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 + }, + "9999466f95f3": { + "name": "detailPayload", + "value": { + "assignees": [], + "body": "body", + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "labels": ["bug"], + "pipelineJobs": [], + "provider": "gitlab" + }, + "sent": 2 + }, + "9e263f5e91be": { "name": "error", - "value": "" + "value": "", + "sent": 0 }, "9fb1b1ad3675": { "name": "github.updateIssue#1", @@ -110,33 +178,22 @@ } } }, - "ac9996319e05": { + "b3786fd78eba": { "name": "actionItem", "value": { "$rpc": "null" - } + }, + "sent": 2 }, - "ce0c6ff56cf0": { - "name": "detailPayload", - "value": { - "assignees": [], - "body": "body", - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "labels": ["bug"], - "pipelineJobs": [], - "provider": "gitlab" - } + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d9d32e421d46": { "error": "", @@ -175,28 +232,6 @@ "provider": "gitlab" } }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" - }, - "e1e995a34822": { - "name": "items", - "value": [ - { - "provider": "gitlab", - "source": { - "id": "gitlab:issue:4", - "labels": ["bug"], - "number": 4, - "projectRef": "group/project", - "repoId": "repo-1", - "state": "opened", - "type": "issue" - }, - "title": "A GitLab issue" - } - ] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -205,13 +240,10 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" + "ec6aee3704e2": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 2 } }, "recording": { @@ -227,7 +259,7 @@ "gitlab-status-0": "eb79a9b3682a" }, "state": "d9d32e421d46", - "effects": ["066ce15717c8", "82cd71d524c8", "ac9996319e05", "f02550278f6a"] + "effects": ["cc96725d8f47", "9e263f5e91be", "84465663f388", "32a3635e06a4"] } }, { @@ -242,20 +274,20 @@ }, "state": "d9d32e421d46", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "e1e995a34822", - "ce0c6ff56cf0", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "84465663f388", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "b3786fd78eba", + "893c7ff30ddf", + "9999466f95f3", + "7ff9a871c9b4", + "3c6c54110c00", + "ec6aee3704e2", + "13b233a5bc5a", + "8cde53a56cdf" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-linear-connect.json b/mobile/rpc-foundation/goldens/tk-linear-connect.json index 8c78ed36143..37885e6323d 100644 --- a/mobile/rpc-foundation/goldens/tk-linear-connect.json +++ b/mobile/rpc-foundation/goldens/tk-linear-connect.json @@ -3,9 +3,9 @@ "family": "tasks.linear-connect", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "d1bd7ad9b647a50403953ba01d3a4bcccc5f4020c2aefa6146cca8c7688612c1", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002ad269dd44": { - "name": "showLinearConnect", - "value": false + "0c51558ed744": { + "name": "provider", + "value": "linear", + "sent": 1 }, "2f8d5603d8c0": { "connected": true, @@ -24,21 +25,25 @@ "providers": ["github", "linear"], "state": "idle" }, - "3f0218e5abc6": { + "4870152af5d4": { "name": "linearConnectState", - "value": "idle" + "value": "connecting", + "sent": 0 }, - "50941ff8a9e3": { + "69d74e72326c": { "name": "linearConnected", - "value": true + "value": true, + "sent": 1 }, - "5def091042f5": { + "9ea73b6d4ce4": { "name": "linearConnectError", - "value": "" + "value": "", + "sent": 0 }, - "7c00a7dd4850": { + "b314de624efa": { "name": "linearApiKeyDraft", - "value": "" + "value": "", + "sent": 1 }, "b7f1fad8d45f": { "name": "linear.connect#1", @@ -73,18 +78,10 @@ } } }, - "b9e578e85f05": { - "name": "provider", - "value": "linear" - }, "dae705f55c7f": { "name": "linear.connect#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.connect\",\"params\":{\"apiKey\":\"lin_api_key\"}}" }, - "eafaa34ddedb": { - "name": "visibleProviders", - "value": ["github", "linear"] - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -93,9 +90,20 @@ "$rpc": "undefined" } }, - "fb8120f6d4d3": { + "f06f609ce6b4": { "name": "linearConnectState", - "value": "connecting" + "value": "idle", + "sent": 1 + }, + "f4cec40b7d42": { + "name": "visibleProviders", + "value": ["github", "linear"], + "sent": 1 + }, + "fe581ce5541b": { + "name": "showLinearConnect", + "value": false, + "sent": 1 } }, "recording": { @@ -112,14 +120,14 @@ }, "state": "2f8d5603d8c0", "effects": [ - "fb8120f6d4d3", - "5def091042f5", - "7c00a7dd4850", - "3f0218e5abc6", - "002ad269dd44", - "50941ff8a9e3", - "eafaa34ddedb", - "b9e578e85f05" + "4870152af5d4", + "9ea73b6d4ce4", + "b314de624efa", + "f06f609ce6b4", + "fe581ce5541b", + "69d74e72326c", + "f4cec40b7d42", + "0c51558ed744" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-linear-item.json b/mobile/rpc-foundation/goldens/tk-linear-item.json index 02149654173..7ddf6c16337 100644 --- a/mobile/rpc-foundation/goldens/tk-linear-item.json +++ b/mobile/rpc-foundation/goldens/tk-linear-item.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "354eaff5243b3aae774c375aa303548d82c4db106a89ada39907d6654fa549b3", "platform": "darwin", @@ -13,51 +13,20 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "066ce15717c8": { + "0c0d6ea592d5": { "name": "mutatingStatus", - "value": true + "value": false, + "sent": 3 }, - "127382fd146b": { - "name": "actionItem", - "value": { - "key": "linear:linear-workspace:issue-2", - "provider": "linear", - "source": { - "description": "a description", - "id": "issue-2", - "identifier": "ENG-2", - "labels": [], - "priority": 0, - "state": { - "color": "#000", - "name": "Todo", - "type": "unstarted" - }, - "subIssues": [], - "team": { - "id": "team-1", - "key": "ENG", - "name": "Engineering" - }, - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z", - "url": "", - "workspaceId": "linear-workspace" - }, - "status": "Todo", - "subtitle": "ENG-2 · Engineering", - "title": "A sub-issue", - "updatedAt": "2020-01-01T00:00:00.000Z" - } + "12b9ca6d3411": { + "name": "linearCommentDraft", + "value": "", + "sent": 1 }, "252af9581c95": { "name": "linear.addIssueComment#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}" }, - "2b3e1c8e96c4": { - "name": "linearSubIssueTitle", - "value": "" - }, "2c8f51509f45": { "name": "linear.getIssue#1", "args": [ @@ -111,6 +80,16 @@ } } }, + "310aa929de22": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 3 + }, + "32a3635e06a4": { + "name": "mutatingStatus", + "value": false, + "sent": 1 + }, "48107958be60": { "error": "", "item": { @@ -174,6 +153,39 @@ "provider": "linear" } }, + "4b870cf7c216": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "title": "A sub-issue", + "url": "" + } + ], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 3 + }, "4c69e7210f1a": { "name": "linear.addIssueComment#1", "args": [ @@ -214,30 +226,10 @@ "name": "linear.getIssue#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" }, - "6eb786a2e054": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } + "583b546bd557": { + "name": "mutatingStatus", + "value": true, + "sent": 1 }, "6fbb2167a2a8": { "name": "linear.createIssue#1", @@ -299,9 +291,15 @@ "provider": "linear" } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "82983d26b169": { + "name": "mutatingStatus", + "value": true, + "sent": 2 + }, + "8cde53a56cdf": { + "name": "mutatingStatus", + "value": false, + "sent": 2 }, "910853564928": { "name": "linear.createIssue#1", @@ -346,9 +344,85 @@ } } }, - "bb911bff1d1d": { - "name": "linearCommentDraft", - "value": "" + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "abeee718b4b5": { + "name": "detailPayload", + "value": { + "assignee": { + "$rpc": "undefined" + }, + "children": [], + "comments": [ + { + "body": "a linear comment", + "createdAt": "2026-01-01T00:00:00.000Z", + "id": "comment-9", + "user": { + "displayName": "You" + } + } + ], + "description": "description", + "labels": [], + "project": { + "$rpc": "null" + }, + "provider": "linear" + }, + "sent": 1 + }, + "b57ded8a3ea3": { + "name": "error", + "value": "", + "sent": 2 + }, + "cc96725d8f47": { + "name": "mutatingStatus", + "value": true, + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "db29b57926b1": { + "name": "actionItem", + "value": { + "key": "linear:linear-workspace:issue-2", + "provider": "linear", + "source": { + "description": "a description", + "id": "issue-2", + "identifier": "ENG-2", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "subIssues": [], + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + }, + "status": "Todo", + "subtitle": "ENG-2 · Engineering", + "title": "A sub-issue", + "updatedAt": "2020-01-01T00:00:00.000Z" + }, + "sent": 2 }, "dcb5a0348220": { "error": "", @@ -413,42 +487,6 @@ "value": { "$rpc": "undefined" } - }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false - }, - "f450feb912ee": { - "name": "detailPayload", - "value": { - "assignee": { - "$rpc": "undefined" - }, - "children": [ - { - "id": "issue-3", - "identifier": "ENG-3", - "title": "A sub-issue", - "url": "" - } - ], - "comments": [ - { - "body": "a linear comment", - "createdAt": "2026-01-01T00:00:00.000Z", - "id": "comment-9", - "user": { - "displayName": "You" - } - } - ], - "description": "description", - "labels": [], - "project": { - "$rpc": "null" - }, - "provider": "linear" - } } }, "recording": { @@ -465,11 +503,11 @@ }, "state": "dcb5a0348220", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4" ] } }, @@ -485,15 +523,15 @@ }, "state": "7c14fba8a1fe", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf" ] } }, @@ -510,20 +548,20 @@ }, "state": "48107958be60", "effects": [ - "066ce15717c8", - "82cd71d524c8", - "bb911bff1d1d", - "6eb786a2e054", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "127382fd146b", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "2b3e1c8e96c4", - "f450feb912ee", - "f02550278f6a" + "cc96725d8f47", + "9e263f5e91be", + "12b9ca6d3411", + "abeee718b4b5", + "32a3635e06a4", + "583b546bd557", + "d48d5c49486c", + "db29b57926b1", + "8cde53a56cdf", + "82983d26b169", + "b57ded8a3ea3", + "310aa929de22", + "4b870cf7c216", + "0c0d6ea592d5" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-linear-team-context.json b/mobile/rpc-foundation/goldens/tk-linear-team-context.json index eb16507a557..152b7754eee 100644 --- a/mobile/rpc-foundation/goldens/tk-linear-team-context.json +++ b/mobile/rpc-foundation/goldens/tk-linear-team-context.json @@ -3,9 +3,9 @@ "family": "tasks.linear-team-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "524c2421e61d663dd1344a47ab0552c3bb029ad09e0b6271eac91f1548e8265c", "platform": "darwin", @@ -13,37 +13,65 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0b5df189257b": { - "name": "linearStatesLoading", - "value": false + "049372f27933": { + "name": "prFileContents", + "value": {}, + "sent": 0 }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } + "04c5528024be": { + "name": "itemRemoveLabelsDraft", + "value": "", + "sent": 0 }, - "0e8a09cebbc5": { - "name": "itemTitleDraft", - "value": "" + "065c82e2c558": { + "name": "linearStates", + "value": [ + { + "color": "#000000", + "id": "state-1", + "name": "Todo", + "type": "unstarted" + } + ], + "sent": 2 }, - "1057be813592": { - "name": "expandedPrFilePath", - "value": { - "$rpc": "null" - } - }, - "14b4d8a75758": { - "name": "itemReviewersDraft", - "value": "" + "12b9ca6d3411": { + "name": "linearCommentDraft", + "value": "", + "sent": 1 }, "18a1433d8d21": { "name": "linear.listTeams#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}" }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} + "1d9a37f58a33": { + "name": "creatingTask", + "value": false, + "sent": 0 + }, + "1e04ae13b692": { + "name": "expandedPrFilePath", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "217c9076cb62": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 0 + }, + "2a36cc18a7da": { + "name": "linearTeams", + "value": [ + { + "id": "team-1", + "key": "ENG", + "name": "Engineering", + "workspaceId": "linear-workspace" + } + ], + "sent": 1 }, "2afc4b1311c1": { "createTeamId": "team-1", @@ -58,19 +86,17 @@ } ] }, - "2b3e1c8e96c4": { - "name": "linearSubIssueTitle", - "value": "" - }, - "363a2b217fd4": { - "name": "createTeamId", + "4331036690d4": { + "name": "prFileLoadingPath", "value": { "$rpc": "null" - } + }, + "sent": 0 }, - "4a66cf72bc8f": { - "name": "creatingTask", - "value": false + "43a64d0d0bdb": { + "name": "expandedResolvedCommentGroups", + "value": [], + "sent": 0 }, "4f71189f4e00": { "name": "linear.listTeams#1", @@ -110,51 +136,35 @@ } } }, - "5c4127bd18a3": { + "74bc5ac6d229": { + "name": "itemAddAssigneesDraft", + "value": "", + "sent": 0 + }, + "797d29171de4": { + "name": "linearCommentDraft", + "value": "", + "sent": 0 + }, + "7c6439d32d4d": { "name": "linearStates", - "value": [ - { - "color": "#000000", - "id": "state-1", - "name": "Todo", - "type": "unstarted" - } - ] + "value": [], + "sent": 0 }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} + "81a32c2b3439": { + "name": "linearStatesLoading", + "value": false, + "sent": 2 }, - "6918d0b7aab9": { - "name": "prFileContents", - "value": {} + "84591a5e606b": { + "name": "itemRemoveAssigneesDraft", + "value": "", + "sent": 0 }, - "7781b68e4a2b": { - "name": "itemAddLabelsDraft", - "value": "" - }, - "7daffda604f3": { - "name": "itemBodyDraft", - "value": "" - }, - "89bbb50f70ec": { - "name": "linearTeams", - "value": [ - { - "id": "team-1", - "key": "ENG", - "name": "Engineering", - "workspaceId": "linear-workspace" - } - ] - }, - "8dd6641d7404": { - "name": "expandedResolvedCommentGroups", - "value": [] - }, - "915391e8b8c8": { - "name": "linearStates", - "value": [] + "8a45c17cd319": { + "name": "itemTitleDraft", + "value": "", + "sent": 0 }, "9385340ebcd4": { "name": "linear.teamStates#1", @@ -195,9 +205,17 @@ } } }, - "a36b80f7b048": { - "name": "itemCommentDraft", - "value": "" + "9d800127c719": { + "name": "createTeamId", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "b50e582f1f87": { + "name": "itemBodyDraft", + "value": "", + "sent": 0 }, "b6bf81e9e237": { "createTeamId": "team-1", @@ -219,26 +237,50 @@ } ] }, - "bb911bff1d1d": { - "name": "linearCommentDraft", - "value": "" - }, - "d2f3c0ccfef8": { - "name": "itemRemoveAssigneesDraft", - "value": "" - }, - "dadd4b06e486": { - "name": "itemAddAssigneesDraft", - "value": "" - }, - "dfef31016418": { + "c9f74e6a8f4b": { "name": "linearStatesLoading", - "value": true + "value": true, + "sent": 1 + }, + "cb7025a10156": { + "name": "itemReviewersDraft", + "value": "", + "sent": 0 + }, + "cbbd99961d9a": { + "name": "itemCommentDraft", + "value": "", + "sent": 0 + }, + "cda0a9e3231b": { + "name": "itemAddLabelsDraft", + "value": "", + "sent": 0 + }, + "ce991ff5560d": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 0 + }, + "ded8ff628165": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 0 + }, + "df9cbe753bae": { + "name": "linearSubIssueTitle", + "value": "", + "sent": 1 }, "e132489d2d57": { "name": "linear.teamStates#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}" }, + "e483917577a8": { + "name": "createTeamId", + "value": "team-1", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -246,14 +288,6 @@ "value": { "$rpc": "undefined" } - }, - "fca590f95bf2": { - "name": "itemRemoveLabelsDraft", - "value": "" - }, - "fe8218a04fd9": { - "name": "createTeamId", - "value": "team-1" } }, "recording": { @@ -270,27 +304,27 @@ }, "state": "2afc4b1311c1", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8" ] } }, @@ -306,32 +340,32 @@ }, "state": "b6bf81e9e237", "effects": [ - "915391e8b8c8", - "bb911bff1d1d", - "2b3e1c8e96c4", - "0e8a09cebbc5", - "7daffda604f3", - "a36b80f7b048", - "7781b68e4a2b", - "fca590f95bf2", - "dadd4b06e486", - "d2f3c0ccfef8", - "14b4d8a75758", - "240fb5bf0f1e", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "8dd6641d7404", - "4a66cf72bc8f", - "363a2b217fd4", - "89bbb50f70ec", - "fe8218a04fd9", - "dfef31016418", - "bb911bff1d1d", - "2b3e1c8e96c4", - "5c4127bd18a3", - "0b5df189257b" + "7c6439d32d4d", + "797d29171de4", + "217c9076cb62", + "8a45c17cd319", + "b50e582f1f87", + "cbbd99961d9a", + "cda0a9e3231b", + "04c5528024be", + "74bc5ac6d229", + "84591a5e606b", + "cb7025a10156", + "ded8ff628165", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "43a64d0d0bdb", + "1d9a37f58a33", + "9d800127c719", + "2a36cc18a7da", + "e483917577a8", + "c9f74e6a8f4b", + "12b9ca6d3411", + "df9cbe753bae", + "065c82e2c558", + "81a32c2b3439" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json b/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json index a1e4860fd53..3d0fb348e94 100644 --- a/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json +++ b/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-items", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "9b26b8f112021fe65c156b7d4067071551bcdab44a5858f8a933f7ace66e6f80", "platform": "darwin", @@ -13,6 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0d5d9243a0de": { + "name": "loading", + "value": false, + "sent": 1 + }, + "113ccfa73078": { + "name": "refreshing", + "value": false, + "sent": 1 + }, "1aa0fd318b4d": { "name": "gitlab.listWorkItems#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50}}" @@ -47,15 +57,7 @@ "loading": false, "refreshing": false }, - "2e036e81354d": { - "name": "loading", - "value": true - }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "9a4d6bf316ca": { + "6376c568d60e": { "name": "items", "value": [ { @@ -81,15 +83,23 @@ "title": "A GitLab issue", "updatedAt": "2020-01-01T00:00:00.000Z" } - ] + ], + "sent": 1 }, - "9fd1c1fdaba4": { + "840a8ad61602": { "name": "loading", - "value": false + "value": true, + "sent": 0 }, - "b8cb056c2851": { - "name": "refreshing", - "value": false + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 }, "d619074f1bad": { "name": "gitlab.listWorkItems#1", @@ -167,12 +177,12 @@ }, "state": "2af5bdc42011", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "9a4d6bf316ca", - "82cd71d524c8", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "6376c568d60e", + "d48d5c49486c", + "0d5d9243a0de", + "113ccfa73078" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json b/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json index a189efb3027..be2bc2d100d 100644 --- a/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json +++ b/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-todos", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a9e791f56e991e822b2a9f55db22eabbc39ad36ed669c87b6866ba7fe8eea24a", "platform": "darwin", @@ -13,6 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0d5d9243a0de": { + "name": "loading", + "value": false, + "sent": 1 + }, + "113ccfa73078": { + "name": "refreshing", + "value": false, + "sent": 1 + }, "18d425aa3cf4": { "name": "gitlab.todos#1", "args": [ @@ -57,29 +67,29 @@ } } }, - "2e036e81354d": { - "name": "loading", - "value": true - }, "7dc14a940033": { "name": "gitlab.todos#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.todos\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "82cd71d524c8": { - "name": "error", - "value": "" - }, - "8936cd17eb1c": { - "name": "items", - "value": [] - }, - "9fd1c1fdaba4": { + "840a8ad61602": { "name": "loading", - "value": false + "value": true, + "sent": 0 }, - "b8cb056c2851": { - "name": "refreshing", - "value": false + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 + }, + "d42aae748963": { + "name": "error", + "value": "Cannot read properties of undefined (reading 'replace')", + "sent": 1 + }, + "e14451e7d576": { + "name": "items", + "value": [], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -89,10 +99,6 @@ "$rpc": "undefined" } }, - "f70e6aaf0d8e": { - "name": "error", - "value": "Cannot read properties of undefined (reading 'replace')" - }, "f7da7040be7b": { "error": "Cannot read properties of undefined (reading 'replace')", "items": [], @@ -114,12 +120,12 @@ }, "state": "f7da7040be7b", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "8936cd17eb1c", - "f70e6aaf0d8e", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e14451e7d576", + "d42aae748963", + "0d5d9243a0de", + "113ccfa73078" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-list-linear.json b/mobile/rpc-foundation/goldens/tk-list-linear.json index 7754ee52324..f7cbd4db2e6 100644 --- a/mobile/rpc-foundation/goldens/tk-list-linear.json +++ b/mobile/rpc-foundation/goldens/tk-list-linear.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "216ddbf8cb71481d179563d8b033d7dc6cd71bface049e83073b977909776fc9", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2e036e81354d": { + "0d5d9243a0de": { "name": "loading", - "value": true + "value": false, + "sent": 1 + }, + "113ccfa73078": { + "name": "refreshing", + "value": false, + "sent": 1 }, "3edde845aed1": { "error": "", @@ -112,7 +118,12 @@ "name": "linear.listIssues#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" }, - "8080efdd19df": { + "6143a28f5226": { + "name": "loading", + "value": true, + "sent": 1 + }, + "6fafebd34f71": { "name": "items", "value": [ { @@ -144,11 +155,13 @@ "title": "A found issue", "updatedAt": "2020-01-01T00:00:00.000Z" } - ] + ], + "sent": 2 }, - "82cd71d524c8": { - "name": "error", - "value": "" + "840a8ad61602": { + "name": "loading", + "value": true, + "sent": 0 }, "86aeb72f48eb": { "name": "linear.listIssues#1", @@ -211,6 +224,11 @@ "name": "linear.searchIssues#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" }, + "92c28468d7be": { + "name": "refreshing", + "value": false, + "sent": 2 + }, "94f44b229d7d": { "error": "", "items": [ @@ -247,11 +265,22 @@ "loading": false, "refreshing": false }, - "9fd1c1fdaba4": { - "name": "loading", - "value": false + "9e263f5e91be": { + "name": "error", + "value": "", + "sent": 0 }, - "a807b2cced19": { + "c9db7514f5c5": { + "name": "loading", + "value": false, + "sent": 2 + }, + "d48d5c49486c": { + "name": "error", + "value": "", + "sent": 1 + }, + "e1bd9a521877": { "name": "items", "value": [ { @@ -283,11 +312,8 @@ "title": "A Linear issue", "updatedAt": "2020-01-01T00:00:00.000Z" } - ] - }, - "b8cb056c2851": { - "name": "refreshing", - "value": false + ], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -312,11 +338,11 @@ }, "state": "94f44b229d7d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -332,11 +358,11 @@ }, "state": "94f44b229d7d", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078" ] } }, @@ -353,16 +379,16 @@ }, "state": "3edde845aed1", "effects": [ - "82cd71d524c8", - "2e036e81354d", - "a807b2cced19", - "9fd1c1fdaba4", - "b8cb056c2851", - "82cd71d524c8", - "2e036e81354d", - "8080efdd19df", - "9fd1c1fdaba4", - "b8cb056c2851" + "9e263f5e91be", + "840a8ad61602", + "e1bd9a521877", + "0d5d9243a0de", + "113ccfa73078", + "d48d5c49486c", + "6143a28f5226", + "6fafebd34f71", + "c9db7514f5c5", + "92c28468d7be" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-board-load.json b/mobile/rpc-foundation/goldens/tk-project-board-load.json index e71ea44fafb..93e71682a07 100644 --- a/mobile/rpc-foundation/goldens/tk-project-board-load.json +++ b/mobile/rpc-foundation/goldens/tk-project-board-load.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7840e811e81d3645f1c874b871158202a53432989f3b5c849df12550b082813b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02310a132254": { - "name": "githubProjectPartialFailures", - "value": [] - }, "02a4a58d8dfb": { "name": "github.project.listViews#2", "args": [ @@ -61,10 +57,6 @@ } } }, - "03a767961869": { - "name": "githubProjectLoading", - "value": true - }, "09d1a467c534": { "name": "github.project.listViews#1", "args": [ @@ -113,23 +105,24 @@ "name": "github.project.listViews#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, - "11b132a242c1": { - "name": "githubProjectTable", - "value": { - "$rpc": "null" - } + "156064e9724d": { + "name": "githubProjectPasteBusy", + "value": true, + "sent": 3 }, - "1296da8e044e": { + "16712ed539ad": { "name": "githubProjectSearch", - "value": "" + "value": "", + "sent": 5 }, "1d3552e91192": { "name": "github.project.listAccessible#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" }, - "27ed3970f7fb": { - "name": "githubProjectPasteBusy", - "value": true + "25b0ac550549": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 1 }, "2ab1b35ff194": { "error": "", @@ -169,9 +162,10 @@ } ] }, - "2ae6c4fc165d": { + "32b1426d14c0": { "name": "githubProjectLoading", - "value": false + "value": false, + "sent": 3 }, "376c9e8bd72a": { "error": "", @@ -198,6 +192,11 @@ } ] }, + "383da1c2fa1c": { + "name": "githubProjectLoading", + "value": true, + "sent": 4 + }, "39bc2fd66e3d": { "name": "github.project.viewTable#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" @@ -206,6 +205,11 @@ "name": "github.project.listViews#2", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" }, + "42d96f8f44ae": { + "name": "githubProjectError", + "value": "", + "sent": 3 + }, "43d044e8caea": { "name": "github.project.listAccessible#1", "args": [ @@ -249,7 +253,60 @@ } } }, - "520e0f81bc2a": { + "47ebe03e8b7f": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 5 + }, + "4d6bf1149ea4": { + "name": "githubProjectError", + "value": "", + "sent": 4 + }, + "54b9c49c04a8": { + "name": "githubProjectError", + "value": "", + "sent": 0 + }, + "57acdd86193b": { + "name": "githubProjectSearch", + "value": "is:open", + "sent": 3 + }, + "5bd0110906b9": { + "name": "githubProjectPartialFailures", + "value": [], + "sent": 0 + }, + "6579ec5a7d8f": { + "name": "githubProjectLoading", + "value": false, + "sent": 5 + }, + "6820b76533c9": { + "name": "githubProjectLoading", + "value": true, + "sent": 2 + }, + "6e64e24c633d": { + "name": "appliedGithubProjectSearch", + "value": { + "$rpc": "undefined" + }, + "sent": 5 + }, + "6f73e51854d5": { + "name": "github.project.resolveRef#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" + }, + "80ceb7c32703": { "name": "githubProjects", "value": [ { @@ -259,28 +316,20 @@ "ownerType": "organization", "title": "Board" } - ] + ], + "sent": 1 }, - "54ea0f0a1191": { - "name": "githubProjectTable", - "value": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } + "900becffe437": { + "name": "showGitHubProjectPicker", + "value": false, + "sent": 4 }, - "560b9ae7cb02": { + "b05e50b1dc22": { + "name": "githubProjectPasteBusy", + "value": false, + "sent": 5 + }, + "b2ddd7451862": { "name": "githubProjectViews", "value": [ { @@ -289,21 +338,20 @@ "name": "Table", "number": 1 } - ] + ], + "sent": 2 }, - "6f73e51854d5": { - "name": "github.project.resolveRef#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" - }, - "abd075971f7c": { - "name": "githubProjectPasteError", - "value": "" - }, - "b14931fed627": { - "name": "appliedGithubProjectSearch", - "value": { - "$rpc": "undefined" - } + "b6255b367ac4": { + "name": "githubProjectViews", + "value": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ], + "sent": 3 }, "be0da5b53ffb": { "status": "fulfilled", @@ -358,9 +406,12 @@ } } }, - "dbe747c32c99": { - "name": "githubProjectError", - "value": "" + "ddc3cac1e389": { + "name": "githubProjectTable", + "value": { + "$rpc": "null" + }, + "sent": 5 }, "dec0f3dc00c9": { "name": "github.project.viewTable#1", @@ -415,17 +466,15 @@ } } }, - "e32cd29f23cb": { + "e59d16f6cde5": { + "name": "githubProjectPasteError", + "value": "", + "sent": 3 + }, + "e8b0899e8eb2": { "name": "githubProjectPasteInput", - "value": "" - }, - "e42224cf3520": { - "name": "githubProjectSearch", - "value": "is:open" - }, - "e542d7c9af9f": { - "name": "showGitHubProjectPicker", - "value": false + "value": "", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -435,9 +484,30 @@ "$rpc": "undefined" } }, - "fe4574f4cf7a": { - "name": "githubProjectPasteBusy", - "value": false + "ebf1d6b98d33": { + "name": "githubProjectTable", + "value": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 + }, + "f3e4bb3c6cb0": { + "name": "githubProjectError", + "value": "", + "sent": 2 }, "ff43b5ec92a9": { "error": "", @@ -471,7 +541,7 @@ "projects-0": "eb79a9b3682a" }, "state": "ff43b5ec92a9", - "effects": ["dbe747c32c99", "02310a132254", "520e0f81bc2a", "02310a132254"] + "effects": ["54b9c49c04a8", "5bd0110906b9", "80ceb7c32703", "25b0ac550549"] } }, { @@ -486,11 +556,11 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862" ] } }, @@ -507,17 +577,17 @@ }, "state": "2ab1b35ff194", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0" ] } }, @@ -547,30 +617,30 @@ }, "state": "376c9e8bd72a", "effects": [ - "dbe747c32c99", - "02310a132254", - "520e0f81bc2a", - "02310a132254", - "560b9ae7cb02", - "03a767961869", - "dbe747c32c99", - "54ea0f0a1191", - "e42224cf3520", - "560b9ae7cb02", - "2ae6c4fc165d", - "27ed3970f7fb", - "abd075971f7c", - "dbe747c32c99", - "e32cd29f23cb", - "e542d7c9af9f", - "03a767961869", - "dbe747c32c99", - "560b9ae7cb02", - "b14931fed627", - "1296da8e044e", - "11b132a242c1", - "2ae6c4fc165d", - "fe4574f4cf7a" + "54b9c49c04a8", + "5bd0110906b9", + "80ceb7c32703", + "25b0ac550549", + "b2ddd7451862", + "6820b76533c9", + "f3e4bb3c6cb0", + "ebf1d6b98d33", + "57acdd86193b", + "b6255b367ac4", + "32b1426d14c0", + "156064e9724d", + "e59d16f6cde5", + "42d96f8f44ae", + "e8b0899e8eb2", + "900becffe437", + "383da1c2fa1c", + "4d6bf1149ea4", + "47ebe03e8b7f", + "6e64e24c633d", + "16712ed539ad", + "ddc3cac1e389", + "6579ec5a7d8f", + "b05e50b1dc22" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json b/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json index 59d4ddf6b05..792b673f107 100644 --- a/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json +++ b/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json @@ -3,9 +3,9 @@ "family": "tasks.project-repo-slugs", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "a83d5768892764af2dd6866f03d51c09aef63d1c5d3e0645bd5e1c16454b201f", "platform": "darwin", @@ -52,7 +52,7 @@ "name": "github.repoSlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "a21757eb73fd": { + "a357afc033aa": { "name": "githubRepoSlugCache", "value": { "repo-1": { @@ -63,7 +63,8 @@ "repo": "repo" } } - } + }, + "sent": 1 }, "bdec8bbb3c04": { "cache": { @@ -98,7 +99,7 @@ "mount": "eb79a9b3682a" }, "state": "bdec8bbb3c04", - "effects": ["a21757eb73fd"] + "effects": ["a357afc033aa"] } } ] diff --git a/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json b/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json index 35f5e0455b0..5c3e3eb9854 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "6f1bfb05a9df6482200bbab4400fd07a09955d47fcc468e1d2feda1ca9875aa1", "platform": "darwin", @@ -13,89 +13,28 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "086a41047c19": { - "name": "projectCommentDraft", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, "0ce8caa0cc82": { "name": "github.project.addIssueCommentBySlug#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, "16637fd57f65": { "name": "github.project.updateIssueCommentBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" }, - "1749ae600a25": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "name": "Status", - "options": [] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "1782d901730e": { + "4b9c688ebd34": { "name": "projectEditingCommentDraft", - "value": "" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false + "value": "", + "sent": 3 }, "5198e17de9b3": { "detail": { @@ -241,59 +180,25 @@ "itemType": "ISSUE" } }, - "8d7301a69c58": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 }, "8f5c8979ff80": { "name": "github.project.updateIssueCommentBySlug#1", @@ -445,7 +350,187 @@ "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\":{\"title\":\"Renamed\"}}}" }, - "9f682b8cbc1e": { + "9698ad92ebc9": { + "name": "projectCommentDraft", + "value": "", + "sent": 2 + }, + "a26efea23f6c": { + "name": "projectEditingCommentId", + "value": { + "$rpc": "null" + }, + "sent": 3 + }, + "a3c003fbf907": { + "name": "github.project.updateIssueBySlug#1", + "args": [ + { + "name": "method", + "value": "github.project.updateIssueBySlug" + }, + { + "name": "params", + "value": { + "host": "github.enterprise.test", + "number": 1, + "owner": "owner", + "repo": "repo", + "updates": { + "title": "Renamed" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "b1384e55e8cf": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 2 + }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "e3226dc257b6": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 1 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ee587f93f5f1": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -497,48 +582,10 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 3 }, - "a3c003fbf907": { - "name": "github.project.updateIssueBySlug#1", - "args": [ - { - "name": "method", - "value": "github.project.updateIssueBySlug" - }, - { - "name": "params", - "value": { - "host": "github.enterprise.test", - "number": 1, - "owner": "owner", - "repo": "repo", - "updates": { - "title": "Renamed" - } - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "aff4cd03e232": { + "f5260513deed": { "name": "projectRowItem", "value": { "content": { @@ -556,25 +603,8 @@ "fieldValuesByFieldId": {}, "id": "item-1", "itemType": "ISSUE" - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "d33f5097e2ec": { - "name": "projectEditingCommentId", - "value": { - "$rpc": "null" - } - }, - "eb79a9b3682a": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "$rpc": "undefined" - } + }, + "sent": 1 } }, "recording": { @@ -590,7 +620,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "9188c83ef653", - "effects": ["c2a271fc5d97", "aff4cd03e232", "1749ae600a25", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "f5260513deed", "e3226dc257b6", "02839f22d2db"] } }, { @@ -605,14 +635,14 @@ }, "state": "5198e17de9b3", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff" ] } }, @@ -629,20 +659,20 @@ }, "state": "527330ed2103", "effects": [ - "c2a271fc5d97", - "aff4cd03e232", - "1749ae600a25", - "2cd14f7121a5", - "c2a271fc5d97", - "086a41047c19", - "8d7301a69c58", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "9f682b8cbc1e", - "d33f5097e2ec", - "1782d901730e", - "2cd14f7121a5" + "7b2465eedefe", + "f5260513deed", + "e3226dc257b6", + "02839f22d2db", + "d1bb762720d5", + "9698ad92ebc9", + "b1384e55e8cf", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "ee587f93f5f1", + "a26efea23f6c", + "4b9c688ebd34", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json b/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json index c9c64c4fcc7..3861fd1faec 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-pr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "e5ff558593fd32d66e6ba1722ebf54d50992c9c2b6db41ef2435b47972fbd0fd", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 + }, "0fa9db1cc7c0": { "name": "github.project.updatePullRequestBySlug#1", "args": [ @@ -52,10 +57,6 @@ } } }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2d1e8ede1fcf": { "detail": { "assignees": ["octocat"], @@ -122,11 +123,16 @@ "itemType": "PULL_REQUEST" } }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, "80e87e83df29": { "name": "github.project.updatePullRequestBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updatePullRequestBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":2,\"updates\":{\"title\":\"Renamed\"}}}" }, - "944afddca6db": { + "c8e3f060e5f1": { "name": "projectRowItem", "value": { "content": { @@ -144,13 +150,10 @@ "fieldValuesByFieldId": {}, "id": "item-2", "itemType": "PULL_REQUEST" - } + }, + "sent": 1 }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "d8d5425b5f04": { + "c9abda0c6d89": { "name": "githubProjectTable", "value": { "fields": [ @@ -208,7 +211,8 @@ "name": "Table", "number": 1 } - } + }, + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -232,7 +236,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "2d1e8ede1fcf", - "effects": ["c2a271fc5d97", "944afddca6db", "d8d5425b5f04", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "c8e3f060e5f1", "c9abda0c6d89", "02839f22d2db"] } } ] diff --git a/mobile/rpc-foundation/goldens/tk-project-row-detail.json b/mobile/rpc-foundation/goldens/tk-project-row-detail.json index 12bc143490d..e51213b70b6 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-detail.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-detail.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-detail", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "f572b37cfd15f41f283e5f96b772a1055670f80e68064ac81477d9b768fc971a", "platform": "darwin", @@ -13,85 +13,85 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "086a41047c19": { - "name": "projectCommentDraft", - "value": "" - }, - "0c85499cb425": { - "name": "prFileLoadingPath", - "value": { - "$rpc": "null" - } - }, - "1057be813592": { - "name": "expandedPrFilePath", - "value": { - "$rpc": "null" - } - }, - "1782d901730e": { - "name": "projectEditingCommentDraft", - "value": "" - }, - "188585c3859c": { - "name": "projectFieldDrafts", - "value": {} - }, - "1ca3c6b62543": { - "name": "projectRowDetailLoading", - "value": true - }, - "347cc433c473": { - "name": "projectRowDetail", - "value": { - "$rpc": "null" - } - }, - "3befcdf8b535": { - "name": "projectReviewersDraft", - "value": "" - }, - "4f9b2f35c45f": { - "name": "projectRowDetail", - "value": { - "assignees": [], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [], - "files": [], - "headSha": "head-sha", - "labels": [], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "undefined" - }, - "reviewRequests": [] - } - }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} - }, - "6918d0b7aab9": { + "049372f27933": { "name": "prFileContents", - "value": {} + "value": {}, + "sent": 0 }, - "8f0c8ca9f6fc": { - "name": "projectBodyDraft", - "value": "" + "0e6d17a72b48": { + "name": "projectEditingCommentDraft", + "value": "", + "sent": 0 }, - "9348720697e0": { + "1948869d1aab": { "name": "projectTitleDraft", "value": { "$rpc": "undefined" - } + }, + "sent": 0 + }, + "1ab0db6f980d": { + "name": "projectCommentDraft", + "value": "", + "sent": 0 + }, + "1e04ae13b692": { + "name": "expandedPrFilePath", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "228957b08ee5": { + "name": "projectReviewersDraft", + "value": "", + "sent": 0 + }, + "3690e3603bc7": { + "name": "projectEditingCommentId", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "3a8d8b837c22": { + "name": "projectRowDetailLoading", + "value": false, + "sent": 1 + }, + "4331036690d4": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "62fee54ba0b2": { + "name": "projectBodyDraft", + "value": "", + "sent": 0 + }, + "73fd5eb0550e": { + "name": "projectRowDetailLoading", + "value": true, + "sent": 0 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "8e5298b22c5f": { + "name": "projectRowDetail", + "value": { + "$rpc": "null" + }, + "sent": 0 + }, + "9b91f921fbb2": { + "name": "projectFieldDrafts", + "value": {}, + "sent": 0 }, "b2a01ad6d4fe": { "detail": { @@ -114,6 +114,32 @@ "error": "", "loading": false }, + "c3e75b813157": { + "name": "projectRowDetail", + "value": { + "assignees": [], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [], + "files": [], + "headSha": "head-sha", + "labels": [], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "undefined" + }, + "reviewRequests": [] + }, + "sent": 1 + }, + "ce991ff5560d": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 0 + }, "d1f95449bb04": { "name": "github.project.workItemDetailsBySlug#1", "args": [ @@ -164,12 +190,6 @@ } } }, - "d33f5097e2ec": { - "name": "projectEditingCommentId", - "value": { - "$rpc": "null" - } - }, "e27d1a246a98": { "name": "github.project.workItemDetailsBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.workItemDetailsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"type\":\"issue\"}}" @@ -181,10 +201,6 @@ "value": { "$rpc": "undefined" } - }, - "f78c32654fc4": { - "name": "projectRowDetailLoading", - "value": false } }, "recording": { @@ -200,22 +216,22 @@ }, "state": "b2a01ad6d4fe", "effects": [ - "9348720697e0", - "8f0c8ca9f6fc", - "086a41047c19", - "d33f5097e2ec", - "1782d901730e", - "3befcdf8b535", - "1057be813592", - "6918d0b7aab9", - "0c85499cb425", - "5e884949c856", - "188585c3859c", - "347cc433c473", - "057a0b5a420b", - "1ca3c6b62543", - "4f9b2f35c45f", - "f78c32654fc4" + "1948869d1aab", + "62fee54ba0b2", + "1ab0db6f980d", + "3690e3603bc7", + "0e6d17a72b48", + "228957b08ee5", + "1e04ae13b692", + "049372f27933", + "4331036690d4", + "ce991ff5560d", + "9b91f921fbb2", + "8e5298b22c5f", + "80d38ca65a5d", + "73fd5eb0550e", + "c3e75b813157", + "3a8d8b837c22" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-row-fields.json b/mobile/rpc-foundation/goldens/tk-project-row-fields.json index 661dc71bd08..4c3b6ce9c14 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-fields.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-fields.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "af54a351f4b79fff4a11948fc47a9f5194733065682ff96d6b46b9ae292e327e", "platform": "darwin", @@ -13,154 +13,17 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "010155bc60dd": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "1153dfcb2ccc": { - "name": "githubProjectTable", - "value": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, - "1939e469a4b3": { - "name": "projectFieldDrafts", - "value": { - "field-1": "" - } - }, - "2cd14f7121a5": { + "02839f22d2db": { "name": "projectMutating", - "value": false + "value": false, + "sent": 1 }, - "3a0ba35a3b28": { + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "208468d41a71": { "name": "githubProjectTable", "value": { "fields": [ @@ -232,7 +95,36 @@ "name": "Table", "number": 1 } - } + }, + "sent": 1 + }, + "34daaf185d9e": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 1 }, "424e9a1ae7ed": { "error": "", @@ -373,6 +265,98 @@ "name": "github.project.updateIssueTypeBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}" }, + "55107e6e9979": { + "name": "githubProjectTable", + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 2 + }, + "574da420bac4": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 3 + }, "68296a29ee63": { "error": "", "mutating": false, @@ -456,83 +440,103 @@ } } }, - "6be8b6473722": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 }, - "83ef3d3c2cac": { - "name": "projectRowItem", + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "824d5b4543f1": { + "name": "githubProjectTable", "value": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "sent": 3 }, "895e7a6b9398": { "name": "github.project.updateItemField#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" }, - "c28945c7087a": { - "name": "projectRowItem", + "b2345144ca7e": { + "name": "projectFieldDrafts", "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true + "field-1": "" + }, + "sent": 2 }, "d19660e0ba85": { "name": "github.project.updateItemField#1", @@ -574,6 +578,31 @@ } } }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d74cf538de66": { + "name": "projectRowItem", + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "sent": 2 + }, "d8504a4a27ff": { "name": "github.project.updateIssueTypeBySlug#1", "args": [ @@ -730,7 +759,7 @@ "set-field-0": "eb79a9b3682a" }, "state": "424e9a1ae7ed", - "effects": ["c2a271fc5d97", "c28945c7087a", "3a0ba35a3b28", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "34daaf185d9e", "208468d41a71", "02839f22d2db"] } }, { @@ -745,15 +774,15 @@ }, "state": "68296a29ee63", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff" ] } }, @@ -770,19 +799,19 @@ }, "state": "de29905548eb", "effects": [ - "c2a271fc5d97", - "c28945c7087a", - "3a0ba35a3b28", - "2cd14f7121a5", - "c2a271fc5d97", - "6be8b6473722", - "1153dfcb2ccc", - "1939e469a4b3", - "2cd14f7121a5", - "c2a271fc5d97", - "83ef3d3c2cac", - "010155bc60dd", - "2cd14f7121a5" + "7b2465eedefe", + "34daaf185d9e", + "208468d41a71", + "02839f22d2db", + "d1bb762720d5", + "d74cf538de66", + "55107e6e9979", + "b2345144ca7e", + "6f4f9198e5ff", + "0f3697bbd111", + "574da420bac4", + "824d5b4543f1", + "73c3051352c2" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json b/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json index 26aac077afb..70396c66df0 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "629d05d7fbd4a332a65f7191b2084a0e74b84920c1954fa351f264892b2776e9", "platform": "darwin", @@ -50,19 +50,144 @@ } } }, - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" - }, - "066ce15717c8": { + "02b52513bb0d": { "name": "mutatingStatus", - "value": true + "value": true, + "sent": 4 + }, + "065a8cd07789": { + "name": "prFileContents", + "value": { + "src/index.ts": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + }, + "sent": 1 }, "06d558d172f7": { "name": "github.updatePRState#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" }, - "094bf6975c7c": { + "0be9101a1dfc": { + "name": "mutatingStatus", + "value": true, + "sent": 3 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 + }, + "13ab8771d5c0": { + "name": "github.updatePRState#1", + "args": [ + { + "name": "method", + "value": "github.updatePRState" + }, + { + "name": "params", + "value": { + "prNumber": 12, + "repo": "id:repo-1", + "updates": { + "state": "closed" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-5", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "18ffd2f97a51": { + "name": "prFileCommentDrafts", + "value": {}, + "sent": 2 + }, + "1e34370849ff": { + "name": "error", + "value": "", + "sent": 4 + }, + "251de2865843": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" + }, + "252f3a25533f": { + "name": "actionItem", + "value": { + "$rpc": "null" + }, + "sent": 5 + }, + "287030eca79a": { + "name": "prFileLoadingPath", + "value": "src/index.ts", + "sent": 0 + }, + "29ab02f35956": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" + }, + "359e5860abb8": { + "name": "github.mergePR#1", + "args": [ + { + "name": "method", + "value": "github.mergePR" + }, + { + "name": "params", + "value": { + "method": "squash", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 60000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "396f274f2717": { "name": "githubProjectTable", "value": { "fields": [ @@ -119,102 +244,28 @@ "name": "Table", "number": 1 } - } + }, + "sent": 3 }, - "0c85499cb425": { - "name": "prFileLoadingPath", + "421abd55bc0e": { + "name": "projectRowItem", "value": { - "$rpc": "null" - } - }, - "13ab8771d5c0": { - "name": "github.updatePRState#1", - "args": [ - { - "name": "method", - "value": "github.updatePRState" + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "MERGED", + "url": "https://github.com/owner/repo/pull/2" }, - { - "name": "params", - "value": { - "prNumber": 12, - "repo": "id:repo-1", - "updates": { - "state": "closed" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-5", - "ok": true, - "result": { - "ok": true - } - } - } - }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "359e5860abb8": { - "name": "github.mergePR#1", - "args": [ - { - "name": "method", - "value": "github.mergePR" - }, - { - "name": "params", - "value": { - "method": "squash", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 60000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "ok": true - } - } - } + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + }, + "sent": 3 }, "4737ca53031e": { "contents": { @@ -247,48 +298,157 @@ "name": "github.addPRReviewComment#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" }, - "5e884949c856": { - "name": "prFileCommentDrafts", - "value": {} + "5467502970f1": { + "name": "mutatingStatus", + "value": false, + "sent": 5 }, - "679b3f3a0d12": { - "name": "prFileContents", + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "70678ab6df9a": { + "name": "mutatingStatus", + "value": false, + "sent": 4 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "c02d6dba8a29": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + }, + "c22bc4151f3c": { + "name": "actionItem", "value": { - "src/index.ts": { - "newContent": "b", - "oldContent": "a", - "truncated": false + "$rpc": "null" + }, + "sent": 4 + }, + "c274925d7845": { + "name": "github.addPRReviewComment#1", + "args": [ + { + "name": "method", + "value": "github.addPRReviewComment" + }, + { + "name": "params", + "value": { + "body": "a review comment", + "commitId": "head-sha", + "line": 12, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "comment": { + "author": "You", + "body": "a review comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 901, + "line": 12, + "path": "src/index.ts" + }, + "ok": true + } } } }, - "7db3219ad526": { - "name": "projectRowItem", - "value": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "MERGED", - "url": "https://github.com/owner/repo/pull/2" + "cb3d443fc9be": { + "name": "github.prFileContents#1", + "args": [ + { + "name": "method", + "value": "github.prFileContents" }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" + { + "name": "params", + "value": { + "baseSha": "base-sha", + "headSha": "head-sha", + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1", + "status": "modified" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "newContent": "b", + "oldContent": "a", + "truncated": false + } + } } }, - "82cd71d524c8": { - "name": "error", - "value": "" + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 }, - "8aa9021b397d": { - "name": "prFileLoadingPath", - "value": "src/index.ts" - }, - "9963bc10a55b": { + "d632883158cc": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -342,124 +502,18 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 }, - "ac9996319e05": { - "name": "actionItem", - "value": { - "$rpc": "null" - } + "dbbebbd74a18": { + "name": "error", + "value": "", + "sent": 3 }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" - }, - "c05d98f543b7": { + "e02a62a4ddf5": { "name": "expandedPrFilePath", - "value": "src/index.ts" - }, - "c274925d7845": { - "name": "github.addPRReviewComment#1", - "args": [ - { - "name": "method", - "value": "github.addPRReviewComment" - }, - { - "name": "params", - "value": { - "body": "a review comment", - "commitId": "head-sha", - "line": 12, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-2", - "ok": true, - "result": { - "comment": { - "author": "You", - "body": "a review comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 901, - "line": 12, - "path": "src/index.ts" - }, - "ok": true - } - } - } - }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "cb3d443fc9be": { - "name": "github.prFileContents#1", - "args": [ - { - "name": "method", - "value": "github.prFileContents" - }, - { - "name": "params", - "value": { - "baseSha": "base-sha", - "headSha": "head-sha", - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1", - "status": "modified" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "newContent": "b", - "oldContent": "a", - "truncated": false - } - } - } + "value": "src/index.ts", + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -469,9 +523,12 @@ "$rpc": "undefined" } }, - "f02550278f6a": { - "name": "mutatingStatus", - "value": false + "f070b17abcde": { + "name": "prFileLoadingPath", + "value": { + "$rpc": "null" + }, + "sent": 1 }, "fdf15056fb68": { "contents": { @@ -515,11 +572,11 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde" ] } }, @@ -535,16 +592,16 @@ }, "state": "fdf15056fb68", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff" ] } }, @@ -561,21 +618,21 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2" ] } }, @@ -593,25 +650,25 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a" ] } }, @@ -642,29 +699,29 @@ }, "state": "4737ca53031e", "effects": [ - "c05d98f543b7", - "8aa9021b397d", - "057a0b5a420b", - "679b3f3a0d12", - "0c85499cb425", - "c2a271fc5d97", - "057a0b5a420b", - "5e884949c856", - "9963bc10a55b", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "7db3219ad526", - "094bf6975c7c", - "2cd14f7121a5", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a", - "066ce15717c8", - "82cd71d524c8", - "ac9996319e05", - "f02550278f6a" + "e02a62a4ddf5", + "287030eca79a", + "80d38ca65a5d", + "065a8cd07789", + "f070b17abcde", + "d1bb762720d5", + "85f150b2df81", + "18ffd2f97a51", + "d632883158cc", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "421abd55bc0e", + "396f274f2717", + "73c3051352c2", + "0be9101a1dfc", + "dbbebbd74a18", + "c22bc4151f3c", + "70678ab6df9a", + "02b52513bb0d", + "1e34370849ff", + "252f3a25533f", + "5467502970f1" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json b/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json index 8b8870a842c..31419e92b52 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "60ea389fe16734fb53db01101f1feb4496653a99faa09e4309b3790a50d558d7", "platform": "darwin", @@ -13,30 +13,25 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0ec535506ef6": { + "09f12e10766e": { "name": "projectIssueTypesLoading", - "value": true + "value": false, + "sent": 3 }, - "13110f6c348f": { - "name": "projectAvailableLabels", - "value": ["bug"] - }, - "15a2c52c35d3": { - "name": "projectAvailableLabels", - "value": [] - }, - "1ea80133c336": { + "2ef615f214b1": { "name": "projectAssignableUsers", "value": [ { "login": "octocat", "name": "Octo" } - ] + ], + "sent": 3 }, - "3d9f892630c2": { - "name": "projectAssignableUsersLoading", - "value": false + "32b4277def9a": { + "name": "projectAvailableLabels", + "value": ["bug"], + "sent": 3 }, "3f5d8df504de": { "name": "github.project.listLabelsBySlug#1", @@ -74,33 +69,39 @@ } } }, - "4532c39efcc5": { - "name": "projectLabelsLoading", - "value": false + "57d4746ddb82": { + "name": "projectAssignableUsersLoading", + "value": true, + "sent": 1 }, - "7b69f54a8a5a": { - "name": "projectAssignableUsers", - "value": [] + "5fd1b0e4ca3a": { + "name": "projectAssignableUsersLoading", + "value": false, + "sent": 3 }, - "822c655b8d01": { - "name": "projectLabelsError", - "value": "" + "6c910b6dc2fa": { + "name": "projectIssueTypesError", + "value": "", + "sent": 2 }, - "83bfe2deb7bf": { - "name": "projectAssignableUsersError", - "value": "" - }, - "83c1f676e233": { + "7122de433e6a": { "name": "projectIssueTypes", - "value": [] + "value": [ + { + "id": "type-1", + "name": "Bug" + } + ], + "sent": 3 }, "84c3fb2868bd": { "name": "github.project.listIssueTypesBySlug#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" }, - "8d8599f1ba0f": { - "name": "projectIssueTypesError", - "value": "" + "8f395e09a24b": { + "name": "projectAvailableLabels", + "value": [], + "sent": 0 }, "8fbb806f8730": { "name": "github.project.listIssueTypesBySlug#1", @@ -147,22 +148,35 @@ "name": "github.project.listAssignableUsersBySlug#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}" }, - "a149427e545f": { + "a9da2a563a6c": { "name": "projectLabelsLoading", - "value": true + "value": false, + "sent": 3 }, - "a1ecaf05ee5c": { + "bf0887cbf7f3": { + "name": "projectAssignableUsersError", + "value": "", + "sent": 1 + }, + "bfd812ba86c3": { "name": "projectIssueTypesLoading", - "value": false + "value": true, + "sent": 2 }, - "b65199d523ec": { - "name": "projectIssueTypes", - "value": [ - { - "id": "type-1", - "name": "Bug" - } - ] + "bfdd7df58f9b": { + "name": "projectLabelsError", + "value": "", + "sent": 0 + }, + "d14a772531e0": { + "name": "projectLabelsLoading", + "value": true, + "sent": 0 + }, + "d17d55e4fee3": { + "name": "projectAssignableUsers", + "value": [], + "sent": 1 }, "d5d91d8a5bac": { "labels": ["bug"], @@ -182,10 +196,6 @@ ], "usersError": "" }, - "d6be96273c26": { - "name": "projectAssignableUsersLoading", - "value": true - }, "da36de1a5410": { "name": "github.project.listLabelsBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" @@ -198,6 +208,11 @@ "$rpc": "undefined" } }, + "ee43aa13c95f": { + "name": "projectIssueTypes", + "value": [], + "sent": 2 + }, "ef507c348d21": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -254,21 +269,21 @@ }, "state": "d5d91d8a5bac", "effects": [ - "15a2c52c35d3", - "822c655b8d01", - "a149427e545f", - "7b69f54a8a5a", - "83bfe2deb7bf", - "d6be96273c26", - "83c1f676e233", - "8d8599f1ba0f", - "0ec535506ef6", - "13110f6c348f", - "4532c39efcc5", - "1ea80133c336", - "3d9f892630c2", - "b65199d523ec", - "a1ecaf05ee5c" + "8f395e09a24b", + "bfdd7df58f9b", + "d14a772531e0", + "d17d55e4fee3", + "bf0887cbf7f3", + "57d4746ddb82", + "ee43aa13c95f", + "6c910b6dc2fa", + "bfd812ba86c3", + "32b4277def9a", + "a9da2a563a6c", + "2ef615f214b1", + "5fd1b0e4ca3a", + "7122de433e6a", + "09f12e10766e" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json b/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json index 139efff368a..2a3283064ab 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "08caec8e0ab5e674aabbf034ca88fc4a000c4b645ad6397afe6dc18db1f7c098", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "22ffca652b36": { "detail": { @@ -85,10 +91,6 @@ "mutating": false, "refreshSeq": 0 }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -154,67 +156,10 @@ "name": "github.requestPRReviewers#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" }, - "37d9097c7885": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, - "3befcdf8b535": { - "name": "projectReviewersDraft", - "value": "" + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 }, "4b9b887ee27f": { "name": "github.setPRFileViewed#1", @@ -288,71 +233,6 @@ "mutating": false, "refreshSeq": 1 }, - "5ffd15276a38": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [ - { - "conclusion": "SUCCESS", - "name": "build", - "status": "COMPLETED", - "url": "" - } - ], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [ - { - "avatarUrl": { - "$rpc": "null" - }, - "login": "octocat", - "name": { - "$rpc": "null" - } - } - ] - } - }, "62edc52051d6": { "detail": { "assignees": ["octocat"], @@ -460,6 +340,21 @@ } } }, + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 + }, "7941a2b950be": { "name": "github.prChecks#1", "args": [ @@ -506,11 +401,197 @@ } } }, - "87d5e8116a07": { - "name": "projectRowDetailRefreshSeq", - "value": 1 + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 }, - "89a13247ebe8": { + "7fde07c7539a": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [ + { + "conclusion": "SUCCESS", + "name": "build", + "status": "COMPLETED", + "url": "" + } + ], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 2 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 + }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "8bb4bae45cc1": { + "name": "github.requestPRReviewers#1", + "args": [ + { + "name": "method", + "value": "github.requestPRReviewers" + }, + { + "name": "params", + "value": { + "prNumber": 2, + "prRepo": { + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + }, + "repo": "id:repo-1", + "reviewers": ["octocat"] + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "914b1bd28569": { + "name": "projectReviewersDraft", + "value": "", + "sent": 1 + }, + "93b879a81965": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [ + { + "avatarUrl": { + "$rpc": "null" + }, + "login": "octocat", + "name": { + "$rpc": "null" + } + } + ] + }, + "sent": 1 + }, + "97fbbfe4cfb6": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -573,56 +654,13 @@ } } ] - } - }, - "8bb4bae45cc1": { - "name": "github.requestPRReviewers#1", - "args": [ - { - "name": "method", - "value": "github.requestPRReviewers" - }, - { - "name": "params", - "value": { - "prNumber": 2, - "prRepo": { - "host": "github.enterprise.test", - "owner": "owner", - "repo": "repo" - }, - "repo": "id:repo-1", - "reviewers": ["octocat"] - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "ok": true - } - } - } + }, + "sent": 4 }, "98fec6b761cc": { "name": "github.prChecks#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, "d10f79760196": { "name": "github.rerunPRChecks#1", "args": [ @@ -664,6 +702,11 @@ } } }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, "dc5439b12876": { "name": "github.rerunPRChecks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}" @@ -675,6 +718,16 @@ "value": { "$rpc": "undefined" } + }, + "f14882f2981f": { + "name": "projectRowDetailRefreshSeq", + "value": 1, + "sent": 3 + }, + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 } }, "recording": { @@ -691,11 +744,11 @@ }, "state": "2cd85ef93c74", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db" ] } }, @@ -711,15 +764,15 @@ }, "state": "22ffca652b36", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff" ] } }, @@ -736,19 +789,19 @@ }, "state": "62edc52051d6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2" ] } }, @@ -766,23 +819,23 @@ }, "state": "5cdba004ba6c", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "37d9097c7885", - "3befcdf8b535", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "5ffd15276a38", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "87d5e8116a07", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "89a13247ebe8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "93b879a81965", + "914b1bd28569", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "7fde07c7539a", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "f14882f2981f", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "97fbbfe4cfb6", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-project-row-threads.json b/mobile/rpc-foundation/goldens/tk-project-row-threads.json index 94d6c2764d1..f4eef72d5bc 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-threads.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-threads.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "815f55c0fb848fc9345a66bb7b71b1351f17e56129e005eb1776d6b47c831647", "platform": "darwin", @@ -13,15 +13,12 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "057a0b5a420b": { - "name": "projectRowDetailError", - "value": "" + "02839f22d2db": { + "name": "projectMutating", + "value": false, + "sent": 1 }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, - "0ea6faa5db5f": { + "02df4d991595": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -57,7 +54,17 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 1 + }, + "095ff0ea9c3e": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" + }, + "0f3697bbd111": { + "name": "projectMutating", + "value": true, + "sent": 2 }, "1689d9f91f40": { "name": "github.resolveReviewThread#1", @@ -97,15 +104,12 @@ } } }, - "240fb5bf0f1e": { - "name": "itemReplyDrafts", - "value": {} + "347fa6adc9f3": { + "name": "projectRowDetailError", + "value": "", + "sent": 3 }, - "2cd14f7121a5": { - "name": "projectMutating", - "value": false - }, - "3b43982aa2b2": { + "4c677c52a54e": { "name": "projectRowDetail", "value": { "assignees": ["octocat"], @@ -118,21 +122,6 @@ "body": "a thought", "createdAt": "2020-01-01T00:00:00.000Z", "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "You", - "body": "a comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 902 } ], "files": [ @@ -156,7 +145,38 @@ "$rpc": "null" }, "reviewRequests": [] - } + }, + "sent": 2 + }, + "6f4f9198e5ff": { + "name": "projectMutating", + "value": false, + "sent": 2 + }, + "73c3051352c2": { + "name": "projectMutating", + "value": false, + "sent": 3 + }, + "761c230291b6": { + "name": "projectMutating", + "value": true, + "sent": 3 + }, + "7b2465eedefe": { + "name": "projectMutating", + "value": true, + "sent": 0 + }, + "80d38ca65a5d": { + "name": "projectRowDetailError", + "value": "", + "sent": 0 + }, + "85f150b2df81": { + "name": "projectRowDetailError", + "value": "", + "sent": 1 }, "874009380ba6": { "detail": { @@ -212,6 +232,64 @@ "error": "", "mutating": false }, + "8a1d11133692": { + "name": "projectRowDetailError", + "value": "", + "sent": 2 + }, + "8bbb5efeadaf": { + "name": "itemReplyDrafts", + "value": {}, + "sent": 4 + }, + "a7e90307fc74": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 3 + }, "b6b9452c2348": { "detail": { "assignees": ["octocat"], @@ -287,20 +365,76 @@ } } }, - "c2a271fc5d97": { - "name": "projectMutating", - "value": true - }, - "c9ebd6cbea9b": { + "cf1e9d4fc0c3": { "name": "itemReplyDrafts", "value": { "comment-2": "a reply" - } + }, + "sent": 3 }, "cf954aa5f6bf": { "name": "github.resolveReviewThread#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" }, + "d1bb762720d5": { + "name": "projectMutating", + "value": true, + "sent": 1 + }, + "d515951be1e3": { + "name": "projectRowDetail", + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a reply", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 903, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "You", + "body": "a comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 902 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "sent": 4 + }, "d7467bca27a7": { "name": "github.project.deleteIssueCommentBySlug#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" @@ -404,53 +538,6 @@ "error": "", "mutating": false }, - "e87dc5b12fb8": { - "name": "projectRowDetail", - "value": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a reply", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 903, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - } - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -511,6 +598,11 @@ } } } + }, + "fa2e7b92e1d5": { + "name": "projectMutating", + "value": false, + "sent": 4 } }, "recording": { @@ -526,7 +618,7 @@ "delete-comment-0": "eb79a9b3682a" }, "state": "b6b9452c2348", - "effects": ["c2a271fc5d97", "057a0b5a420b", "0ea6faa5db5f", "2cd14f7121a5"] + "effects": ["7b2465eedefe", "80d38ca65a5d", "02df4d991595", "02839f22d2db"] } }, { @@ -541,14 +633,14 @@ }, "state": "b6b9452c2348", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff" ] } }, @@ -565,19 +657,19 @@ }, "state": "e76d5520ec18", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2" ] } }, @@ -595,24 +687,24 @@ }, "state": "874009380ba6", "effects": [ - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "0ea6faa5db5f", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "c9ebd6cbea9b", - "e87dc5b12fb8", - "2cd14f7121a5", - "c2a271fc5d97", - "057a0b5a420b", - "240fb5bf0f1e", - "3b43982aa2b2", - "2cd14f7121a5" + "7b2465eedefe", + "80d38ca65a5d", + "02df4d991595", + "02839f22d2db", + "d1bb762720d5", + "85f150b2df81", + "4c677c52a54e", + "6f4f9198e5ff", + "0f3697bbd111", + "8a1d11133692", + "cf1e9d4fc0c3", + "a7e90307fc74", + "73c3051352c2", + "761c230291b6", + "347fa6adc9f3", + "8bbb5efeadaf", + "d515951be1e3", + "fa2e7b92e1d5" ] } } diff --git a/mobile/rpc-foundation/goldens/tk-provider-load.json b/mobile/rpc-foundation/goldens/tk-provider-load.json index 39cd78f5d3c..e703862e038 100644 --- a/mobile/rpc-foundation/goldens/tk-provider-load.json +++ b/mobile/rpc-foundation/goldens/tk-provider-load.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "21b6272878cba5f2b41c89378c178933ffc9406fe69b9c693fc5021a265ef2c9", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0182b1872be2": { - "name": "selectedLinearWorkspaceId", - "value": "linear-workspace" - }, "0f9c77bd54ee": { "name": "github.countWorkItems#1", "args": [ @@ -49,6 +45,11 @@ } } }, + "0faba633b165": { + "name": "selectedLinearWorkspaceId", + "value": "linear-workspace", + "sent": 1 + }, "413e4f429e18": { "status": "fulfilled", "startedAt": 0, @@ -95,13 +96,15 @@ } } }, - "50941ff8a9e3": { - "name": "linearConnected", - "value": true - }, - "50f6d11bf12d": { - "name": "selectedLinearTeamIds", - "value": ["team-1"] + "552cce3107ea": { + "name": "linearWorkspaces", + "value": [ + { + "id": "linear-workspace", + "name": "Workspace" + } + ], + "sent": 1 }, "67b5ebc67646": { "connected": true, @@ -122,6 +125,11 @@ } ] }, + "69d74e72326c": { + "name": "linearConnected", + "value": true, + "sent": 1 + }, "775d7e2fb99d": { "name": "linear.status#1", "args": [ @@ -217,7 +225,7 @@ } } }, - "89bbb50f70ec": { + "8e1216596b9c": { "name": "linearTeams", "value": [ { @@ -226,7 +234,8 @@ "name": "Engineering", "workspaceId": "linear-workspace" } - ] + ], + "sent": 2 }, "a6bfe3e8ec00": { "name": "settings.update#1", @@ -303,19 +312,15 @@ "name": "settings.update#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" }, - "ba929d11c91c": { - "name": "linearWorkspaces", - "value": [ - { - "id": "linear-workspace", - "name": "Workspace" - } - ] - }, "bfba52c22ce2": { "name": "linear.listTeams#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" }, + "c1c057249f99": { + "name": "selectedLinearTeamIds", + "value": ["team-1"], + "sent": 2 + }, "c1e3ae5492e1": { "name": "github.countWorkItems#1", "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" @@ -351,11 +356,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -371,11 +376,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -392,11 +397,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } }, @@ -426,11 +431,11 @@ }, "state": "67b5ebc67646", "effects": [ - "50941ff8a9e3", - "ba929d11c91c", - "0182b1872be2", - "89bbb50f70ec", - "50f6d11bf12d" + "69d74e72326c", + "552cce3107ea", + "0faba633b165", + "8e1216596b9c", + "c1c057249f99" ] } } diff --git a/mobile/rpc-foundation/goldens/transport-capability-probe-cutover-reasks-fast.json b/mobile/rpc-foundation/goldens/transport-capability-probe-cutover-reasks-fast.json index d5482c18d83..0ac0e69e17b 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-cutover-reasks-fast.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-cutover-reasks-fast.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "c5d28c2973881ae6cc94c7d8f6eef544046461f15e236634489afd272b5f1e6b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-capability-probe-non-string-capabilities-drop.json b/mobile/rpc-foundation/goldens/transport-capability-probe-non-string-capabilities-drop.json index 81a952484bf..3be1e1d384b 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-non-string-capabilities-drop.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-non-string-capabilities-drop.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "95ef0a8b60bf92ef5c12a73f923dc143989b34374fb319f812fbaa58c79aa6a6", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json b/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json index f8420367904..00612174461 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "6e0c3a784992e383a05ccfdf34e44e6f74ebd55ff17c4de0b05b2dfb4197c681", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-capability-probe-refused-backs-off.json b/mobile/rpc-foundation/goldens/transport-capability-probe-refused-backs-off.json index 49d8df0598e..bd1cdb55bc2 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-refused-backs-off.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-refused-backs-off.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "2ba1e1d70c98e2fd0d2d2dce6f68c11a186756f05207747e156375fc613940d7", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-host-status-gates-drop-keeps-capabilities.json b/mobile/rpc-foundation/goldens/transport-host-status-gates-drop-keeps-capabilities.json index ab7edf36c75..973c8016be8 100644 --- a/mobile/rpc-foundation/goldens/transport-host-status-gates-drop-keeps-capabilities.json +++ b/mobile/rpc-foundation/goldens/transport-host-status-gates-drop-keeps-capabilities.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "f25f444aca6cf768c602bf879e6b30235d1c4c0632636cfd245bd6e27959756b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json b/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json index c595e1d77a5..11077b17037 100644 --- a/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json +++ b/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "9c5095c24bdf5ab65d6387cc22b9984fee3aa7d5ce93d96bcb470944ac253f86", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-host-status-gates-refused-degrades.json b/mobile/rpc-foundation/goldens/transport-host-status-gates-refused-degrades.json index c5a6b75840d..048946483fc 100644 --- a/mobile/rpc-foundation/goldens/transport-host-status-gates-refused-degrades.json +++ b/mobile/rpc-foundation/goldens/transport-host-status-gates-refused-degrades.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "a7871b5f1d37b0156970858d5a7fcab3105de7a8a6bfe827299a36f2b2ba5548", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json b/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json index c1b1e117398..7ce36a9a902 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "4f0ddbea3c08ea3e90f6e707215a4831f06aed408065b45d0771028d256d6b12", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/transport-pairing-race-direct-completes-first.json b/mobile/rpc-foundation/goldens/transport-pairing-race-direct-completes-first.json index f02f4112a55..36590513aeb 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-direct-completes-first.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-direct-completes-first.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "488173fa313295f97aa88fb4bf1944fdb655e37cfd2444e9d15515bd6ad82d95", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0193ae4dbb38": { - "name": "candidate-closed", - "value": "relay" - }, "1e5b32902af7": { "name": "status.get#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" @@ -97,6 +93,11 @@ "name": "status.get#2", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" }, + "d433a326314e": { + "name": "candidate-closed", + "value": "relay", + "sent": 2 + }, "d9b301beff12": { "outcome": "direct" } @@ -113,7 +114,7 @@ "race": "93edac3a1c3e" }, "state": "d9b301beff12", - "effects": ["0193ae4dbb38"] + "effects": ["d433a326314e"] } } ] diff --git a/mobile/rpc-foundation/goldens/transport-pairing-race-relay-completes-first.json b/mobile/rpc-foundation/goldens/transport-pairing-race-relay-completes-first.json index f1071087e0f..3e08056f1fc 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-relay-completes-first.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-relay-completes-first.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "dee9824e5ec32115fa7dfaaf223fc34c28d057a5526ac3dad42365543288a934", "platform": "darwin", @@ -92,13 +92,14 @@ "a7d5becc0aed": { "outcome": "relay" }, + "b2a8517fe750": { + "name": "candidate-closed", + "value": "direct", + "sent": 2 + }, "c0c86e67c300": { "name": "status.get#2", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "f203320e31e9": { - "name": "candidate-closed", - "value": "direct" } }, "recording": { @@ -113,7 +114,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } } ] diff --git a/mobile/rpc-foundation/goldens/transport-pairing-race-relay-wins-when-direct-refused.json b/mobile/rpc-foundation/goldens/transport-pairing-race-relay-wins-when-direct-refused.json index 2cce1d527c8..a6c2c3b3693 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-relay-wins-when-direct-refused.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-relay-wins-when-direct-refused.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "a34ffec446f9bbc465bd3f7d0a43166c9bc221a6ece8714e0b5717169625cf43", "platform": "darwin", @@ -93,13 +93,14 @@ "a7d5becc0aed": { "outcome": "relay" }, + "b2a8517fe750": { + "name": "candidate-closed", + "value": "direct", + "sent": 2 + }, "c0c86e67c300": { "name": "status.get#2", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "f203320e31e9": { - "name": "candidate-closed", - "value": "direct" } }, "recording": { @@ -114,7 +115,7 @@ "race": "416024b9c436" }, "state": "a7d5becc0aed", - "effects": ["f203320e31e9"] + "effects": ["b2a8517fe750"] } } ] diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json b/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json index 0e7ee9dc9cb..b92803eb131 100644 --- a/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json +++ b/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json @@ -3,9 +3,9 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "9d79bcfd6957d11d5ce8c3296f1038a3cfab81eedad7f990b44071104dfd0f91", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json b/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json index fbf641101fb..0e778e3b74c 100644 --- a/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json +++ b/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json @@ -3,9 +3,9 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "fb9c0e4b7c34f9bd1bd355b606c6ba75a7583cff3788000b7ed013612f5574fe", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json b/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json index 6ccf21ee3da..62f8568b460 100644 --- a/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json +++ b/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json @@ -3,9 +3,9 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "d73fed49e0a7e3e054d5c2fa75780f98bf78b6fa7e02f1ccb2fdc49465cf2fe5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-after-drop.json b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-after-drop.json index 28845588933..8e0b824193a 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-after-drop.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-after-drop.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "a99bb80a5826af1df8d74114fcc5654aa42c9208747b512cea9bd5ca65b64ccb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-while-connected.json b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-while-connected.json index 13b489cb542..bbd3c2fcb56 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-while-connected.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-while-connected.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "3cda09e4a4ad4092f5f9a48b7c9715a99a51eb3bc4bed00f7054537a9e21cea9", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-without-idempotency.json b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-without-idempotency.json index 0050e433084..e8bbd4b9a7b 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-without-idempotency.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-without-idempotency.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "61097c13b262a4454510936fa9c9554a07865b610f18407f1b67bdd74476df08", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-created.json b/mobile/rpc-foundation/goldens/tw-create-retry-created.json index c03f87395e4..91f5fb38fb4 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-created.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-created.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "0278216fee698c00118bb0e73a7fe755dc59c3b8e2b0459153edae64f155774c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json b/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json index a60e60ce468..7fe63d3dca7 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "6cb658dadc9e146c4f36c6ce643451e72300b8cdda19cc684ffa9fb2b0822c0a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json b/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json index eafc51044ad..fc4de86abaa 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "16abe9e1a8d4cff17b3ea29d40277ae30a3d555a4a9efa08b2745c3a85b02740", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json b/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json index 043bec63ca7..fa3b033db93 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json @@ -3,9 +3,9 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "f469b2b7d61e7fc500fa97b5548f5a3732b0dbcdb405412a514a609f786dfbb5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json b/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json index d5282e5f1ca..22d1095523f 100644 --- a/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json +++ b/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json @@ -3,9 +3,9 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "b3734c24f8a083d3efcdd995ea6a57e608d3d3ae3bbbd514db19dcf69448fa48", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json b/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json index e223d3247db..07e6b6f14e6 100644 --- a/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json +++ b/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json @@ -3,9 +3,9 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "451e74a430d2549976fa360a0e43e76a8d855b1470b8e313797019770ceca4cb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json b/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json index d59b0d774c0..f72ff2cc628 100644 --- a/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json +++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json @@ -3,9 +3,9 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "1fb1cdc8a2544e25547175760143a61355900a3ed4b87e08a1fa0dd2409e317d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json index ca449b8a903..7a5d4cac98a 100644 --- a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json +++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json @@ -3,9 +3,9 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "e9d85c576adf93063a8f56d49d28869c402cad38122732b46b8ec021d25db5e3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json index 896dba06358..82fd9be2ea7 100644 --- a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json +++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json @@ -3,9 +3,9 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "14509b4c1cc3beb00cc329b6bae46913f59b3938f76c0bd3bf3e374f34fb680d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json index 8bf059ad703..54a37dd6d54 100644 --- a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json +++ b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json @@ -3,9 +3,9 @@ "family": "worktree.setup-hook-trust", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "0d2e3f48aadf45abbf6927b72ed5fef4caa8e3eb2efd1046339a3fbfab6f9f18", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json index 839e2403c0e..139773bd67f 100644 --- a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json +++ b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json @@ -3,9 +3,9 @@ "family": "worktree.setup-hook-trust", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "f54f5c6dbbe7dbcf8e85e9bd36b27ca9bea7de65d5e35dabace49b3fc766a403", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json b/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json index f39f56358f6..5f22839eec5 100644 --- a/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json +++ b/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "283849e17fb47ad5f9c128cef37a18e869a132357b332b40bec955292db2af3f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-smart-search-gitlab-provider-error.json b/mobile/rpc-foundation/goldens/tw-smart-search-gitlab-provider-error.json index 7e31ecda303..6f66d4b420b 100644 --- a/mobile/rpc-foundation/goldens/tw-smart-search-gitlab-provider-error.json +++ b/mobile/rpc-foundation/goldens/tw-smart-search-gitlab-provider-error.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "4537bf83f7a030521eec549adf4490da5be183471d5a9f9e58b71815b29481ff", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json b/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json index 675c6dcae21..8119a88f727 100644 --- a/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json +++ b/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json @@ -3,9 +3,9 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "34ab4edb621856980c8678629bd809c100d27dcd0747db5abbf4508c7231b7e5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json b/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json index bcbbb5e03e8..7c7d63fb9cf 100644 --- a/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json +++ b/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json @@ -3,9 +3,9 @@ "family": "settings-best-effort", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "31bfa49f888b0eb3f72873bf4a3af26129e78c23126e8fc8fe45b952caa60904", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json b/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json index 5ead52e6c25..b631a9f7b4b 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "2cd1e8972f226572744dad7da82afffbdf0452a121c1cd8c3334d5c3fde5d57c", "platform": "darwin", @@ -13,22 +13,25 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2399e995a370": { - "name": "workspaceSparsePresets", - "value": [] - }, - "273f4074a9b5": { - "name": "workspaceSparsePresetsLoaded", - "value": false - }, - "35afa5cb107f": { - "name": "workspaceBaseBranchLoading", - "value": false + "1f03192052c0": { + "name": "workspaceSparsePresetsLoading", + "value": false, + "sent": 1 }, "4cedb91a2f7a": { "name": "repo.sparsePresets#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}" }, + "539a8c80071f": { + "name": "workspaceSparsePresetsLoaded", + "value": false, + "sent": 0 + }, + "594fac1293d4": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 1 + }, "5bad21b1e042": { "name": "repo.sparsePresets#1", "args": [ @@ -63,10 +66,6 @@ } } }, - "5f1c84e00d4f": { - "name": "workspaceBaseBranchResults", - "value": [] - }, "62bc28c39ffc": { "branchError": "", "branches": [], @@ -74,27 +73,30 @@ "presetsError": "", "presetsLoaded": false }, - "6c344c5f4ac0": { + "648935ecca5d": { + "name": "workspaceSparsePresets", + "value": [], + "sent": 1 + }, + "66f7aa09c444": { + "name": "workspaceBaseBranchLoading", + "value": false, + "sent": 1 + }, + "96f470cee43b": { "name": "workspaceBaseBranchError", - "value": "" + "value": "", + "sent": 1 }, - "8353b8e1a426": { - "name": "workspaceSparsePresetsLoading", - "value": true + "99b93f410369": { + "name": "workspaceSparsePresetsLoaded", + "value": false, + "sent": 1 }, - "9357f7ea8445": { - "name": "workspaceSparsePresetId", - "value": { - "$rpc": "null" - } - }, - "cfc8af2a7169": { - "name": "workspaceSparsePresetsLoading", - "value": false - }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" + "d74e7c93c5be": { + "name": "workspaceBaseBranchResults", + "value": [], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -103,6 +105,23 @@ "value": { "$rpc": "undefined" } + }, + "f359ebae96d2": { + "name": "workspaceSparsePresetId", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "f68a2eba2c59": { + "name": "workspaceSparsePresetsLoading", + "value": true, + "sent": 0 + }, + "ff042d71c647": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 0 } }, "recording": { @@ -118,17 +137,17 @@ }, "state": "62bc28c39ffc", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "2399e995a370", - "273f4074a9b5", - "9357f7ea8445", - "dba381378b08", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "648935ecca5d", + "99b93f410369", + "f359ebae96d2", + "594fac1293d4", + "1f03192052c0" ] } } diff --git a/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json b/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json index cb31351dc8e..2df571b19c0 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "046dd3a125a3c9abcf5a0dd122818939b516adb91cbda2554b3409d4bb3a7980", "platform": "darwin", @@ -13,17 +13,21 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1d9a7d969446": { - "name": "workspaceSparsePresetsLoaded", - "value": true + "0522501c6443": { + "name": "workspaceSparsePresets", + "value": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "sent": 1 }, - "273f4074a9b5": { - "name": "workspaceSparsePresetsLoaded", - "value": false - }, - "35afa5cb107f": { - "name": "workspaceBaseBranchLoading", - "value": false + "1f03192052c0": { + "name": "workspaceSparsePresetsLoading", + "value": false, + "sent": 1 }, "395368dea8ff": { "name": "repo.searchRefs#1", @@ -64,20 +68,15 @@ "name": "repo.searchRefs#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" }, - "4856f62b3650": { - "name": "workspaceSparsePresets", - "value": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ] - }, "4cedb91a2f7a": { "name": "repo.sparsePresets#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}" }, + "539a8c80071f": { + "name": "workspaceSparsePresetsLoaded", + "value": false, + "sent": 0 + }, "57f06e6e349e": { "branchError": "", "branches": [], @@ -91,36 +90,40 @@ "presetsError": "", "presetsLoaded": true }, - "58cb95babab2": { + "66f7aa09c444": { "name": "workspaceBaseBranchLoading", - "value": true + "value": false, + "sent": 1 }, - "5f1c84e00d4f": { - "name": "workspaceBaseBranchResults", - "value": [] + "78f4c8d53e98": { + "name": "workspaceBaseBranchLoading", + "value": true, + "sent": 1 }, - "6c344c5f4ac0": { - "name": "workspaceBaseBranchError", - "value": "" - }, - "8353b8e1a426": { - "name": "workspaceSparsePresetsLoading", - "value": true - }, - "8dbe7ea87a41": { + "8a621ac1da52": { "name": "workspaceBaseBranchResults", "value": [ { "localBranchName": "main", "refName": "main" } - ] + ], + "sent": 2 }, - "9357f7ea8445": { - "name": "workspaceSparsePresetId", - "value": { - "$rpc": "null" - } + "8c08bfbbb957": { + "name": "workspaceSparsePresetsLoaded", + "value": true, + "sent": 1 + }, + "96f470cee43b": { + "name": "workspaceBaseBranchError", + "value": "", + "sent": 1 + }, + "a81d1426bf3c": { + "name": "workspaceBaseBranchLoading", + "value": false, + "sent": 2 }, "b78bcf7ca596": { "branchError": "", @@ -179,13 +182,10 @@ } } }, - "cfc8af2a7169": { - "name": "workspaceSparsePresetsLoading", - "value": false - }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" + "d74e7c93c5be": { + "name": "workspaceBaseBranchResults", + "value": [], + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -194,6 +194,23 @@ "value": { "$rpc": "undefined" } + }, + "f359ebae96d2": { + "name": "workspaceSparsePresetId", + "value": { + "$rpc": "null" + }, + "sent": 1 + }, + "f68a2eba2c59": { + "name": "workspaceSparsePresetsLoading", + "value": true, + "sent": 0 + }, + "ff042d71c647": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 0 } }, "recording": { @@ -209,16 +226,16 @@ }, "state": "57f06e6e349e", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0" ] } }, @@ -233,20 +250,20 @@ }, "state": "b78bcf7ca596", "effects": [ - "8353b8e1a426", - "273f4074a9b5", - "dba381378b08", - "5f1c84e00d4f", - "35afa5cb107f", - "6c344c5f4ac0", - "4856f62b3650", - "1d9a7d969446", - "9357f7ea8445", - "cfc8af2a7169", - "58cb95babab2", - "6c344c5f4ac0", - "8dbe7ea87a41", - "35afa5cb107f" + "f68a2eba2c59", + "539a8c80071f", + "ff042d71c647", + "d74e7c93c5be", + "66f7aa09c444", + "96f470cee43b", + "0522501c6443", + "8c08bfbbb957", + "f359ebae96d2", + "1f03192052c0", + "78f4c8d53e98", + "96f470cee43b", + "8a621ac1da52", + "a81d1426bf3c" ] } } diff --git a/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json b/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json index dba872b0890..a28d97ff663 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "865a659012dd882fd6073813585e2911a1d6252404fbf5a5e273f062b89fc91d", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0a30edace604": { + "name": "workspaceSparsePresetsError", + "value": "Failed to save sparse preset.", + "sent": 2 + }, "193c0bc3cf2a": { "presets": [], "presetsError": "Failed to save sparse preset.", @@ -24,18 +29,25 @@ "targetId": "ssh-1" } }, - "7fd0cde62993": { - "name": "workspaceSparseSaving", - "value": false - }, - "86cc01b1e541": { + "1db4236fbf9f": { "name": "workspaceSshState", "value": { "error": "", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" - } + }, + "sent": 1 + }, + "3f2baafe9f80": { + "name": "workspaceSparseSaving", + "value": false, + "sent": 2 + }, + "594fac1293d4": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 1 }, "a6bf06ff84e0": { "name": "repo.saveSparsePreset#1", @@ -70,17 +82,10 @@ } } }, - "cea9d7e8986e": { + "c74f5fe12440": { "name": "workspaceSparseSaving", - "value": true - }, - "da3a01640280": { - "name": "workspaceSparsePresetsError", - "value": "Failed to save sparse preset." - }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" + "value": true, + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -147,11 +152,11 @@ }, "state": "193c0bc3cf2a", "effects": [ - "86cc01b1e541", - "cea9d7e8986e", - "dba381378b08", - "da3a01640280", - "7fd0cde62993" + "1db4236fbf9f", + "c74f5fe12440", + "594fac1293d4", + "0a30edace604", + "3f2baafe9f80" ] } } diff --git a/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json b/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json index e43af5bba4c..9d2d148f069 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "124f664e339bfd83a1d892e1cd953a78fdf0dc4b20c4272356d24079c72a3e04", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1d9a7d969446": { - "name": "workspaceSparsePresetsLoaded", - "value": true - }, - "312ed3cbf468": { - "name": "workspaceSparsePresetId", - "value": "p1" + "3f2baafe9f80": { + "name": "workspaceSparseSaving", + "value": false, + "sent": 2 }, "404305aa2e3a": { "presets": [ @@ -40,21 +37,27 @@ "targetId": "ssh-1" } }, - "42bbd034563e": { - "name": "workspaceSparseDraft", + "452edc62bce0": { + "name": "workspaceSshState", "value": { - "$rpc": "null" - } + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + }, + "sent": 1 }, - "4856f62b3650": { - "name": "workspaceSparsePresets", - "value": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ] + "594fac1293d4": { + "name": "workspaceSparsePresetsError", + "value": "", + "sent": 1 + }, + "5b8f6c626989": { + "name": "workspaceSparsePresetId", + "value": "p1", + "sent": 2 }, "5c44ff5f6877": { "name": "repo.saveSparsePreset#1", @@ -95,10 +98,6 @@ } } }, - "7fd0cde62993": { - "name": "workspaceSparseSaving", - "value": false - }, "89aa7a3bd619": { "name": "ssh.getState#1", "args": [ @@ -139,24 +138,26 @@ } } }, - "921f72d7827e": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } + "8a48f96e40fe": { + "name": "workspaceSparsePresets", + "value": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "sent": 2 }, - "cea9d7e8986e": { + "8ff2b79a90fb": { + "name": "workspaceSparsePresetsLoaded", + "value": true, + "sent": 2 + }, + "c74f5fe12440": { "name": "workspaceSparseSaving", - "value": true - }, - "dba381378b08": { - "name": "workspaceSparsePresetsError", - "value": "" + "value": true, + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -179,6 +180,13 @@ "targetId": "ssh-1" } }, + "ef39f35afb7f": { + "name": "workspaceSparseDraft", + "value": { + "$rpc": "null" + }, + "sent": 2 + }, "f9dfbe0c0ea7": { "name": "ssh.getState#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" @@ -200,7 +208,7 @@ "mount": "eb79a9b3682a" }, "state": "ee3a941d5e9c", - "effects": ["921f72d7827e"] + "effects": ["452edc62bce0"] } }, { @@ -214,14 +222,14 @@ }, "state": "404305aa2e3a", "effects": [ - "921f72d7827e", - "cea9d7e8986e", - "dba381378b08", - "4856f62b3650", - "1d9a7d969446", - "312ed3cbf468", - "42bbd034563e", - "7fd0cde62993" + "452edc62bce0", + "c74f5fe12440", + "594fac1293d4", + "8a48f96e40fe", + "8ff2b79a90fb", + "5b8f6c626989", + "ef39f35afb7f", + "3f2baafe9f80" ] } } diff --git a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json index 7e26280bd99..fe12c76503c 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "dd25391fdd3dc864ae493f72d013e789884a21e9c71522edc79323bc2b6c7f76", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 + }, "12826f529c2a": { "name": "ssh.connect#1", "args": [ @@ -47,10 +52,6 @@ } } }, - "1739575ac53e": { - "name": "workspaceSshConnecting", - "value": true - }, "27b09a2898b9": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -98,16 +99,6 @@ "name": "preflight.detectRemoteAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" }, - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", - "value": { - "$rpc": "null" - } - }, - "43fd3e2f4b53": { - "name": "workspaceSshConnecting", - "value": false - }, "55904d40a00f": { "agent": "claude", "connecting": false, @@ -126,6 +117,11 @@ "targetId": "ssh-1" } }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 + }, "7c9498659f58": { "name": "ssh.connect#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" @@ -142,18 +138,37 @@ "targetId": "ssh-1" } }, - "86cc01b1e541": { + "86149ccb0853": { + "name": "workspaceSshConnecting", + "value": true, + "sent": 1 + }, + "8967d4751aaf": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connecting", + "targetId": "ssh-1" + }, + "sent": 1 + }, + "a745d7e1dd70": { "name": "workspaceSshState", "value": { "error": "", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" - } + }, + "sent": 2 }, - "9f152ed6e897": { + "a88df8f43f70": { "name": "workspaceDetectedAgentIds", - "value": [] + "value": [], + "sent": 1 }, "b302d21e1567": { "name": "repo.hooks#1", @@ -193,9 +208,17 @@ } } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "db1cde7aa6f5": { + "name": "workspaceSshConnecting", + "value": false, + "sent": 2 + }, + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -205,24 +228,9 @@ "$rpc": "undefined" } }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" - }, "f0a9f62da106": { "name": "repo.hooks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, - "fbfdbb919268": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connecting", - "targetId": "ssh-1" - } } }, "recording": { @@ -239,14 +247,14 @@ }, "state": "8509334ad6ae", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "86cc01b1e541", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "a745d7e1dd70", + "db1cde7aa6f5" ] } }, @@ -262,14 +270,14 @@ }, "state": "55904d40a00f", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "1739575ac53e", - "fbfdbb919268", - "86cc01b1e541", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "86149ccb0853", + "8967d4751aaf", + "a745d7e1dd70", + "db1cde7aa6f5" ] } } diff --git a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json index 0dbf6251851..716a636317c 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "495f51d9c2f7f3d71f53a53e88786b8d1f767a5bf66b8655c28222d2909a964c", "platform": "darwin", @@ -27,9 +27,10 @@ "source": "repo" } }, - "1739575ac53e": { - "name": "workspaceSshConnecting", - "value": true + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 }, "17e35b25d15d": { "name": "preflight.detectRemoteAgents#1", @@ -71,20 +72,22 @@ "$rpc": "null" } }, - "3571f351281f": { - "name": "workspaceDetectedAgentIds", - "value": ["codex"] + "2dcd5a3a771d": { + "name": "workspaceSshState", + "value": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + }, + "sent": 2 }, "37921d9fdeb7": { "name": "preflight.detectRemoteAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" }, - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", - "value": { - "$rpc": "null" - } - }, "43ead075ce12": { "agent": "claude", "connecting": false, @@ -107,10 +110,6 @@ "targetId": "ssh-1" } }, - "43fd3e2f4b53": { - "name": "workspaceSshConnecting", - "value": false - }, "71d817ffdd81": { "name": "ssh.connect#1", "args": [ @@ -151,6 +150,11 @@ } } }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 + }, "7c9498659f58": { "name": "ssh.connect#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" @@ -198,16 +202,27 @@ } } }, - "921f72d7827e": { + "86149ccb0853": { + "name": "workspaceSshConnecting", + "value": true, + "sent": 1 + }, + "8967d4751aaf": { "name": "workspaceSshState", "value": { "error": { "$rpc": "null" }, "reconnectAttempt": 0, - "status": "connected", + "status": "connecting", "targetId": "ssh-1" - } + }, + "sent": 1 + }, + "8d99fc90d0b0": { + "name": "workspaceDetectedAgentIds", + "value": ["codex"], + "sent": 1 }, "a1f755a38636": { "agent": "claude", @@ -223,9 +238,17 @@ "targetId": "ssh-1" } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "db1cde7aa6f5": { + "name": "workspaceSshConnecting", + "value": false, + "sent": 2 + }, + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -235,24 +258,9 @@ "$rpc": "undefined" } }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" - }, "f0a9f62da106": { "name": "repo.hooks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, - "fbfdbb919268": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connecting", - "targetId": "ssh-1" - } } }, "recording": { @@ -267,7 +275,7 @@ "mount": "eb79a9b3682a" }, "state": "18e6a3ac6471", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "3571f351281f"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "8d99fc90d0b0"] } }, { @@ -281,14 +289,14 @@ }, "state": "a1f755a38636", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } }, @@ -304,14 +312,14 @@ }, "state": "43ead075ce12", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "3571f351281f", - "1739575ac53e", - "fbfdbb919268", - "921f72d7827e", - "43fd3e2f4b53" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "8d99fc90d0b0", + "86149ccb0853", + "8967d4751aaf", + "2dcd5a3a771d", + "db1cde7aa6f5" ] } } diff --git a/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json b/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json index 43787a03559..21267fc727a 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "af0623c2d106d2ed18ef9149d4990539f9ed82146ae091a872a3e1d792efeffe", "platform": "darwin", @@ -13,11 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", - "value": { - "$rpc": "null" - } + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 }, "7400f4eebe66": { "agent": "claude", @@ -28,6 +27,11 @@ "$rpc": "null" } }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 + }, "cb93b17470e8": { "name": "preflight.detectAgents#1", "args": [ @@ -59,17 +63,21 @@ } } }, - "cbb858a786ac": { - "name": "workspaceDetectedAgentIds", - "value": ["codex", "claude"] - }, "cf32edc950ac": { "name": "preflight.detectAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}" }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "d00f9527d4f2": { + "name": "workspaceDetectedAgentIds", + "value": ["codex", "claude"], + "sent": 1 + }, + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -78,10 +86,6 @@ "value": { "$rpc": "undefined" } - }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" } }, "recording": { @@ -96,7 +100,7 @@ "mount": "eb79a9b3682a" }, "state": "7400f4eebe66", - "effects": ["ed6189938d78", "ea709e13f0f0", "41b0d115f434", "cbb858a786ac"] + "effects": ["0c2cba5f3708", "77b6cedadbe8", "dd9d8bf76a0e", "d00f9527d4f2"] } } ] diff --git a/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json b/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json index edcb2cde871..bb71725c48e 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3aa23f15da8fe9972e47c767db454b41750ca353ab10797082fde4514ffe9da0", "platform": "darwin", @@ -17,6 +17,11 @@ "name": "ssh.getState#1", "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" }, + "0c2cba5f3708": { + "name": "workspaceAgent", + "value": "claude", + "sent": 0 + }, "0f1cf505ed63": { "status": "rejected", "startedAt": 0, @@ -71,17 +76,6 @@ "kind": "decision" } }, - "25352a4de532": { - "name": "workspaceSshState", - "value": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "disconnected", - "targetId": "ssh-1" - } - }, "28be8cfc5f01": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -120,11 +114,22 @@ "name": "preflight.detectRemoteAgents#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" }, - "41b0d115f434": { - "name": "workspaceDetectedAgentIds", + "433c16de7ff8": { + "name": "workspaceSshState", "value": { - "$rpc": "null" - } + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "disconnected", + "targetId": "ssh-1" + }, + "sent": 2 + }, + "77b6cedadbe8": { + "name": "workspaceAgentOverridden", + "value": false, + "sent": 0 }, "8ecc31aa9892": { "name": "ssh.getState#1", @@ -183,9 +188,10 @@ "targetId": "ssh-1" } }, - "9f152ed6e897": { + "a88df8f43f70": { "name": "workspaceDetectedAgentIds", - "value": [] + "value": [], + "sent": 1 }, "d3698fc526a8": { "agent": "claude", @@ -201,9 +207,12 @@ "targetId": "ssh-1" } }, - "ea709e13f0f0": { - "name": "workspaceAgentOverridden", - "value": false + "dd9d8bf76a0e": { + "name": "workspaceDetectedAgentIds", + "value": { + "$rpc": "null" + }, + "sent": 0 }, "eb79a9b3682a": { "status": "fulfilled", @@ -213,10 +222,6 @@ "$rpc": "undefined" } }, - "ed6189938d78": { - "name": "workspaceAgent", - "value": "claude" - }, "f0a9f62da106": { "name": "repo.hooks#1", "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" @@ -236,11 +241,11 @@ }, "state": "d3698fc526a8", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "25352a4de532" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "433c16de7ff8" ] } }, @@ -256,11 +261,11 @@ }, "state": "9a9cd2877569", "effects": [ - "ed6189938d78", - "ea709e13f0f0", - "41b0d115f434", - "9f152ed6e897", - "25352a4de532" + "0c2cba5f3708", + "77b6cedadbe8", + "dd9d8bf76a0e", + "a88df8f43f70", + "433c16de7ff8" ] } } diff --git a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json index 7a95fe8d966..77bc778b9bf 100644 --- a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json +++ b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json @@ -3,10 +3,10 @@ "family": "worktree.catalog-snapshot", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "6119d409e1958877e4a04b3901f94a3609ac0420f5ca02af20eb8dae5cbf3408", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "d2947158840576cbd0f0604ed3d37b0f446c63c6d439b4d1b7def7fe8524523d", "platform": "darwin", "scenarioVersion": 1, @@ -60,18 +60,33 @@ "admitted": "unadmitted", "fetched": "unfetched" }, - "2d40d1d38104": { - "name": "unhandled-rejection", - "value": { - "category": "Error", - "isRpcDeliveryUnknown": false, - "message": "Unsupported observation: function" - } - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "9948855e8b8d": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "kind": "response", + "pending": { + "admission": { + "kind": "full", + "snapshotId": "snapshot-1", + "worktrees": [ + { + "displayName": "One", + "repo": "Repo", + "worktreeId": "w-1" + } + ] + }, + "client": "logical-client", + "hostId": "host-1" + } + } + }, "a87f1f91dc98": { "name": "worktree.ps#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"afterSnapshotId\":null,\"supportsWorktreeVisibilitySourceDefaults\":true}}" @@ -153,10 +168,10 @@ "sender": ["227f9e3de4fa"], "payloads": ["a87f1f91dc98"], "settlements": { - "fetch": "9270aeb7d9c6" + "fetch": "9948855e8b8d" }, "state": "ab1a9ba6301c", - "effects": ["2d40d1d38104"] + "effects": [] } } ] diff --git a/mobile/rpc-foundation/goldens/worktree-home-catalog.json b/mobile/rpc-foundation/goldens/worktree-home-catalog.json index 5c27a621f65..d256cad6ab0 100644 --- a/mobile/rpc-foundation/goldens/worktree-home-catalog.json +++ b/mobile/rpc-foundation/goldens/worktree-home-catalog.json @@ -3,10 +3,10 @@ "family": "worktree.home-catalog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "6119d409e1958877e4a04b3901f94a3609ac0420f5ca02af20eb8dae5cbf3408", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "4749bb3b871275ba08f026f9b6bcfd383605f443e7bba70a7f89175b91db6fa5", "platform": "darwin", "scenarioVersion": 1, @@ -78,7 +78,7 @@ "name": "worktree.ps#1", "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" }, - "8944b50988b9": { + "86091b4d2b73": { "name": "info", "value": { "host-1": { @@ -93,7 +93,8 @@ }, "totalWorktrees": 2 } - } + }, + "sent": 1 }, "9270aeb7d9c6": { "status": "pending", @@ -157,7 +158,7 @@ "load": "eb79a9b3682a" }, "state": "39b7354b00f4", - "effects": ["8944b50988b9"] + "effects": ["86091b4d2b73"] } } ] diff --git a/mobile/rpc-foundation/goldens/worktree-retired-names.json b/mobile/rpc-foundation/goldens/worktree-retired-names.json index 229f57743e2..35a18f15e89 100644 --- a/mobile/rpc-foundation/goldens/worktree-retired-names.json +++ b/mobile/rpc-foundation/goldens/worktree-retired-names.json @@ -3,10 +3,10 @@ "family": "worktree.retired-names", "namedDeltas": [], "runnerVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", - "recorderSha256": "fc1f0b1f8c685b481838dfacd28c8608c6fa7a8a21faa1b81e05950c8d8e65f4", - "adapterSha256": "6119d409e1958877e4a04b3901f94a3609ac0420f5ca02af20eb8dae5cbf3408", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "2faa07ee5f12b3ed584117359d3b7aeb9c78a04e8fc49e753372f8c3927a3740", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/pilot-scenarios.json b/mobile/rpc-foundation/pilot-scenarios.json index d8e6a2419d3..7d298335865 100644 --- a/mobile/rpc-foundation/pilot-scenarios.json +++ b/mobile/rpc-foundation/pilot-scenarios.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, - "baseline": "c6a72169843ececf3a21da370ac50c5c5a4e6462", + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", "scenarios": [ { "id": "b1", @@ -14434,6 +14434,4266 @@ "checkpoint": "dismissed" } ] + }, + { + "id": "aivault-resume-prepare-repin", + "operation": "aiVault.resume-preparation", + "version": 1, + "family": "aiVault.resume-preparation", + "sites": ["mobile/src/session/ai-vault-resume-preparation.ts"], + "schedules": [], + "steps": [ + { + "action": "prepare", + "id": "prepare" + }, + { + "complete": "aiVault.prepareSessionResume#1", + "params": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + }, + "reply": { + "ok": true, + "result": { + "useRealCodexHome": false, + "substituteCodexHome": "/hosts/codex-accounts/acct-1/home" + } + } + }, + { + "checkpoint": "repinned" + } + ] + }, + { + "id": "aivault-resume-prepare-unavailable", + "operation": "aiVault.resume-preparation", + "version": 1, + "family": "aiVault.resume-preparation", + "sites": ["mobile/src/session/ai-vault-resume-preparation.ts"], + "schedules": [], + "steps": [ + { + "action": "prepare", + "id": "prepare" + }, + { + "complete": "aiVault.prepareSessionResume#1", + "params": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + }, + "reply": { + "ok": false, + "error": { + "code": "forbidden", + "message": "Method 'aiVault.prepareSessionResume' is not available to mobile clients" + } + } + }, + { + "checkpoint": "degraded-to-legacy" + } + ] + }, + { + "id": "aivault-resume-prepare-refused", + "operation": "aiVault.resume-preparation", + "version": 1, + "family": "aiVault.resume-preparation", + "sites": ["mobile/src/session/ai-vault-resume-preparation.ts"], + "schedules": [], + "steps": [ + { + "action": "prepare", + "id": "prepare" + }, + { + "complete": "aiVault.prepareSessionResume#1", + "params": { + "agent": "codex", + "codexHome": "/hosts/codex-runtime-home/home", + "executionHostId": "local", + "filePath": "/sessions/rollout.jsonl" + }, + "reply": { + "ok": false, + "error": { + "code": "internal", + "message": "codex home is locked" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "aivault-resume-prepare-skipped", + "operation": "aiVault.resume-preparation", + "version": 1, + "family": "aiVault.resume-preparation", + "sites": ["mobile/src/session/ai-vault-resume-preparation.ts"], + "schedules": [], + "steps": [ + { + "action": "claude", + "id": "claude" + }, + { + "checkpoint": "no-wire" + } + ] + }, + { + "id": "aivault-resume-launch-sent", + "operation": "aiVault.resume-launch", + "version": 1, + "family": "aiVault.resume-launch", + "sites": ["mobile/src/session/ai-vault-resume-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "full", + "id": "full" + }, + { + "complete": "session.tabs.createTerminal#1", + "params": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "tab": { + "id": "tab-9", + "type": "terminal", + "title": "codex", + "terminal": "terminal-9" + } + } + } + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-9", + "text": "codex resume rollout", + "enter": true + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "resumed" + } + ] + }, + { + "id": "aivault-resume-launch-locked", + "operation": "aiVault.resume-launch", + "version": 1, + "family": "aiVault.resume-launch", + "sites": ["mobile/src/session/ai-vault-resume-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "full", + "id": "full" + }, + { + "complete": "session.tabs.createTerminal#1", + "params": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "tab": { + "id": "tab-9", + "type": "terminal", + "title": "codex", + "terminal": "terminal-9" + } + } + } + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-9", + "text": "codex resume rollout", + "enter": true + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "checkpoint": "input-locked" + } + ] + }, + { + "id": "aivault-resume-launch-create-refused", + "operation": "aiVault.resume-launch", + "version": 1, + "family": "aiVault.resume-launch", + "sites": ["mobile/src/session/ai-vault-resume-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "bare", + "id": "bare" + }, + { + "complete": "session.tabs.createTerminal#1", + "params": { + "activate": false, + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "worktree_busy", + "message": "Workspace is busy" + } + } + }, + { + "checkpoint": "create-refused" + } + ] + }, + { + "id": "aivault-resume-launch-invalid-tab", + "operation": "aiVault.resume-launch", + "version": 1, + "family": "aiVault.resume-launch", + "sites": ["mobile/src/session/ai-vault-resume-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "full", + "id": "full" + }, + { + "complete": "session.tabs.createTerminal#1", + "params": { + "activate": false, + "clientMutationId": "resume-mutation-1", + "env": { + "ORCA_RESUME": "1" + }, + "envToDelete": ["CODEX_HOME"], + "launchAgent": "codex", + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "tab": { + "id": "tab-9" + } + } + } + }, + { + "checkpoint": "invalid-tab" + } + ] + }, + { + "id": "clipboard-image-upload-single-frame-fallback", + "operation": "clipboard.image-upload", + "version": 1, + "family": "clipboard.image-upload", + "sites": ["mobile/src/session/mobile-clipboard-image.ts"], + "schedules": [], + "steps": [ + { + "action": "remote", + "id": "remote" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": false, + "error": { + "code": "method_not_found", + "message": "Unknown method" + } + } + }, + { + "complete": "clipboard.saveImageAsTempFile#1", + "params": { + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "connectionId": "connection-1" + }, + "reply": { + "ok": true, + "result": "/tmp/legacy.png" + } + }, + { + "checkpoint": "fell-back" + } + ] + }, + { + "id": "clipboard-image-upload-chunked", + "operation": "clipboard.image-upload", + "version": 1, + "family": "clipboard.image-upload", + "sites": ["mobile/src/session/mobile-clipboard-image.ts"], + "schedules": [], + "steps": [ + { + "action": "remote", + "id": "remote" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-1", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#1", + "params": { + "uploadId": "upload-1" + }, + "reply": { + "ok": true, + "result": "/tmp/img.png" + } + }, + { + "checkpoint": "uploaded" + } + ] + }, + { + "id": "clipboard-image-upload-aborts-on-chunk-failure", + "operation": "clipboard.image-upload", + "version": 1, + "family": "clipboard.image-upload", + "sites": ["mobile/src/session/mobile-clipboard-image.ts"], + "schedules": [], + "steps": [ + { + "action": "local", + "id": "local" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": null, + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-2" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-2", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": false, + "error": { + "code": "upload_expired", + "message": "Upload slot expired" + } + } + }, + { + "complete": "clipboard.abortImageUpload#1", + "params": { + "uploadId": "upload-2" + }, + "reply": { + "ok": true, + "result": { + "aborted": true + } + } + }, + { + "checkpoint": "aborted" + } + ] + }, + { + "id": "clipboard-image-upload-start-refused", + "operation": "clipboard.image-upload", + "version": 1, + "family": "clipboard.image-upload", + "sites": ["mobile/src/session/mobile-clipboard-image.ts"], + "schedules": [], + "steps": [ + { + "action": "remote", + "id": "remote" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": false, + "error": { + "code": "too_large", + "message": "Image is too large" + } + } + }, + { + "checkpoint": "start-refused" + } + ] + }, + { + "id": "clipboard-image-attachment-upload-refused", + "operation": "clipboard.image-terminal-attachment", + "version": 1, + "family": "clipboard.image-attachment", + "sites": [ + "mobile/src/session/mobile-image-attachment.ts", + "mobile/src/session/mobile-clipboard-image.ts" + ], + "schedules": [], + "steps": [ + { + "action": "normal", + "id": "normal" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": false, + "error": { + "code": "too_large", + "message": "Image is too large" + } + } + }, + { + "checkpoint": "upload-refused" + } + ] + }, + { + "id": "clipboard-image-attachment-pasted", + "operation": "clipboard.image-terminal-attachment", + "version": 1, + "family": "clipboard.image-attachment", + "sites": [ + "mobile/src/session/mobile-image-attachment.ts", + "mobile/src/session/mobile-clipboard-image.ts" + ], + "schedules": [], + "steps": [ + { + "action": "normal", + "id": "normal" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-1", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#1", + "params": { + "uploadId": "upload-1" + }, + "reply": { + "ok": true, + "result": "/tmp/img.png" + } + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/img.png\u001b[201~ ", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "attached" + } + ] + }, + { + "id": "clipboard-image-attachment-cancelled", + "operation": "clipboard.image-terminal-attachment", + "version": 1, + "family": "clipboard.image-attachment", + "sites": [ + "mobile/src/session/mobile-image-attachment.ts", + "mobile/src/session/mobile-clipboard-image.ts" + ], + "schedules": [], + "steps": [ + { + "action": "cancelled", + "id": "cancelled" + }, + { + "checkpoint": "no-wire" + } + ] + }, + { + "id": "clipboard-image-attachment-blocked-before-send", + "operation": "clipboard.image-terminal-attachment", + "version": 1, + "family": "clipboard.image-attachment", + "sites": [ + "mobile/src/session/mobile-image-attachment.ts", + "mobile/src/session/mobile-clipboard-image.ts" + ], + "schedules": [], + "steps": [ + { + "action": "blocked", + "id": "blocked" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-1", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#1", + "params": { + "uploadId": "upload-1" + }, + "reply": { + "ok": true, + "result": "/tmp/img.png" + } + }, + { + "checkpoint": "blocked" + } + ] + }, + { + "id": "clipboard-image-attachment-anonymous", + "operation": "clipboard.image-terminal-attachment", + "version": 1, + "family": "clipboard.image-attachment", + "sites": [ + "mobile/src/session/mobile-image-attachment.ts", + "mobile/src/session/mobile-clipboard-image.ts" + ], + "schedules": [], + "steps": [ + { + "action": "anonymous", + "id": "anonymous" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-1", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#1", + "params": { + "uploadId": "upload-1" + }, + "reply": { + "ok": true, + "result": "/tmp/img.png" + } + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/img.png\u001b[201~ ", + "enter": false + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "checkpoint": "rejected" + } + ] + }, + { + "id": "native-chat-image-paste-single", + "operation": "nativeChat.image-paste", + "version": 1, + "family": "nativeChat.image-paste", + "sites": ["mobile/src/session/mobile-native-chat-image-send.ts"], + "schedules": [], + "steps": [ + { + "action": "one", + "id": "one" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u0015", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "terminal.send#2", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~ ", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "pasted" + } + ] + }, + { + "id": "native-chat-image-paste-two-images", + "operation": "nativeChat.image-paste", + "version": 1, + "family": "nativeChat.image-paste", + "sites": ["mobile/src/session/mobile-native-chat-image-send.ts"], + "schedules": [], + "steps": [ + { + "action": "two", + "id": "two" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u0015", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "terminal.send#2", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "terminal.send#3", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/b.png\u001b[201~ ", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "pasted-both" + } + ] + }, + { + "id": "native-chat-image-paste-stops-on-rejection", + "operation": "nativeChat.image-paste", + "version": 1, + "family": "nativeChat.image-paste", + "sites": ["mobile/src/session/mobile-native-chat-image-send.ts"], + "schedules": [], + "steps": [ + { + "action": "two", + "id": "two" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u0015", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "terminal.send#2", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "checkpoint": "stopped" + } + ] + }, + { + "id": "native-chat-image-paste-trailing-image", + "operation": "nativeChat.image-paste", + "version": 1, + "family": "nativeChat.image-paste", + "sites": ["mobile/src/session/mobile-native-chat-image-send.ts"], + "schedules": [], + "steps": [ + { + "action": "trailing", + "id": "trailing" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u0015", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "terminal.send#2", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~/tmp/a.png\u001b[201~", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "pasted" + } + ] + }, + { + "id": "native-chat-write-accepted", + "operation": "nativeChat.terminal-write", + "version": 1, + "family": "nativeChat.terminal-write", + "sites": ["mobile/src/session/mobile-native-chat-send.ts"], + "schedules": [], + "steps": [ + { + "action": "body", + "id": "body" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "hello", + "enter": true, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "orchestration.workerTerminalUserInput#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "reported": true + } + } + }, + { + "checkpoint": "accepted" + } + ] + }, + { + "id": "native-chat-write-rejected", + "operation": "nativeChat.terminal-write", + "version": 1, + "family": "nativeChat.terminal-write", + "sites": ["mobile/src/session/mobile-native-chat-send.ts"], + "schedules": [], + "steps": [ + { + "action": "body", + "id": "body" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "hello", + "enter": true, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "checkpoint": "rejected" + } + ] + }, + { + "id": "native-chat-write-delivery-unknown", + "operation": "nativeChat.terminal-write", + "version": 1, + "family": "nativeChat.terminal-write", + "sites": ["mobile/src/session/mobile-native-chat-send.ts"], + "schedules": [], + "steps": [ + { + "action": "body", + "id": "body" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "hello", + "enter": true, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reject": { + "message": "Connection lost", + "deliveryUnknown": true + } + }, + { + "checkpoint": "unknown" + } + ] + }, + { + "id": "native-chat-write-clear-line", + "operation": "nativeChat.terminal-write", + "version": 1, + "family": "nativeChat.terminal-write", + "sites": ["mobile/src/session/mobile-native-chat-send.ts"], + "schedules": [], + "steps": [ + { + "action": "clear", + "id": "clear" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u0015", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "cleared" + } + ] + }, + { + "id": "native-chat-write-typed-command", + "operation": "nativeChat.terminal-write", + "version": 1, + "family": "nativeChat.terminal-write", + "sites": ["mobile/src/session/mobile-native-chat-send.ts"], + "schedules": [], + "steps": [ + { + "action": "command", + "id": "command" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u0015", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "orchestration.workerTerminalUserInput#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "reported": true + } + } + }, + { + "advance": 16 + }, + { + "complete": "terminal.send#2", + "params": { + "terminal": "terminal-1", + "text": "o", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "advance": 16 + }, + { + "complete": "terminal.send#3", + "params": { + "terminal": "terminal-1", + "text": "k", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "advance": 16 + }, + { + "complete": "terminal.send#4", + "params": { + "terminal": "terminal-1", + "text": "\r", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "typed" + } + ] + }, + { + "id": "native-chat-session-option-pick-written", + "operation": "nativeChat.session-option-pick", + "version": 1, + "family": "nativeChat.session-option-pick", + "sites": ["mobile/src/session/mobile-native-chat-session-option-persistence.ts"], + "schedules": [], + "steps": [ + { + "action": "pick", + "id": "pick" + }, + { + "complete": "settings.mutateNativeChatSessionOptions#1", + "params": { + "type": "apply-picks", + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ] + }, + "reply": { + "ok": true, + "result": { + "applied": true + } + } + }, + { + "checkpoint": "written" + } + ] + }, + { + "id": "native-chat-session-option-pick-refused", + "operation": "nativeChat.session-option-pick", + "version": 1, + "family": "nativeChat.session-option-pick", + "sites": ["mobile/src/session/mobile-native-chat-session-option-persistence.ts"], + "schedules": [], + "steps": [ + { + "action": "pick", + "id": "pick" + }, + { + "complete": "settings.mutateNativeChatSessionOptions#1", + "params": { + "type": "apply-picks", + "agent": "claude", + "picks": [ + { + "modelId": "opus", + "optionId": "model", + "value": "opus" + } + ] + }, + "reply": { + "ok": false, + "error": { + "code": "method_not_found", + "message": "Unknown method" + } + } + }, + { + "checkpoint": "refusal-swallowed" + } + ] + }, + { + "id": "native-chat-session-option-pick-empty", + "operation": "nativeChat.session-option-pick", + "version": 1, + "family": "nativeChat.session-option-pick", + "sites": ["mobile/src/session/mobile-native-chat-session-option-persistence.ts"], + "schedules": [], + "steps": [ + { + "action": "empty", + "id": "empty" + }, + { + "checkpoint": "no-wire" + } + ] + }, + { + "id": "session-tab-activation-focus-and-activate", + "operation": "session.tab-activation", + "version": 1, + "family": "session.tab-activation", + "sites": ["mobile/src/session/mobile-session-tab-activation.ts"], + "schedules": [], + "steps": [ + { + "action": "focus", + "id": "focus" + }, + { + "complete": "terminal.focus#1", + "params": { + "navigation": "host", + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "focused": true + } + } + }, + { + "action": "activate", + "id": "activate" + }, + { + "complete": "session.tabs.activate#1", + "params": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "activated": true + } + } + }, + { + "checkpoint": "activated" + } + ] + }, + { + "id": "session-tab-activation-refused", + "operation": "session.tab-activation", + "version": 1, + "family": "session.tab-activation", + "sites": ["mobile/src/session/mobile-session-tab-activation.ts"], + "schedules": [], + "steps": [ + { + "action": "activate", + "id": "activate" + }, + { + "complete": "session.tabs.activate#1", + "params": { + "intent": "user", + "navigation": "caller", + "notifyClients": false, + "tabId": "tab-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "tab_not_found", + "message": "No such tab" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "session-tab-activation-transport-error", + "operation": "session.tab-activation", + "version": 1, + "family": "session.tab-activation", + "sites": ["mobile/src/session/mobile-session-tab-activation.ts"], + "schedules": [], + "steps": [ + { + "action": "focus", + "id": "focus" + }, + { + "complete": "terminal.focus#1", + "params": { + "navigation": "host", + "terminal": "terminal-1" + }, + "reject": { + "message": "Request timed out" + } + }, + { + "checkpoint": "errored" + } + ] + }, + { + "id": "session-tabs-health-reconciled", + "operation": "session.tabs-stream-health", + "version": 1, + "family": "session.tabs-stream-health", + "sites": ["mobile/src/session/mobile-session-tabs-stream-health.ts"], + "schedules": [], + "steps": [ + { + "action": "activate", + "id": "activate" + }, + { + "action": "reconcile", + "id": "reconcile" + }, + { + "complete": "session.tabs.list#1", + "params": { + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "tabs": [ + { + "id": "tab-1" + } + ] + } + } + }, + { + "checkpoint": "reconciled" + } + ] + }, + { + "id": "session-tabs-health-refused", + "operation": "session.tabs-stream-health", + "version": 1, + "family": "session.tabs-stream-health", + "sites": ["mobile/src/session/mobile-session-tabs-stream-health.ts"], + "schedules": [], + "steps": [ + { + "action": "activate", + "id": "activate" + }, + { + "action": "reconcile", + "id": "reconcile" + }, + { + "complete": "session.tabs.list#1", + "params": { + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "session-tabs-health-stale-application-revision", + "operation": "session.tabs-stream-health", + "version": 1, + "family": "session.tabs-stream-health", + "sites": ["mobile/src/session/mobile-session-tabs-stream-health.ts"], + "schedules": [], + "steps": [ + { + "action": "activate", + "id": "activate" + }, + { + "action": "reconcile", + "id": "reconcile" + }, + { + "action": "revise", + "id": "revise" + }, + { + "complete": "session.tabs.list#1", + "params": { + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "tabs": [ + { + "id": "tab-1" + } + ] + } + } + }, + { + "checkpoint": "dropped" + } + ] + }, + { + "id": "session-tabs-health-errored", + "operation": "session.tabs-stream-health", + "version": 1, + "family": "session.tabs-stream-health", + "sites": ["mobile/src/session/mobile-session-tabs-stream-health.ts"], + "schedules": [], + "steps": [ + { + "action": "activate", + "id": "activate" + }, + { + "action": "reconcile", + "id": "reconcile" + }, + { + "complete": "session.tabs.list#1", + "params": { + "worktree": "id:workspace-1" + }, + "reject": { + "message": "Connection lost", + "deliveryUnknown": true + } + }, + { + "checkpoint": "errored" + } + ] + }, + { + "id": "file-tap-opens-worktree-file", + "operation": "files.terminal-path-tap", + "version": 1, + "family": "files.terminal-path-tap", + "sites": ["mobile/src/session/mobile-file-tap-open.ts"], + "schedules": [], + "steps": [ + { + "action": "tap", + "id": "tap" + }, + { + "complete": "files.resolveTerminalPath#1", + "params": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "relativePath": "src/app.ts", + "openTarget": { + "kind": "worktree-file", + "relativePath": "src/app.ts", + "absolutePath": "/repo/src/app.ts", + "provider": "ssh" + } + } + } + }, + { + "complete": "files.open#1", + "params": { + "worktree": "id:workspace-1", + "relativePath": "src/app.ts" + }, + "reply": { + "ok": true, + "result": { + "opened": true + } + } + }, + { + "action": "list", + "id": "list" + }, + { + "advance": 300 + }, + { + "checkpoint": "switched" + }, + { + "advance": 1500 + }, + { + "checkpoint": "settled" + } + ] + }, + { + "id": "file-tap-resolve-miss", + "operation": "files.terminal-path-tap", + "version": 1, + "family": "files.terminal-path-tap", + "sites": ["mobile/src/session/mobile-file-tap-open.ts"], + "schedules": [], + "steps": [ + { + "action": "tap", + "id": "tap" + }, + { + "complete": "files.resolveTerminalPath#1", + "params": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "exists": false, + "isDirectory": false + } + } + }, + { + "checkpoint": "missed" + } + ] + }, + { + "id": "file-tap-resolve-refused", + "operation": "files.terminal-path-tap", + "version": 1, + "family": "files.terminal-path-tap", + "sites": ["mobile/src/session/mobile-file-tap-open.ts"], + "schedules": [], + "steps": [ + { + "action": "tap", + "id": "tap" + }, + { + "complete": "files.resolveTerminalPath#1", + "params": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "file-tap-open-refused", + "operation": "files.terminal-path-tap", + "version": 1, + "family": "files.terminal-path-tap", + "sites": ["mobile/src/session/mobile-file-tap-open.ts"], + "schedules": [], + "steps": [ + { + "action": "tap", + "id": "tap" + }, + { + "complete": "files.resolveTerminalPath#1", + "params": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "relativePath": "src/app.ts", + "openTarget": { + "kind": "worktree-file", + "relativePath": "src/app.ts", + "absolutePath": "/repo/src/app.ts", + "provider": "ssh" + } + } + } + }, + { + "complete": "files.open#1", + "params": { + "worktree": "id:workspace-1", + "relativePath": "src/app.ts" + }, + "reply": { + "ok": false, + "error": { + "code": "file_locked", + "message": "File is locked" + } + } + }, + { + "checkpoint": "open-refused" + } + ] + }, + { + "id": "file-tap-previews-absolute-artifact", + "operation": "files.terminal-path-tap", + "version": 1, + "family": "files.terminal-path-tap", + "sites": ["mobile/src/session/mobile-file-tap-open.ts"], + "schedules": [], + "steps": [ + { + "action": "tap", + "id": "tap" + }, + { + "complete": "files.resolveTerminalPath#1", + "params": { + "crossWorkspace": true, + "cwd": "/repo", + "pathText": "src/app.ts", + "terminal": "terminal-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "exists": true, + "isDirectory": false, + "openTarget": { + "kind": "absolute-file", + "absolutePath": "/logs/run.txt", + "grantId": "grant-1" + } + } + } + }, + { + "checkpoint": "previewed" + } + ] + }, + { + "id": "structured-launch-unsupported", + "operation": "agentSession.structured-launch", + "version": 1, + "family": "agentSession.structured-launch", + "sites": ["mobile/src/session/mobile-structured-agent-session-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "claude", + "id": "claude" + }, + { + "complete": "agentSession.createSupport#1", + "params": { + "agent": "claude", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "supported": false, + "reason": "remote" + } + } + }, + { + "checkpoint": "unsupported" + } + ] + }, + { + "id": "structured-launch-support-refused", + "operation": "agentSession.structured-launch", + "version": 1, + "family": "agentSession.structured-launch", + "sites": ["mobile/src/session/mobile-structured-agent-session-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "claude", + "id": "claude" + }, + { + "complete": "agentSession.createSupport#1", + "params": { + "agent": "claude", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "method_not_found", + "message": "Unknown method" + } + } + }, + { + "checkpoint": "unsupported" + } + ] + }, + { + "id": "structured-launch-created", + "operation": "agentSession.structured-launch", + "version": 1, + "family": "agentSession.structured-launch", + "sites": ["mobile/src/session/mobile-structured-agent-session-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "claude", + "id": "claude" + }, + { + "complete": "agentSession.createSupport#1", + "params": { + "agent": "claude", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "supported": true + } + } + }, + { + "complete": "agentSession.create#1", + "params": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": null, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "ok": true, + "value": { + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + } + } + }, + { + "checkpoint": "created" + } + ] + }, + { + "id": "structured-launch-definitive-refusal", + "operation": "agentSession.structured-launch", + "version": 1, + "family": "agentSession.structured-launch", + "sites": ["mobile/src/session/mobile-structured-agent-session-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "claude", + "id": "claude" + }, + { + "complete": "agentSession.createSupport#1", + "params": { + "agent": "claude", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "supported": true + } + } + }, + { + "complete": "agentSession.create#1", + "params": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": null, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "ok": false, + "refusal": { + "code": "agent_session_unsupported", + "message": "No agent" + } + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "structured-launch-replays-dropped-create", + "operation": "agentSession.structured-launch", + "version": 1, + "family": "agentSession.structured-launch", + "sites": ["mobile/src/session/mobile-structured-agent-session-launch.ts"], + "schedules": [], + "steps": [ + { + "action": "claude", + "id": "claude" + }, + { + "complete": "agentSession.createSupport#1", + "params": { + "agent": "claude", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "supported": true + } + } + }, + { + "complete": "agentSession.create#1", + "params": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": null, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + }, + "reject": { + "message": "Connection lost", + "deliveryUnknown": true + } + }, + { + "complete": "agentSession.create#2", + "params": { + "agent": "claude", + "envelope": { + "clientOperationId": "1767225600000-00000000000040008000000000000002", + "expectedRuntimeFence": null, + "payloadFingerprint": "ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605", + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + }, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "ok": true, + "value": { + "sessionId": "claude_00000000_0000_4000_8000_000000000001" + } + } + } + }, + { + "checkpoint": "replayed" + } + ] + }, + { + "id": "session-markdown-tab-read", + "operation": "session.tab-documents", + "version": 1, + "family": "session.tab-documents", + "sites": ["mobile/src/session/use-mobile-session-document-readers.ts"], + "schedules": [], + "steps": [ + { + "action": "markdown", + "id": "markdown" + }, + { + "complete": "markdown.readTab#1", + "params": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "content": "# a", + "version": "v1", + "isDirty": false, + "editable": true + } + } + }, + { + "checkpoint": "read" + } + ] + }, + { + "id": "session-markdown-tab-disk-fallback", + "operation": "session.tab-documents", + "version": 1, + "family": "session.tab-documents", + "sites": ["mobile/src/session/use-mobile-session-document-readers.ts"], + "schedules": [], + "steps": [ + { + "action": "markdown", + "id": "markdown" + }, + { + "complete": "markdown.readTab#1", + "params": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "renderer_unavailable", + "message": "Renderer unavailable" + } + } + }, + { + "complete": "files.read#1", + "params": { + "relativePath": "docs/readme.md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "content": "# disk", + "truncated": false, + "byteLength": 6 + } + } + }, + { + "checkpoint": "fell-back" + } + ] + }, + { + "id": "session-markdown-tab-refused", + "operation": "session.tab-documents", + "version": 1, + "family": "session.tab-documents", + "sites": ["mobile/src/session/use-mobile-session-document-readers.ts"], + "schedules": [], + "steps": [ + { + "action": "markdown", + "id": "markdown" + }, + { + "complete": "markdown.readTab#1", + "params": { + "tabId": "tab-md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "tab_not_found", + "message": "No such tab" + } + } + }, + { + "checkpoint": "errored" + } + ] + }, + { + "id": "session-file-tab-read", + "operation": "session.tab-documents", + "version": 1, + "family": "session.tab-documents", + "sites": ["mobile/src/session/use-mobile-session-document-readers.ts"], + "schedules": [], + "steps": [ + { + "action": "file", + "id": "file" + }, + { + "complete": "files.read#1", + "params": { + "relativePath": "src/app.ts", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "content": "a\n", + "truncated": false, + "byteLength": 2 + } + } + }, + { + "checkpoint": "read" + } + ] + }, + { + "id": "session-terminal-list-merged", + "operation": "session.terminal-inventory", + "version": 1, + "family": "session.terminal-inventory", + "sites": ["mobile/src/session/use-mobile-session-terminal-list.ts"], + "schedules": [], + "steps": [ + { + "action": "fetch", + "id": "fetch" + }, + { + "complete": "terminal.list#1", + "params": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "terminals": [ + { + "handle": "terminal-1", + "title": "one" + }, + { + "handle": "terminal-2", + "title": "two" + } + ] + } + } + }, + { + "checkpoint": "listed" + } + ] + }, + { + "id": "session-terminal-list-dedupes-handles", + "operation": "session.terminal-inventory", + "version": 1, + "family": "session.terminal-inventory", + "sites": ["mobile/src/session/use-mobile-session-terminal-list.ts"], + "schedules": [], + "steps": [ + { + "action": "fetch", + "id": "fetch" + }, + { + "complete": "terminal.list#1", + "params": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "terminals": [ + { + "handle": "terminal-1", + "title": "one" + }, + { + "handle": "terminal-1", + "title": "renamed" + } + ] + } + } + }, + { + "checkpoint": "deduped" + } + ] + }, + { + "id": "session-terminal-list-refused", + "operation": "session.terminal-inventory", + "version": 1, + "family": "session.terminal-inventory", + "sites": ["mobile/src/session/use-mobile-session-terminal-list.ts"], + "schedules": [], + "steps": [ + { + "action": "fetch", + "id": "fetch" + }, + { + "complete": "terminal.list#1", + "params": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "session-terminal-list-empty-guarded", + "operation": "session.terminal-inventory", + "version": 1, + "family": "session.terminal-inventory", + "sites": ["mobile/src/session/use-mobile-session-terminal-list.ts"], + "schedules": [], + "steps": [ + { + "action": "no-empty", + "id": "no-empty" + }, + { + "complete": "terminal.list#1", + "params": { + "includeVisualLayouts": false, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "terminals": [] + } + } + }, + { + "checkpoint": "kept" + } + ] + }, + { + "id": "native-chat-readability-local-repo", + "operation": "session.native-chat-readability", + "version": 1, + "family": "session.native-chat-readability", + "sites": ["mobile/src/session/use-mobile-native-chat-readability.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "repo.list#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "repos": [ + { + "id": "repo-1", + "connectionId": null + } + ] + } + } + }, + { + "checkpoint": "readable" + } + ] + }, + { + "id": "native-chat-readability-remote-repo", + "operation": "session.native-chat-readability", + "version": 1, + "family": "session.native-chat-readability", + "sites": ["mobile/src/session/use-mobile-native-chat-readability.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "repo.list#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "repos": [ + { + "id": "repo-1", + "connectionId": "ssh-1" + } + ] + } + } + }, + { + "checkpoint": "unreadable" + } + ] + }, + { + "id": "native-chat-readability-refused", + "operation": "session.native-chat-readability", + "version": 1, + "family": "session.native-chat-readability", + "sites": ["mobile/src/session/use-mobile-native-chat-readability.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "repo.list#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": false, + "error": { + "code": "internal", + "message": "Scan failed" + } + } + }, + { + "checkpoint": "unreadable" + } + ] + }, + { + "id": "native-chat-stop-accepted", + "operation": "session.native-chat-stop", + "version": 1, + "family": "session.native-chat-stop", + "sites": ["mobile/src/session/use-mobile-native-chat-stop.ts"], + "schedules": [], + "steps": [ + { + "action": "stop", + "id": "stop" + }, + { + "complete": "terminal.send#1", + "params": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "orchestration.workerTerminalUserInput#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "reported": true + } + } + }, + { + "checkpoint": "first-accepted" + }, + { + "advance": 120 + }, + { + "complete": "terminal.send#2", + "params": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + }, + "optional": true, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "settled" + } + ] + }, + { + "id": "native-chat-stop-both-rejected", + "operation": "session.native-chat-stop", + "version": 1, + "family": "session.native-chat-stop", + "sites": ["mobile/src/session/use-mobile-native-chat-stop.ts"], + "schedules": [], + "steps": [ + { + "action": "stop", + "id": "stop" + }, + { + "complete": "terminal.send#1", + "params": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "advance": 120 + }, + { + "complete": "terminal.send#2", + "params": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + }, + "optional": true, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "checkpoint": "reported" + } + ] + }, + { + "id": "native-chat-stop-delivery-unknown", + "operation": "session.native-chat-stop", + "version": 1, + "family": "session.native-chat-stop", + "sites": ["mobile/src/session/use-mobile-native-chat-stop.ts"], + "schedules": [], + "steps": [ + { + "action": "stop", + "id": "stop" + }, + { + "complete": "terminal.send#1", + "params": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + }, + "reject": { + "message": "Connection lost", + "deliveryUnknown": true + } + }, + { + "advance": 120 + }, + { + "complete": "terminal.send#2", + "params": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "terminal": "terminal-1", + "text": "\u001b" + }, + "optional": true, + "reject": { + "message": "Connection lost", + "deliveryUnknown": true + } + }, + { + "checkpoint": "unconfirmed" + } + ] + }, + { + "id": "session-create-markdown-note", + "operation": "session.content-create", + "version": 1, + "family": "session.content-create", + "sites": ["mobile/src/session/use-mobile-session-content-create-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "markdown", + "id": "markdown" + }, + { + "complete": "status.get#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + }, + { + "complete": "worktree.show#1", + "params": { + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + }, + { + "complete": "files.createFile#1", + "params": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "created": true + } + } + }, + { + "complete": "files.open#1", + "params": { + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "opened": true + } + } + }, + { + "advance": 300 + }, + { + "checkpoint": "created" + } + ] + }, + { + "id": "session-create-markdown-name-collision", + "operation": "session.content-create", + "version": 1, + "family": "session.content-create", + "sites": ["mobile/src/session/use-mobile-session-content-create-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "markdown", + "id": "markdown" + }, + { + "complete": "status.get#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "capabilities": ["files.mutation-ownership.v1"] + } + } + }, + { + "complete": "worktree.show#1", + "params": { + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "worktree": { + "hostId": "local" + } + } + } + }, + { + "complete": "files.createFile#1", + "params": { + "expectedExecutionHostId": "local", + "relativePath": "untitled.md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "file_exists", + "message": "File already exists" + } + } + }, + { + "complete": "files.createFile#2", + "params": { + "expectedExecutionHostId": "local", + "relativePath": "untitled-2.md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "created": true + } + } + }, + { + "complete": "files.open#1", + "params": { + "relativePath": "untitled-2.md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "opened": true + } + } + }, + { + "advance": 300 + }, + { + "checkpoint": "created-second" + } + ] + }, + { + "id": "session-create-browser-tab", + "operation": "session.content-create", + "version": 1, + "family": "session.content-create", + "sites": ["mobile/src/session/use-mobile-session-content-create-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "browser", + "id": "browser" + }, + { + "complete": "browser.tabCreate#1", + "params": { + "activate": true, + "url": "https://example.com/", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "browserPageId": "page-1" + } + } + }, + { + "advance": 1200 + }, + { + "checkpoint": "created" + } + ] + }, + { + "id": "session-create-browser-refused", + "operation": "session.content-create", + "version": 1, + "family": "session.content-create", + "sites": ["mobile/src/session/use-mobile-session-content-create-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "browser", + "id": "browser" + }, + { + "complete": "browser.tabCreate#1", + "params": { + "activate": true, + "url": "https://example.com/", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "browser_unavailable", + "message": "Browser unavailable" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "session-tab-close-terminal", + "operation": "session.tab-close", + "version": 1, + "family": "session.tab-close", + "sites": ["mobile/src/session/use-mobile-session-close-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "close-terminal", + "id": "close-terminal" + }, + { + "complete": "terminal.close#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "closed": true + } + } + }, + { + "checkpoint": "closed" + } + ] + }, + { + "id": "session-tab-close-refused-keeps-tab", + "operation": "session.tab-close", + "version": 1, + "family": "session.tab-close", + "sites": ["mobile/src/session/use-mobile-session-close-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "close-terminal", + "id": "close-terminal" + }, + { + "complete": "terminal.close#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": false, + "error": { + "code": "terminal_not_found", + "message": "No such terminal" + } + } + }, + { + "checkpoint": "kept" + } + ] + }, + { + "id": "session-tab-rename", + "operation": "session.tab-close", + "version": 1, + "family": "session.tab-close", + "sites": ["mobile/src/session/use-mobile-session-close-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "rename", + "id": "rename", + "args": { + "title": "build" + } + }, + { + "complete": "terminal.rename#1", + "params": { + "terminal": "terminal-1", + "title": "build" + }, + "reply": { + "ok": true, + "result": { + "renamed": true + } + } + }, + { + "advance": 300 + }, + { + "checkpoint": "renamed" + } + ] + }, + { + "id": "session-tab-close-session-tab", + "operation": "session.tab-close", + "version": 1, + "family": "session.tab-close", + "sites": ["mobile/src/session/use-mobile-session-close-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "close-tab", + "id": "close-tab" + }, + { + "complete": "session.tabs.close#1", + "params": { + "reason": "user", + "tabId": "tab-1", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "closed": true + } + } + }, + { + "checkpoint": "closed" + } + ] + }, + { + "id": "review-mark-reviewed-persists", + "operation": "session.diff-review-actions", + "version": 1, + "family": "session.diff-review-actions", + "sites": [ + "mobile/src/session/use-mobile-diff-review-interactions.ts", + "mobile/src/session/use-mobile-diff-review-comment-actions.ts", + "mobile/src/session/use-mobile-diff-review-git-actions.ts", + "mobile/src/session/use-mobile-diff-review-send-actions.ts", + "mobile/src/session/mobile-native-chat-stale-input.ts" + ], + "schedules": [], + "steps": [ + { + "action": "mark-reviewed", + "id": "mark-reviewed" + }, + { + "complete": "worktree.set#1", + "params": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "worktreeId": "workspace-1", + "side": "modified" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$undefined": true + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$undefined": true + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "updated": true + } + } + }, + { + "checkpoint": "persisted" + } + ] + }, + { + "id": "review-mark-reviewed-rolls-back", + "operation": "session.diff-review-actions", + "version": 1, + "family": "session.diff-review-actions", + "sites": [ + "mobile/src/session/use-mobile-diff-review-interactions.ts", + "mobile/src/session/use-mobile-diff-review-comment-actions.ts", + "mobile/src/session/use-mobile-diff-review-git-actions.ts", + "mobile/src/session/use-mobile-diff-review-send-actions.ts", + "mobile/src/session/mobile-native-chat-stale-input.ts" + ], + "schedules": [], + "steps": [ + { + "action": "mark-reviewed", + "id": "mark-reviewed" + }, + { + "complete": "worktree.set#1", + "params": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "worktreeId": "workspace-1", + "side": "modified" + } + ], + "mobileDiffReview": { + "completedAt": 1767225600000, + "files": { + "unstaged:src/app.ts": { + "filePath": "src/app.ts", + "key": "unstaged:src/app.ts", + "lastOpenedAt": { + "$undefined": true + }, + "lastSeenDiffIdentity": "identity-1", + "oldPath": { + "$undefined": true + }, + "reviewDiffIdentity": "identity-1", + "reviewedAt": 1767225600000, + "scope": "unstaged" + } + }, + "updatedAt": 1767225600000, + "version": 1 + }, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "worktree_locked", + "message": "Workspace is locked" + } + } + }, + { + "checkpoint": "rolled-back" + } + ] + }, + { + "id": "review-stage-file", + "operation": "session.diff-review-actions", + "version": 1, + "family": "session.diff-review-actions", + "sites": [ + "mobile/src/session/use-mobile-diff-review-interactions.ts", + "mobile/src/session/use-mobile-diff-review-comment-actions.ts", + "mobile/src/session/use-mobile-diff-review-git-actions.ts", + "mobile/src/session/use-mobile-diff-review-send-actions.ts", + "mobile/src/session/mobile-native-chat-stale-input.ts" + ], + "schedules": [], + "steps": [ + { + "action": "stage", + "id": "stage" + }, + { + "complete": "git.stage#1", + "params": { + "filePath": "src/app.ts", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "staged": true + } + } + }, + { + "checkpoint": "staged" + } + ] + }, + { + "id": "review-stage-refused", + "operation": "session.diff-review-actions", + "version": 1, + "family": "session.diff-review-actions", + "sites": [ + "mobile/src/session/use-mobile-diff-review-interactions.ts", + "mobile/src/session/use-mobile-diff-review-comment-actions.ts", + "mobile/src/session/use-mobile-diff-review-git-actions.ts", + "mobile/src/session/use-mobile-diff-review-send-actions.ts", + "mobile/src/session/mobile-native-chat-stale-input.ts" + ], + "schedules": [], + "steps": [ + { + "action": "discard", + "id": "discard" + }, + { + "complete": "git.discard#1", + "params": { + "filePath": "src/app.ts", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "git_conflict", + "message": "Cannot discard during a merge" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "review-open-in-session", + "operation": "session.diff-review-actions", + "version": 1, + "family": "session.diff-review-actions", + "sites": [ + "mobile/src/session/use-mobile-diff-review-interactions.ts", + "mobile/src/session/use-mobile-diff-review-comment-actions.ts", + "mobile/src/session/use-mobile-diff-review-git-actions.ts", + "mobile/src/session/use-mobile-diff-review-send-actions.ts", + "mobile/src/session/mobile-native-chat-stale-input.ts" + ], + "schedules": [], + "steps": [ + { + "action": "open-in-session", + "id": "open-in-session" + }, + { + "complete": "files.openDiff#1", + "params": { + "relativePath": "src/app.ts", + "staged": false, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "opened": true + } + } + }, + { + "checkpoint": "opened" + } + ] + }, + { + "id": "review-send-notes-heals-stale-input", + "operation": "session.diff-review-actions", + "version": 1, + "family": "session.diff-review-actions", + "sites": [ + "mobile/src/session/use-mobile-diff-review-interactions.ts", + "mobile/src/session/use-mobile-diff-review-comment-actions.ts", + "mobile/src/session/use-mobile-diff-review-git-actions.ts", + "mobile/src/session/use-mobile-diff-review-send-actions.ts", + "mobile/src/session/mobile-native-chat-stale-input.ts" + ], + "schedules": [], + "steps": [ + { + "action": "mark-stale", + "id": "mark-stale" + }, + { + "action": "send-notes", + "id": "send-notes" + }, + { + "complete": "terminal.send#1", + "params": { + "enter": false, + "terminal": "terminal-1", + "text": "\u0015" + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "checkpoint": "healed" + } + ] + }, + { + "id": "review-create-terminal-refused", + "operation": "session.diff-review-actions", + "version": 1, + "family": "session.diff-review-actions", + "sites": [ + "mobile/src/session/use-mobile-diff-review-interactions.ts", + "mobile/src/session/use-mobile-diff-review-comment-actions.ts", + "mobile/src/session/use-mobile-diff-review-git-actions.ts", + "mobile/src/session/use-mobile-diff-review-send-actions.ts", + "mobile/src/session/mobile-native-chat-stale-input.ts" + ], + "schedules": [], + "steps": [ + { + "action": "create-and-send", + "id": "create-and-send" + }, + { + "complete": "session.tabs.createTerminal#1", + "params": { + "activate": false, + "navigation": "caller", + "select": true, + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "worktree_busy", + "message": "Workspace is busy" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "session-diff-notes-loaded", + "operation": "session.diff-notes", + "version": 1, + "family": "session.diff-notes", + "sites": ["mobile/src/session/use-mobile-session-diff-comments.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "worktree.show#1", + "params": { + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "worktree": { + "diffComments": [ + { + "body": "needs a test", + "createdAt": 0, + "filePath": "src/app.ts", + "id": "note-1", + "lineNumber": 4, + "worktreeId": "workspace-1" + } + ] + } + } + } + }, + { + "checkpoint": "loaded" + } + ] + }, + { + "id": "session-diff-notes-load-refused", + "operation": "session.diff-notes", + "version": 1, + "family": "session.diff-notes", + "sites": ["mobile/src/session/use-mobile-session-diff-comments.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "worktree.show#1", + "params": { + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "worktree_not_found", + "message": "No such workspace" + } + } + }, + { + "checkpoint": "unchanged" + } + ] + }, + { + "id": "session-markdown-saved", + "operation": "session.markdown-save", + "version": 1, + "family": "session.markdown-save", + "sites": ["mobile/src/session/use-mobile-session-markdown-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "save", + "id": "save" + }, + { + "complete": "markdown.saveTab#1", + "params": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": true, + "result": { + "content": "# b", + "version": "v2", + "isDirty": false + } + } + }, + { + "checkpoint": "saved" + } + ] + }, + { + "id": "session-markdown-save-conflict", + "operation": "session.markdown-save", + "version": 1, + "family": "session.markdown-save", + "sites": ["mobile/src/session/use-mobile-session-markdown-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "save", + "id": "save" + }, + { + "complete": "markdown.saveTab#1", + "params": { + "baseVersion": "v1", + "content": "# b", + "tabId": "tab-md", + "worktree": "id:workspace-1" + }, + "reply": { + "ok": false, + "error": { + "code": "version_conflict", + "message": "Document changed on disk" + } + } + }, + { + "checkpoint": "conflicted" + } + ] + }, + { + "id": "quick-commands-loaded-and-saved", + "operation": "settings.quick-commands", + "version": 1, + "family": "settings.quick-commands", + "sites": ["mobile/src/session/use-quick-commands.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "settings.getTerminalQuickCommands#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "terminalQuickCommands": [] + } + } + }, + { + "action": "persist", + "id": "persist" + }, + { + "complete": "settings.updateTerminalQuickCommands#1", + "params": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + }, + "reply": { + "ok": true, + "result": { + "terminalQuickCommands": [ + { + "id": "qc-1", + "label": "build", + "command": "pnpm build", + "appendEnter": true + } + ] + } + } + }, + { + "checkpoint": "saved" + } + ] + }, + { + "id": "quick-commands-save-refused-rolls-back", + "operation": "settings.quick-commands", + "version": 1, + "family": "settings.quick-commands", + "sites": ["mobile/src/session/use-quick-commands.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "settings.getTerminalQuickCommands#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "terminalQuickCommands": [] + } + } + }, + { + "action": "persist", + "id": "persist" + }, + { + "complete": "settings.updateTerminalQuickCommands#1", + "params": { + "mutation": { + "command": { + "appendEnter": true, + "command": "pnpm build", + "id": "qc-1", + "label": "build" + }, + "type": "upsert" + } + }, + "reply": { + "ok": false, + "error": { + "code": "settings_locked", + "message": "Settings are locked" + } + } + }, + { + "checkpoint": "rolled-back" + } + ] + }, + { + "id": "quick-commands-load-refused", + "operation": "settings.quick-commands", + "version": 1, + "family": "settings.quick-commands", + "sites": ["mobile/src/session/use-quick-commands.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "settings.getTerminalQuickCommands#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": false, + "error": { + "code": "method_not_found", + "message": "Unknown method" + } + } + }, + { + "checkpoint": "errored" + } + ] + }, + { + "id": "native-chat-image-upload-start-refused", + "operation": "nativeChat.image-upload", + "version": 1, + "family": "nativeChat.image-upload", + "sites": ["mobile/src/session/mobile-native-chat-image-attachment.ts"], + "schedules": [], + "steps": [ + { + "action": "normal", + "id": "normal" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": false, + "error": { + "code": "too_large", + "message": "Image is too large" + } + } + }, + { + "checkpoint": "refused" + } + ] + }, + { + "id": "native-chat-image-upload-single", + "operation": "nativeChat.image-upload", + "version": 1, + "family": "nativeChat.image-upload", + "sites": ["mobile/src/session/mobile-native-chat-image-attachment.ts"], + "schedules": [], + "steps": [ + { + "action": "normal", + "id": "normal" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-1", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#1", + "params": { + "uploadId": "upload-1" + }, + "reply": { + "ok": true, + "result": "/tmp/img-1.png" + } + }, + { + "checkpoint": "uploaded" + } + ] + }, + { + "id": "native-chat-image-upload-two", + "operation": "nativeChat.image-upload", + "version": 1, + "family": "nativeChat.image-upload", + "sites": ["mobile/src/session/mobile-native-chat-image-attachment.ts"], + "schedules": [], + "steps": [ + { + "action": "two", + "id": "two" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-1", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#1", + "params": { + "uploadId": "upload-1" + }, + "reply": { + "ok": true, + "result": "/tmp/img-1.png" + } + }, + { + "complete": "clipboard.startImageUpload#2", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-2" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#2", + "params": { + "uploadId": "upload-2", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#2", + "params": { + "uploadId": "upload-2" + }, + "reply": { + "ok": true, + "result": "/tmp/img-2.png" + } + }, + { + "checkpoint": "uploaded-both" + } + ] + }, + { + "id": "native-chat-image-upload-second-fails", + "operation": "nativeChat.image-upload", + "version": 1, + "family": "nativeChat.image-upload", + "sites": ["mobile/src/session/mobile-native-chat-image-attachment.ts"], + "schedules": [], + "steps": [ + { + "action": "two", + "id": "two" + }, + { + "complete": "clipboard.startImageUpload#1", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": true, + "result": { + "uploadId": "upload-1" + } + } + }, + { + "complete": "clipboard.appendImageUploadChunk#1", + "params": { + "uploadId": "upload-1", + "offset": 0, + "contentBase64": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "reply": { + "ok": true, + "result": { + "received": 32 + } + } + }, + { + "complete": "clipboard.commitImageUpload#1", + "params": { + "uploadId": "upload-1" + }, + "reply": { + "ok": true, + "result": "/tmp/img-1.png" + } + }, + { + "complete": "clipboard.startImageUpload#2", + "params": { + "connectionId": "connection-1", + "expectedBase64Length": 32 + }, + "reply": { + "ok": false, + "error": { + "code": "too_large", + "message": "Image is too large" + } + } + }, + { + "checkpoint": "partial" + } + ] + }, + { + "id": "native-chat-image-upload-cancelled", + "operation": "nativeChat.image-upload", + "version": 1, + "family": "nativeChat.image-upload", + "sites": ["mobile/src/session/mobile-native-chat-image-attachment.ts"], + "schedules": [], + "steps": [ + { + "action": "cancelled", + "id": "cancelled" + }, + { + "checkpoint": "no-wire" + } + ] + }, + { + "id": "files-explorer-legacy-fallback", + "operation": "files.explorer-screen", + "version": 1, + "family": "files.explorer-screen", + "sites": ["mobile/src/files/MobileFileExplorerPanel.tsx"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "checkpoint": "loading" + }, + { + "complete": "files.readDir#1", + "params": { + "worktree": "id:wt-files", + "relativePath": "" + }, + "reply": { + "ok": false, + "error": { + "code": "method_not_found", + "message": "Unknown method" + } + } + }, + { + "complete": "files.list#1", + "params": { + "worktree": "id:wt-files" + }, + "reply": { + "ok": true, + "result": { + "files": [ + { + "relativePath": "README.md", + "basename": "README.md", + "kind": "text" + }, + { + "relativePath": "src/app.ts", + "basename": "app.ts", + "kind": "text" + } + ], + "totalCount": 2, + "truncated": true + } + } + }, + { + "checkpoint": "legacy-listed" + } + ] + }, + { + "id": "files-explorer-readdir", + "operation": "files.explorer-screen", + "version": 1, + "family": "files.explorer-screen", + "sites": ["mobile/src/files/MobileFileExplorerPanel.tsx"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "checkpoint": "loading" + }, + { + "complete": "files.readDir#1", + "params": { + "worktree": "id:wt-files", + "relativePath": "" + }, + "reply": { + "ok": true, + "result": [ + { + "name": "src", + "isDirectory": true + }, + { + "name": "README.md", + "isDirectory": false + } + ] + } + }, + { + "checkpoint": "listed" + } + ] + }, + { + "id": "new-workspace-repositories-fulfilled", + "operation": "workspace.repositories", + "version": 1, + "family": "components.new-workspace-repositories", + "sites": ["mobile/src/components/use-new-workspace-repositories.ts"], + "schedules": [], + "deviceStore": { + "orca:last-visited-worktree": "{\"hostId\":\"host-1\",\"worktreeId\":\"repo-b::/tmp/repo-b\"}" + }, + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "checkpoint": "loading" + }, + { + "complete": "repo.list#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "repos": [ + { + "id": "repo-a", + "displayName": "alpha", + "path": "/tmp/repo-a" + }, + { + "id": "repo-b", + "displayName": "beta", + "path": "/tmp/repo-b" + } + ] + } + } + }, + { + "checkpoint": "selected" + } + ] + }, + { + "id": "codex-reset-credit-consumed", + "operation": "accounts.codex-reset-credit", + "version": 1, + "family": "components.codex-reset-credit", + "sites": [ + "mobile/src/components/codex-reset-credit.ts", + "mobile/src/storage/codex-reset-attempt-journal.ts" + ], + "schedules": [], + "deviceStore": {}, + "steps": [ + { + "action": "confirm", + "id": "confirm" + }, + { + "checkpoint": "requested" + }, + { + "complete": "accounts.consumeCodexResetCredit#1", + "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]" + } + }, + "reply": { + "ok": true, + "result": { + "outcome": "reset", + "scope": { + "target": { + "runtime": "host", + "wslDistro": null + }, + "accountId": "codex-1", + "accountRevision": 1700000000000, + "offerRevision": "v1:[1,null,null,[],null,null,1700000000000]" + }, + "snapshot": { + "claude": { + "accounts": [], + "activeAccountId": null + }, + "codex": { + "accounts": [ + { + "id": "codex-1", + "email": "codex@example.test", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "codex-1", + "activeAccountIdsByRuntime": { + "host": "codex-1", + "wsl": {} + } + }, + "rateLimits": { + "claude": null, + "codex": { + "provider": "codex", + "session": null, + "weekly": null, + "rateLimitResetCredits": { + "availableCount": 1 + }, + "updatedAt": 1700000000000, + "error": null, + "status": "ok" + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + } + } + }, + { + "checkpoint": "consumed" + } + ] + }, + { + "id": "codex-reset-credit-resumed", + "operation": "accounts.codex-reset-credit", + "version": 1, + "family": "components.codex-reset-credit", + "sites": ["mobile/src/storage/codex-reset-attempt-journal.ts"], + "schedules": [], + "deviceStore": { + "orca:codex-reset-credit-attempt:v1:0832055c2fa90e8e145c588ad4db656a2fc2840ed2e851a28494eae769db9b3e": "{\"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\":\"11111111-1111-4111-8111-111111111111\"}" + }, + "steps": [ + { + "action": "confirm", + "id": "confirm" + }, + { + "checkpoint": "requested" + }, + { + "complete": "accounts.consumeCodexResetCredit#1", + "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]" + } + }, + "reply": { + "ok": true, + "result": { + "outcome": "alreadyRedeemed", + "scope": { + "target": { + "runtime": "host", + "wslDistro": null + }, + "accountId": "codex-1", + "accountRevision": 1700000000000, + "offerRevision": "v1:[1,null,null,[],null,null,1700000000000]" + }, + "snapshot": { + "claude": { + "accounts": [], + "activeAccountId": null + }, + "codex": { + "accounts": [ + { + "id": "codex-1", + "email": "codex@example.test", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "codex-1", + "activeAccountIdsByRuntime": { + "host": "codex-1", + "wsl": {} + } + }, + "rateLimits": { + "claude": null, + "codex": { + "provider": "codex", + "session": null, + "weekly": null, + "rateLimitResetCredits": { + "availableCount": 1 + }, + "updatedAt": 1700000000000, + "error": null, + "status": "ok" + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + } + } + }, + { + "checkpoint": "consumed" + } + ] + }, + { + "id": "push-dismissal-tray-reconciled", + "operation": "notifications.push-dismissal", + "version": 1, + "family": "notifications.push-dismissal", + "sites": ["mobile/src/notifications/push-dismissal-reconciliation.ts"], + "schedules": [], + "deviceStore": { + "orca:hosts": "[{\"id\":\"host-1\",\"name\":\"Desk\",\"endpoint\":\"wss://desk.test\",\"publicKeyB64\":\"AAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8=\",\"lastConnected\":1700000000000}]" + }, + "deviceState": { + "notificationTray": [ + { + "request": { + "identifier": "tray-1", + "content": { + "data": { + "hostFingerprint": "Yw3NKWbEM2aRElRI", + "kind": "alert", + "notificationId": "note-1", + "notificationEpoch": "epoch-1", + "notificationSeq": 7 + } + } + } + } + ] + }, + "steps": [ + { + "action": "catchup", + "id": "catchup" + }, + { + "checkpoint": "requested" + }, + { + "complete": "notifications.getMissedSince#1", + "params": { + "lastSeenSeq": 9007199254740991, + "deliveredPushes": [ + { + "notificationId": "note-1", + "notificationEpoch": "epoch-1", + "notificationSeq": 7 + } + ] + }, + "reply": { + "ok": true, + "result": { + "dismissedPushes": [ + { + "notificationId": "note-1", + "notificationEpoch": "epoch-1", + "notificationSeq": 7 + } + ] + } + } + }, + { + "checkpoint": "reconciled" + } + ] } ] } diff --git a/mobile/src/session/ai-vault-resume-launch.ts b/mobile/src/session/ai-vault-resume-launch.ts index 11608084814..73b47e9e859 100644 --- a/mobile/src/session/ai-vault-resume-launch.ts +++ b/mobile/src/session/ai-vault-resume-launch.ts @@ -16,12 +16,10 @@ import { normalizeAiVaultResumeFilePath } from '../../../src/shared/ai-vault-res import type { TuiAgent } from '../../../src/shared/tui-agent' import { parseWslUncPath } from '../../../src/shared/wsl-paths' import { resolveWindowsShellStartupFamily } from '../../../src/shared/windows-terminal-shell' -import type { RpcClient } from '../transport/rpc-client' -import { - readMobileReviewCreatedTerminal, - readMobileReviewTerminalSendAccepted, - type MobileReviewTerminalTab -} from './mobile-diff-review-rpc' +import type { RpcOperationSender } from '../transport/rpc-operation-sender' +import { interpretOrThrowRefusalMessage } from '../transport/rpc-refusal-message' +import { reviewTerminalCreateRun, reviewTerminalSendRun } from './mobile-review-terminal-operations' +import type { MobileReviewTerminalTab } from './mobile-diff-review-rpc' import type { MobileAiVaultResumeTargetStatus } from '../agent-history/agent-history-resume-target' export function buildMobileAiVaultResumeCommand(args: { @@ -151,12 +149,14 @@ function normalizeMobileAiVaultResumeCommandOverrides( } export async function resumeAiVaultSessionInTerminal( - client: Pick, + client: RpcOperationSender, worktreeId: string, launch: MobileAiVaultResumeLaunch & { clientMutationId?: string } ): Promise { - const created = await client.sendRequest( - 'session.tabs.createTerminal', + // Each request is awaited outside its catch so a transport drop propagates as the original error + // object; only a refusal is rewritten into this step's own copy. + const created = await reviewTerminalCreateRun.request( + client, { worktree: `id:${worktreeId}`, ...(launch.env ? { env: launch.env } : {}), @@ -170,15 +170,16 @@ export async function resumeAiVaultSessionInTerminal( }, { timeoutMs: RESUME_RPC_TIMEOUT_MS } ) - if (!created.ok) { - throw new Error(created.error?.message || 'Failed to create terminal') - } - const terminalTab = readMobileReviewCreatedTerminal(created.result) + let terminalTab + terminalTab = interpretOrThrowRefusalMessage( + () => reviewTerminalCreateRun.interpret(created), + 'Failed to create terminal' + ) if (!terminalTab) { throw new Error('Created terminal response was invalid') } - const sent = await client.sendRequest( - 'terminal.send', + const sent = await reviewTerminalSendRun.request( + client, { terminal: terminalTab.terminal, text: launch.command, @@ -186,10 +187,12 @@ export async function resumeAiVaultSessionInTerminal( }, { timeoutMs: RESUME_RPC_TIMEOUT_MS } ) - if (!sent.ok) { - throw new Error(sent.error?.message || 'Failed to send resume command') - } - if (!readMobileReviewTerminalSendAccepted(sent.result)) { + let accepted + accepted = interpretOrThrowRefusalMessage( + () => reviewTerminalSendRun.interpret(sent), + 'Failed to send resume command' + ) + if (!accepted) { throw new Error('Terminal input is locked') } return terminalTab diff --git a/mobile/src/session/ai-vault-resume-preparation.ts b/mobile/src/session/ai-vault-resume-preparation.ts index 4265442ff66..a9047156874 100644 --- a/mobile/src/session/ai-vault-resume-preparation.ts +++ b/mobile/src/session/ai-vault-resume-preparation.ts @@ -5,14 +5,15 @@ import { isPerAccountManagedCodexHome } from '../../../src/shared/ai-vault-resume-preparation' import { LOCAL_EXECUTION_HOST_ID } from '../../../src/shared/execution-host' -import type { RpcClient } from '../transport/rpc-client' +import { aiVaultResumePreparationRun } from './mobile-session-launch-operations' +import type { RpcOperationSender } from '../transport/rpc-operation-sender' // Why: without an explicit timeout, a socket drop mid-resume parks the request // on the reconnect waiter for the full reconnect budget, pinning the spinner. export const RESUME_RPC_TIMEOUT_MS = 30_000 export async function prepareMobileAiVaultSessionResume( - client: Pick, + client: RpcOperationSender, session: AiVaultSession ): Promise { // Why: per-account repinning runs on the serving host, whose account @@ -26,8 +27,8 @@ export async function prepareMobileAiVaultSessionResume( ) { return session } - const response = await client.sendRequest( - 'aiVault.prepareSessionResume', + const response = await aiVaultResumePreparationRun.request( + client, { agent: session.agent, filePath: session.filePath, @@ -45,7 +46,8 @@ export async function prepareMobileAiVaultSessionResume( response.error?.message || 'Could not prepare this legacy Codex session. Retry resume.' ) } - const result = response.result as { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const result = aiVaultResumePreparationRun.interpret(response) as { useRealCodexHome?: unknown substituteCodexHome?: unknown } | null diff --git a/mobile/src/session/mobile-clipboard-image-operations.ts b/mobile/src/session/mobile-clipboard-image-operations.ts new file mode 100644 index 00000000000..b4c2facb147 --- /dev/null +++ b/mobile/src/session/mobile-clipboard-image-operations.ts @@ -0,0 +1,70 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' + +// The chunked clipboard image upload: open a slot, append the base64 in chunks, commit, and abort +// what a failure left behind. Every leg raises the host's own message, because the composer shows +// it verbatim and has no copy of its own for a failed transfer. + +/** + * Opening an upload slot. Its refusal is read raw before interpretation: `method_not_found` is what + * an older host answers, and a small enough image then goes over the single-frame method instead. + * No acceptance policy carries a code, so that branch stays on the reply. + */ +export const clipboardImageUploadStart = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'clipboard.start-image-upload', + method: 'clipboard.startImageUpload', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('clipboard-image-upload-slot') + }) +) + +export const clipboardImageUploadAppend = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'clipboard.append-image-upload-chunk', + method: 'clipboard.appendImageUploadChunk', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('clipboard-image-chunk-appended') + }) +) + +/** The commit and the legacy single-frame write both answer the host path as a bare string. */ +export const clipboardImageUploadCommit = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'clipboard.commit-image-upload', + method: 'clipboard.commitImageUpload', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('clipboard-image-path') + }) +) + +export const clipboardImageSaveAsTempFile = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'clipboard.save-image-as-temp-file', + method: 'clipboard.saveImageAsTempFile', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('clipboard-image-path') + }) +) + +/** + * Releasing the slot a failed upload left open. Its own outcome is discarded whatever happens — the + * error the caller is about to rethrow is the one that matters — so it skips rather than throws and + * cannot turn a reported failure into a different one. + */ +export const clipboardImageUploadAbort = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'clipboard.abort-image-upload-or-skip', + method: 'clipboard.abortImageUpload', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('clipboard-image-upload-aborted') + }) +) + +/** What a clipboard image send takes, named from an operation so no module names the raw port. */ +export type MobileClipboardImageRpcSender = Parameters[0] diff --git a/mobile/src/session/mobile-clipboard-image.ts b/mobile/src/session/mobile-clipboard-image.ts index 578dabefcb9..675a0b0358e 100644 --- a/mobile/src/session/mobile-clipboard-image.ts +++ b/mobile/src/session/mobile-clipboard-image.ts @@ -1,6 +1,12 @@ -import type { RpcClient } from '../transport/rpc-client' import { isLogicalClientCutoverError } from '../transport/stable-logical-rpc-client' -import type { RpcFailure, RpcSuccess } from '../transport/types' +import { + clipboardImageSaveAsTempFile, + clipboardImageUploadAbort, + clipboardImageUploadAppend, + clipboardImageUploadCommit, + clipboardImageUploadStart, + type MobileClipboardImageRpcSender +} from './mobile-clipboard-image-operations' export const MOBILE_CLIPBOARD_IMAGE_MAX_BASE64_CHARS = 24 * 1024 * 1024 export const MOBILE_CLIPBOARD_IMAGE_UPLOAD_CHUNK_BASE64_CHARS = 512 * 1024 @@ -94,15 +100,8 @@ export async function prepareMobileClipboardImageBase64( return data } -function assertSuccess(response: RpcSuccess | RpcFailure): T { - if (!response.ok) { - throw new Error(response.error.message) - } - return response.result as T -} - export async function saveMobileClipboardImageAsTempFile( - client: Pick, + client: MobileClipboardImageRpcSender, imageData: string, args?: { connectionId?: string | null } ): Promise { @@ -124,27 +123,35 @@ export async function saveMobileClipboardImageAsTempFile( } async function uploadMobileClipboardImageTransaction( - client: Pick, + client: MobileClipboardImageRpcSender, contentBase64: string, connectionId: string | null ): Promise { - const startResponse = await client.sendRequest('clipboard.startImageUpload', { + const startResponse = await clipboardImageUploadStart.request(client, { expectedBase64Length: contentBase64.length, connectionId }) + // Why the raw refusal: a host too old to offer a slot answers with a code, and a small enough + // image then goes over the single-frame method — no acceptance policy carries the code. if (!startResponse.ok) { if ( startResponse.error.code === 'method_not_found' && contentBase64.length <= MOBILE_CLIPBOARD_IMAGE_SINGLE_FRAME_FALLBACK_BASE64_CHARS ) { - return assertSuccess( - await client.sendRequest('clipboard.saveImageAsTempFile', { contentBase64, connectionId }) - ) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + return clipboardImageSaveAsTempFile.interpret( + await clipboardImageSaveAsTempFile.request(client, { contentBase64, connectionId }) + ) as string } throw new Error(startResponse.error.message) } + // Why the raw result rather than the interpretation: a success carrying no result throws a + // TypeError here, and V8 puts the destructured expression's source text in its message — which + // the composer then shows. Reading the slot off the accepted payload would rewrite that sentence + // for every user who hits a malformed reply, which is the one change this migration must not make. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the same cast main made, kept so the thrown message is the same one. const { uploadId } = startResponse.result as { uploadId: string } try { for ( @@ -152,8 +159,8 @@ async function uploadMobileClipboardImageTransaction( offset < contentBase64.length; offset += MOBILE_CLIPBOARD_IMAGE_UPLOAD_CHUNK_BASE64_CHARS ) { - assertSuccess( - await client.sendRequest('clipboard.appendImageUploadChunk', { + clipboardImageUploadAppend.interpret( + await clipboardImageUploadAppend.request(client, { uploadId, offset, contentBase64: contentBase64.slice( @@ -163,13 +170,14 @@ async function uploadMobileClipboardImageTransaction( }) ) } - return assertSuccess( - await client.sendRequest('clipboard.commitImageUpload', { uploadId }) - ) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + return clipboardImageUploadCommit.interpret( + await clipboardImageUploadCommit.request(client, { uploadId }) + ) as string } catch (error) { // Why: failed mobile image sends create server-side upload state; abort so // the bounded upload slot is released immediately instead of waiting for TTL. - await client.sendRequest('clipboard.abortImageUpload', { uploadId }).catch(() => {}) + await clipboardImageUploadAbort.request(client, { uploadId }).catch(() => {}) throw error } } diff --git a/mobile/src/session/mobile-diff-review-git-operations.ts b/mobile/src/session/mobile-diff-review-git-operations.ts new file mode 100644 index 00000000000..846a7846737 --- /dev/null +++ b/mobile/src/session/mobile-diff-review-git-operations.ts @@ -0,0 +1,46 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' +import type { GitMutationMethod } from './mobile-diff-review-screen-model' + +// The three file-level git mutations the review screen runs. Each is its own operation because an +// operation fixes its method; the screen picks between them by the action the user tapped. + +/** + * Two policies over the same three methods, because the screen means two different things by them. + * + * A single-file action is one thing the user asked for, so a refusal is raised with the host's own + * message and the screen shows it. "Stage all reviewed" is a loop over many files that reports a + * count, so each refusal is counted rather than raised — one locked file must not abandon the rest. + */ +function reviewGitMutation(name: string, method: GitMutationMethod) { + return bindDeferredRpcOperation( + defineRpcOperation({ + name, + method, + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('review-git-mutation') + }) + ) +} + +export const reviewGitStage = reviewGitMutation('git.review-stage', 'git.stage') +export const reviewGitUnstage = reviewGitMutation('git.review-unstage', 'git.unstage') +export const reviewGitDiscard = reviewGitMutation('git.review-discard', 'git.discard') + +/** The bulk arm's `git.stage`: a refused file is a tally entry, never the end of the sweep. */ +export const reviewGitStageRun = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'git.review-stage-reviewed-or-skip', + method: 'git.stage', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('review-git-mutation') + }) +) + +export const MOBILE_DIFF_REVIEW_GIT_MUTATIONS = { + 'git.stage': reviewGitStage, + 'git.unstage': reviewGitUnstage, + 'git.discard': reviewGitDiscard +} as const satisfies Record diff --git a/mobile/src/session/mobile-file-tap-open.ts b/mobile/src/session/mobile-file-tap-open.ts index 9c25dd215ca..21d90fa77fe 100644 --- a/mobile/src/session/mobile-file-tap-open.ts +++ b/mobile/src/session/mobile-file-tap-open.ts @@ -6,9 +6,9 @@ import type { import { filesystemPathToFileUri } from '../../../src/shared/file-uri-path' import { createMobileFilePreviewHref } from '../files/mobile-file-preview-route' import { classifyMobileArtifact } from './mobile-artifact-kind' -import type { RpcClient } from '../transport/rpc-client' -import type { RpcSuccess } from '../transport/types' +import { fileTapOpenRun, fileTapPathResolve } from './mobile-session-launch-operations' import { shouldActivateOpenedMobileSessionTab } from './opened-mobile-session-tab' +import type { RpcOperationSender } from '../transport/rpc-operation-sender' export type FileTapSessionTab = { id: string @@ -16,7 +16,7 @@ export type FileTapSessionTab = { } export type OpenMobileFileTapOptions = { - client: Pick + client: RpcOperationSender hostId: string worktreeId: string worktreeName?: string @@ -74,8 +74,8 @@ async function openMobileFileTapAsync( options: OpenMobileFileTapOptions ): Promise { const worktree = `id:${options.worktreeId}` - const response = await options.client.sendRequest( - 'files.resolveTerminalPath', + const response = await fileTapPathResolve.request( + options.client, { worktree, pathText: options.pathText, @@ -89,11 +89,13 @@ async function openMobileFileTapAsync( }, { timeoutMs: 10_000 } ) - if (!response.ok) { + const accepted = fileTapPathResolve.interpret(response) + if (!accepted.accepted) { reportOpenFailure(options) return } - const resolved = (response as RpcSuccess).result as RuntimeTerminalPathResolution + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const resolved = accepted.value as RuntimeTerminalPathResolution if (!resolved.exists || resolved.isDirectory) { reportOpenFailure(options) return @@ -172,17 +174,18 @@ async function openMobileFileTapAsync( options.openBrowser(filesystemPathToFileUri(resolved.openTarget.absolutePath)) return } - const openResponse = await options.client.sendRequest( - 'files.open', + const openResponse = await fileTapOpenRun.request( + options.client, { worktree: resolvedWorktree, relativePath: openedPath }, { timeoutMs: 15_000 } ) - if (!openResponse.ok) { + const opened = fileTapOpenRun.interpret(openResponse) + if (!opened.accepted) { reportOpenFailure(options) return } - const openResult = (openResponse as RpcSuccess).result as RuntimeFileOpenResult - if (!openResult.opened) { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + if (!(opened.value as RuntimeFileOpenResult).opened) { reportOpenFailure(options) return } diff --git a/mobile/src/session/mobile-image-attachment.ts b/mobile/src/session/mobile-image-attachment.ts index 9cb7d60aa8e..d027f947ca0 100644 --- a/mobile/src/session/mobile-image-attachment.ts +++ b/mobile/src/session/mobile-image-attachment.ts @@ -1,14 +1,14 @@ -import type { RpcClient } from '../transport/rpc-client' import { separateImagePasteFromFollowingText } from '../../../src/shared/image-paste-following-text' import { buildMobileImagePastePayload, saveMobileClipboardImageAsTempFile } from './mobile-clipboard-image' import type { MobileImageSource, PickedMobileImage } from './mobile-image-source-picker' -import { isTerminalSendRpcAccepted } from '../terminal/terminal-send-rpc-response' +import { nativeChatTerminalWrite } from './mobile-session-write-operations' +import type { MobileClipboardImageRpcSender } from './mobile-clipboard-image-operations' export type AttachMobileImageDeps = { - readonly client: Pick + readonly client: MobileClipboardImageRpcSender readonly terminal: string readonly deviceToken: string | null readonly getConnectionId: () => Promise @@ -55,11 +55,11 @@ export async function attachMobileImageToTerminal( if (beforeTerminalSend && !(await beforeTerminalSend(terminal))) { return false } - const response = await client.sendRequest('terminal.send', { + const response = await nativeChatTerminalWrite.request(client, { terminal, text: payload, enter: false, ...(deviceToken ? { client: { id: deviceToken, type: 'mobile' as const } } : {}) }) - return isTerminalSendRpcAccepted(response) + return nativeChatTerminalWrite.interpret(response) === true } diff --git a/mobile/src/session/mobile-native-chat-image-attachment.ts b/mobile/src/session/mobile-native-chat-image-attachment.ts index 1520bcd9cbd..e4007646325 100644 --- a/mobile/src/session/mobile-native-chat-image-attachment.ts +++ b/mobile/src/session/mobile-native-chat-image-attachment.ts @@ -1,5 +1,5 @@ -import type { RpcClient } from '../transport/rpc-client' import { saveMobileClipboardImageAsTempFile } from './mobile-clipboard-image' +import type { MobileClipboardImageRpcSender } from './mobile-clipboard-image-operations' import { structuredAgentSessionDomainFingerprint } from '../../../src/shared/structured-agent-session-mutation' // Type-only import so this module (and its unit test) stays free of the expo/ // react-native picker chain; the concrete `pickImage` is injected by the hook. @@ -39,7 +39,7 @@ export function appendPendingNativeChatImages( } export type UploadNativeChatImagesDeps = { - readonly client: Pick + readonly client: MobileClipboardImageRpcSender readonly getConnectionId: () => Promise // Injected so this module stays free of expo/react-native imports (unit-testable). readonly pickImages: ( diff --git a/mobile/src/session/mobile-native-chat-image-send.ts b/mobile/src/session/mobile-native-chat-image-send.ts index 9f3c555062f..8ed3eb07b3c 100644 --- a/mobile/src/session/mobile-native-chat-image-send.ts +++ b/mobile/src/session/mobile-native-chat-image-send.ts @@ -1,11 +1,11 @@ -import type { RpcClient } from '../transport/rpc-client' import { imagePasteWritesFollowedByText } from '../../../src/shared/image-paste-following-text' import { buildMobileImagePastePayload } from './mobile-clipboard-image' import { MOBILE_NATIVE_CHAT_MIN_WRITE_TIMEOUT_MS, openMobileNativeChatSendBudget } from './mobile-native-chat-send' -import { isTerminalSendRpcAccepted } from '../terminal/terminal-send-rpc-response' +import { nativeChatTerminalWrite } from './mobile-session-write-operations' +import type { MobileNativeChatRpcSender } from './mobile-native-chat-send' // Give the agent TUI a beat to register each bracketed image paste before the // message text + Enter arrive, so the image attaches instead of being treated as @@ -20,7 +20,7 @@ const MOBILE_NATIVE_CHAT_CLEAR_UNSUBMITTED_INPUT = '\x15' type MobileTerminalClient = { id: string; type: 'mobile' } type PasteImagesArgs = { - readonly client: Pick + readonly client: MobileNativeChatRpcSender readonly terminal: string readonly deviceToken: string | null readonly imagePaths: readonly string[] @@ -67,8 +67,8 @@ export async function pasteMobileNativeChatImagePaths({ if (remainingMs < MOBILE_NATIVE_CHAT_MIN_WRITE_TIMEOUT_MS) { return false } - const response = await client.sendRequest( - 'terminal.send', + const response = await nativeChatTerminalWrite.request( + client, { terminal, text, @@ -79,7 +79,7 @@ export async function pasteMobileNativeChatImagePaths({ // clock here would let one write outlast the whole sequence's ceiling. { timeoutMs: remainingMs, budgetSpansConnect: true } ) - if (!isTerminalSendRpcAccepted(response)) { + if (nativeChatTerminalWrite.interpret(response) !== true) { return false } } diff --git a/mobile/src/session/mobile-native-chat-send.ts b/mobile/src/session/mobile-native-chat-send.ts index 22c44f3eb84..7bc1b94f993 100644 --- a/mobile/src/session/mobile-native-chat-send.ts +++ b/mobile/src/session/mobile-native-chat-send.ts @@ -2,9 +2,12 @@ import { reportWorkerTerminalUserInput } from '../terminal/worker-terminal-takeo import type { RpcClient } from '../transport/rpc-client' import { isRpcDeliveryUnknown } from '../transport/rpc-delivery-ambiguity' import { isLogicalClientCutoverError } from '../transport/stable-logical-rpc-client' -import { isTerminalSendRpcAccepted } from '../terminal/terminal-send-rpc-response' +import { nativeChatTerminalWrite } from './mobile-session-write-operations' import { typeAgentTuiCommand } from '../../../src/shared/agent-tui-command-typing' +/** What a native-chat write takes, named from an operation so no module names the raw port. */ +export type MobileNativeChatRpcSender = Parameters[0] + type MobileTerminalClient = { id: string type: 'mobile' @@ -51,8 +54,8 @@ export async function sendMobileNativeChatMessageWithOutcome( return 'rejected' } try { - const response = await args.client.sendRequest( - 'terminal.send', + const response = await nativeChatTerminalWrite.request( + args.client, { terminal: args.terminal, text: args.text, @@ -65,7 +68,7 @@ export async function sendMobileNativeChatMessageWithOutcome( // pins the composer for twice as long. { timeoutMs, budgetSpansConnect: true } ) - if (!isTerminalSendRpcAccepted(response)) { + if (nativeChatTerminalWrite.interpret(response) !== true) { return 'rejected' } reportWorkerTerminalUserInput(args.client, args.terminal) @@ -139,8 +142,8 @@ export async function clearMobileNativeChatInput(args: { return false } try { - const response = await args.client.sendRequest( - 'terminal.send', + const response = await nativeChatTerminalWrite.request( + args.client, { terminal: args.terminal, text: args.clearInput, @@ -149,7 +152,7 @@ export async function clearMobileNativeChatInput(args: { }, { timeoutMs, budgetSpansConnect: true } ) - return isTerminalSendRpcAccepted(response) + return nativeChatTerminalWrite.interpret(response) === true } catch { // A failed clear must not send the body on top of an uncleared line. return false diff --git a/mobile/src/session/mobile-native-chat-session-option-persistence.ts b/mobile/src/session/mobile-native-chat-session-option-persistence.ts index aaad5a92f51..fba5f4a98a5 100644 --- a/mobile/src/session/mobile-native-chat-session-option-persistence.ts +++ b/mobile/src/session/mobile-native-chat-session-option-persistence.ts @@ -1,6 +1,7 @@ import type { AgentType } from '../../../src/shared/agent-status-types' import type { StructuredSessionOptionPick } from '../../../src/shared/structured-agent-session-options' import type { RpcClient } from '../transport/rpc-client' +import { nativeChatSessionOptionsWrite } from './mobile-session-launch-operations' /** The host owns the record a later launch seeds from, so a phone-side pick writes there * rather than to any client-local store. Best-effort: a failed write only costs the @@ -14,12 +15,12 @@ export function persistMobileStructuredOptionPicks(args: { if (!client || picks.length === 0) { return Promise.resolve() } - return client - .sendRequest('settings.mutateNativeChatSessionOptions', { - type: 'apply-picks', - agent, - picks - }) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the catalog names the five TUI agents and the two settable option shapes; the composer's own types are wider, and narrowing either here would change the bytes main put on the wire. + const params = { type: 'apply-picks', agent, picks: [...picks] } as Parameters< + typeof nativeChatSessionOptionsWrite.request + >[1] + return nativeChatSessionOptionsWrite + .request(client, params) .then(() => undefined) .catch(() => undefined) } diff --git a/mobile/src/session/mobile-native-chat-stale-input.ts b/mobile/src/session/mobile-native-chat-stale-input.ts index cdc21067683..7762f7762ea 100644 --- a/mobile/src/session/mobile-native-chat-stale-input.ts +++ b/mobile/src/session/mobile-native-chat-stale-input.ts @@ -1,5 +1,5 @@ -import type { RpcClient } from '../transport/rpc-client' import { pasteMobileNativeChatImagePaths } from './mobile-native-chat-image-send' +import type { MobileNativeChatRpcSender } from './mobile-native-chat-send' // The condition tracked here — a bracketed image paste left sitting on the agent's // unsubmitted input line — lives on the HOST terminal, so it outlives any one @@ -38,7 +38,7 @@ export function resetMobileNativeChatStaleInputForTests(): void { * leaving the next real message to be corrupted by the paste. The host acks a * write, never a cleared line, so consumption can't be made conditional on it. */ export async function healMobileNativeChatStaleInput(args: { - readonly client: Pick + readonly client: MobileNativeChatRpcSender readonly terminal: string readonly deviceToken: string | null /** Budget shared with the write this heal precedes, so a hung clear can't spend a diff --git a/mobile/src/session/mobile-new-tab-agent-loader.ts b/mobile/src/session/mobile-new-tab-agent-loader.ts index 22ec2957df6..b1b9426c3e2 100644 --- a/mobile/src/session/mobile-new-tab-agent-loader.ts +++ b/mobile/src/session/mobile-new-tab-agent-loader.ts @@ -1,6 +1,12 @@ import { newTabSettingsRead } from '../transport/settings-read-operations' +import { + type MobileRuntimeRepoSummary, + newTabRepoListRead, + preflightDetectAgentsRead, + preflightDetectRemoteAgentsRead +} from './mobile-session-read-operations' import type { RpcClient } from '../transport/rpc-client' -import type { RpcFailure, RpcSuccess } from '../transport/types' +import type { RpcResponse } from '../transport/types' import { isFloatingWorkspaceWorktreeId } from './floating-workspace' import { getRepoIdFromMobileWorktreeId } from './mobile-session-route-helpers' import { @@ -9,49 +15,63 @@ import { type MobileNewTabAgentSettings } from './mobile-new-tab-agent-options' -type RuntimeRepoSummary = { - id: string - connectionId?: string | null -} - export async function loadMobileNewTabAgentOptions(args: { client: RpcClient worktreeId: string }): Promise { const { client, worktreeId } = args - // Why: the floating workspace runs on the paired host, so it has no repo connection to resolve. - const detectedAgentsRequest = isFloatingWorkspaceWorktreeId(worktreeId) - ? client.sendRequest('preflight.detectAgents') - : loadWorkspaceDetectedAgents(client, worktreeId) - const [settingsResponse, detectedResponse] = await Promise.all([ + // Started before the settings read, not inside the array: the detection request goes on the wire + // first, and the recorded sender order is what says so. + const detectedAgentsRequest = loadDetectedAgents(client, worktreeId) + const [settingsResponse, detectedAgents] = await Promise.all([ newTabSettingsRead.request(client), detectedAgentsRequest ]) const readSettings = newTabSettingsRead.interpret(settingsResponse) - if (!detectedResponse.ok) { - throw new Error((detectedResponse as RpcFailure).error.message) - } + // Interpreted after the group, not inside it: whichever peer failed first must not decide the + // error the sheet shows, and main raised the detection refusal only once settings had settled. + const detected = detectedAgents.interpret(detectedAgents.reply) return buildMobileNewTabAgentOptions( // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. readSettings() as MobileNewTabAgentSettings | undefined, - (detectedResponse as RpcSuccess).result as unknown[] + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + detected as unknown[] ) } -async function loadWorkspaceDetectedAgents(client: RpcClient, worktreeId: string) { - const repoResponse = await client.sendRequest('repo.list') - if (!repoResponse.ok) { - throw new Error((repoResponse as RpcFailure).error.message) +/** The reply and the operation that reads it: two methods detect agents and each reads its own. */ +type DetectedAgentsReply = { + reply: RpcResponse + interpret: (reply: RpcResponse) => unknown +} + +async function loadDetectedAgents( + client: RpcClient, + worktreeId: string +): Promise { + // Why: the floating workspace runs on the paired host, so it has no repo connection to resolve. + if (isFloatingWorkspaceWorktreeId(worktreeId)) { + return { + reply: await preflightDetectAgentsRead.request(client), + interpret: preflightDetectAgentsRead.interpret + } } + const repoResponse = await newTabRepoListRead.request(client) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const repos = (newTabRepoListRead.interpret(repoResponse) as MobileRuntimeRepoSummary[]) ?? [] const repoId = getRepoIdFromMobileWorktreeId(worktreeId) - const repos = - ((repoResponse as RpcSuccess).result as { repos?: RuntimeRepoSummary[] }).repos ?? [] const repo = repos.find((candidate) => candidate.id === repoId) if (!repo) { throw new Error('worktree_repo_not_found') } const connectionId = repo.connectionId?.trim() || null return connectionId - ? client.sendRequest('preflight.detectRemoteAgents', { connectionId }) - : client.sendRequest('preflight.detectAgents') + ? { + reply: await preflightDetectRemoteAgentsRead.request(client, { connectionId }), + interpret: preflightDetectRemoteAgentsRead.interpret + } + : { + reply: await preflightDetectAgentsRead.request(client), + interpret: preflightDetectAgentsRead.interpret + } } diff --git a/mobile/src/session/mobile-review-terminal-operations.ts b/mobile/src/session/mobile-review-terminal-operations.ts index e3a9bdf425c..2b998732fe5 100644 --- a/mobile/src/session/mobile-review-terminal-operations.ts +++ b/mobile/src/session/mobile-review-terminal-operations.ts @@ -4,6 +4,7 @@ import { rpcReadUnchecked } from '../transport/rpc-reader-payload' import { readMobileReviewCreatedTerminal, readMobileReviewTerminalSendAccepted, + readMobileReviewTerminalTabs, type MobileReviewTerminalTab } from './mobile-diff-review-rpc' @@ -51,3 +52,19 @@ export const reviewTerminalSendRun = bindDeferredRpcOperation( read: terminalSendAcceptedReader }) ) + +/** + * The agent terminals the send sheet lists. Third reader on `session.tabs.list`: the reveal poller + * projects file tabs and answers null for anything else, and the reconciliation controller hands + * its owner the snapshot whole so its own type parameter can name it. This one keeps only the + * terminal tabs the sheet can drop a prompt into, which both of those drop. + */ +export const reviewTerminalListRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'session.review-terminal-list', + method: 'session.tabs.list', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: (raw) => rpcReadUnchecked('review-terminal-tabs', readMobileReviewTerminalTabs(raw)) + }) +) diff --git a/mobile/src/session/mobile-session-launch-operations.ts b/mobile/src/session/mobile-session-launch-operations.ts new file mode 100644 index 00000000000..d55a2ad4966 --- /dev/null +++ b/mobile/src/session/mobile-session-launch-operations.ts @@ -0,0 +1,108 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' + +// Opening things from the session screen: a tapped terminal path, a new markdown note or browser +// tab, the legacy-Codex resume repin, and the structured agent chat. + +// The tap resolves the same path on the same method, with the same skip on refusal and the same +// whole-payload read, as the preview screen's grant refresh, so a second operation would only be a +// second name for one wire. Same reason `fileOwnershipRuntimeStatusRead` re-exports the Tasks +// screen's status read. +export { terminalArtifactPathResolve as fileTapPathResolve } from '../files/mobile-file-preview-operations' + +/** + * The worktree open a tap leads to. Its own skip: the tap is best-effort and a refusal is the same + * silent miss as a path that resolved to nothing. `sourceFileOpenRun` is the Changes screen's read + * of the same method and raises the host's message instead, because there the user asked for a tab + * and has nothing otherwise. + */ +export const fileTapOpenRun = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'files.open-tapped-file-or-skip', + method: 'files.open', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('tapped-file-opened') + }) +) + +/** + * Creating an untitled markdown note. The refusal message is read for the file-exists text the + * caller retries on, so it has to survive as the thrown message rather than a coded one. + */ +export const sessionMarkdownNoteCreate = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'files.create-markdown-note', + method: 'files.createFile', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('markdown-note-created') + }) +) + +/** The browser tab a user opens from the tab strip; the reply carries the page id to focus. */ +export const sessionBrowserTabCreate = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'browser.create-session-tab', + method: 'browser.tabCreate', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('browser-tab-created') + }) +) + +/** + * The legacy-Codex resume repin. Its refusal is read raw before interpretation: an older host that + * cannot prepare answers `method_not_found` or a named `forbidden`, and the phone resumes on the + * shared home instead — neither a failure nor a value any acceptance policy can express. + */ +export const aiVaultResumePreparationRun = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'aiVault.prepare-session-resume', + method: 'aiVault.prepareSessionResume', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('ai-vault-resume-preparation') + }) +) + +/** + * Whether a workspace can host a structured agent chat at all. The launch distrusts the declared + * envelope type here — a malformed reply must read as unsupported rather than be classified — so + * the raw reply stays at the call site and no policy interprets it. + */ +export const structuredAgentSupportProbe = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'agentSession.create-support', + method: 'agentSession.createSupport', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('structured-create-support') + }) +) + +/** + * The durable create. Same distrust, and for a stronger reason: anything this call cannot prove is + * a definitive refusal has to stay `unknown`, because a create that may have committed must not + * grow a sibling terminal. The envelope is examined field by field at the call site. + */ +export const structuredAgentSessionCreate = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'agentSession.create', + method: 'agentSession.create', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('structured-session-created') + }) +) + +/** The host record a session-option pick is written to. Best-effort: every outcome is swallowed. */ +export const nativeChatSessionOptionsWrite = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'settings.mutate-native-chat-session-options', + method: 'settings.mutateNativeChatSessionOptions', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('native-chat-session-options-written') + }) +) diff --git a/mobile/src/session/mobile-session-read-operations.ts b/mobile/src/session/mobile-session-read-operations.ts new file mode 100644 index 00000000000..3fa00be2799 --- /dev/null +++ b/mobile/src/session/mobile-session-read-operations.ts @@ -0,0 +1,174 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { + rpcUncheckedMemberReader, + rpcUncheckedPayloadReader +} from '../transport/rpc-reader-payload' + +// What the session screen reads: the terminal inventory, the repo list two screens resolve a +// workspace's connection through, the session tab snapshot, the quick-command list, the +// worktree-stored review notes and a markdown tab's document. + +/** + * The terminal inventory. A refused list leaves the strip exactly as it was — the screen treats it + * as "no news", not as an empty host — which is what the skip policy says and what the throwing + * policies would get wrong. + */ +export const sessionTerminalListRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'terminal.list', + method: 'terminal.list', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('terminal-inventory') + }) +) + +export type MobileRuntimeRepoSummary = { id: string; connectionId?: string | null } + +const repoListReader = rpcUncheckedMemberReader('runtime-repo-list', 'repos') + +/** + * The repo list, read for one workspace's connection id. Two call sites want it and disagree about + * a refusal, so each declares its own operation over the same reader rather than sharing a policy: + * the new-tab agent loader has nothing to show without it and raises the host's message, while the + * native-chat readability probe answers "not readable" and lets the screen render. + */ +export const newTabRepoListRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'repo.list-for-new-tab', + method: 'repo.list', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: repoListReader + }) +) + +export const nativeChatRepoListRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'repo.list-or-unreadable', + method: 'repo.list', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: repoListReader + }) +) + +/** + * The agents a host reports for a workspace. Both the local and the remote probe read the payload + * as the list it is, and the loader raises the host's message when either refuses. + * + * Separate from the task drawer's readers on the same two methods, which skip: there detection is + * advisory and an empty set is a fine answer, where this loader gates a tab the user is opening and + * has to say why no agent came back. Different acceptance, so two operations. + */ +export const preflightDetectAgentsRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'preflight.detect-agents', + method: 'preflight.detectAgents', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('detected-agents') + }) +) + +export const preflightDetectRemoteAgentsRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'preflight.detect-remote-agents', + method: 'preflight.detectRemoteAgents', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('detected-agents') + }) +) + +/** + * The session tab snapshot the reconciliation controller polls. Its own generation, barrier and + * application-revision guards decide whether a reply may be applied, all of which run before the + * payload is read, so the controller keeps the raw reply and reports the refusal to its owner. + */ +export const sessionTabsListRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'session.tabs-list', + method: 'session.tabs.list', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('session-tabs-snapshot') + }) +) + +/** + * The two ways native chat gets workspace paths. Both project the same `files[].relativePath` list, + * and both refuse by leaving the suggestion list alone — the search's `method_not_found` is read + * raw beforehand, because that code is what makes the composer fall back to the full inventory. + */ +export const nativeChatFileSearchRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'files.search-paths-or-skip', + method: 'files.searchPaths', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedMemberReader('workspace-files', 'files') + }) +) + +export const nativeChatFileInventoryRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'files.list-or-skip', + method: 'files.list', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedMemberReader('workspace-files', 'files') + }) +) + +/** Shared with the save leg in the write module: one list read, so neither leg can adopt `[]`. */ +export const quickCommandsReader = rpcUncheckedPayloadReader('terminal-quick-commands') + +/** + * The quick-command list, read the same way on load and on save: the host re-normalizes and returns + * the canonical list, and a payload the parser rejects reads as null so neither leg can adopt `[]` + * and erase commands that still exist on the host. + */ +export const quickCommandsRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'settings.quick-commands-read', + method: 'settings.getTerminalQuickCommands', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: quickCommandsReader + }) +) + +/** + * The review notes as they sit on the worktree record, and the fourth reader on `worktree.show`. + * Two of the other three project a narrower value and would answer this screen with no notes: the + * summary keeps `{ baseRef, linkedPR }`, the review screen keeps `{ diffComments, mobileDiffReview }`. + * The third, `fileOwnershipWorktreeRead`, reads the same `worktree` member whole with the same + * reader shape, so acceptance is the only thing separating them: a file mutation throws the host's + * message rather than write to the wrong host, where a session screen missing its notes just shows + * none and keeps working. + */ +export const sessionWorktreeNotesRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'worktree.show-review-notes', + method: 'worktree.show', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedMemberReader('worktree-review-notes', 'worktree') + }) +) + +/** + * A markdown tab's document. The refusal is read raw before interpretation, because a headless host + * answers `renderer_unavailable` and the screen falls back to the file on disk — a code no + * acceptance policy carries. + */ +export const markdownTabRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'markdown.read-tab', + method: 'markdown.readTab', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('markdown-tab-doc') + }) +) diff --git a/mobile/src/session/mobile-session-route-parity.test.ts b/mobile/src/session/mobile-session-route-parity.test.ts index 7b3b91af7a6..3e73969effc 100644 --- a/mobile/src/session/mobile-session-route-parity.test.ts +++ b/mobile/src/session/mobile-session-route-parity.test.ts @@ -66,11 +66,15 @@ const HEAD_MAIN_HOOK_SHA256 = 'c7a1bbc0588a5d27797bbab13168e76eb20200288921fdc33 const HEAD_HOOK_BINDING_SHA256 = '06edf1a4314eba41b1d3e1cb67b0cfab2a936aef7d127c5dc48e789c9adc6c8f' const HEAD_CALLBACK_IDENTITY_SHA256 = '2a9e4825df007f6ef53b81aa5004991d6318eee7507b44d625c07e630be432eb' -const HEAD_CALLBACK_BODY_SHA256 = '85c4f4605e66c45e2b6bc7de739cb3493d9e2d0db9c9242c379db8ed34a8cefe' +// Body text, not behaviour: refreshed when the session hooks' refusal try/catch blocks became +// `interpretOrThrowRefusalMessage` calls. One of them lives in a callback. +const HEAD_CALLBACK_BODY_SHA256 = '309666c03fdfaa4b48fe6e32d86e885e0c92c42954bc2917ac605ef1e50061de' const HEAD_EFFECT_SHA256 = '73d80845e0a4b6363cfb4bb55551af97965b1f676b97adf0b2a8504219b9a501' const HEAD_CONTENT_HOOK_SHA256 = '9c3b612fef3f370d66873aefdbe1d701f20cb64ded31fef5cc45fde6f8189581' +// Same refresh as the callback-body hash above, for the three of those blocks that sit in +// nested functions rather than callbacks. Count still 12. const HEAD_NESTED_FUNCTION_SHA256 = - '97ce5457d8059974f500022a4382ff687074e26843d6c1525be938d6c0537928' + '74772a16be98781d85d12caa7771b373a908e3da00651412a1e15647ec67398c' const HEAD_NATIVE_REGISTRATION_SHA256 = 'cab85e4e4a3f43289ba93ddea9ccce57aea83e0bf14fd1620a965aad0c1cb49e' const HEAD_NATIVE_REMOVAL_SHA256 = @@ -79,7 +83,7 @@ const HEAD_TIMER_CREATION_SHA256 = '1a31b625e2174c3db77272249843196d2b6b06ab1e654a96d8f7858e3082e66b' const HEAD_TIMER_CLEANUP_SHA256 = 'c73f1d1c2cc89642f3d727d6f3b6b81860a9d6f34234541a2065ec3d1a8cd116' const HEAD_RUNTIME_STRING_SHA256 = - '57ef354b97fb4fd3776fd1b09a34305d84022c04c43c6391bd130517bf6e37af' + '3d4c680adb34c5871530fa4bd7ecd2f800048b8b00f98ef503693d9c44cf6464' const HEAD_HOST_JSX_SHA256 = '390405926b1695fa3a33686f0bc192b432f5468d8576499d7cafbb4922defbb5' const HEAD_LEAF_JSX_SHA256 = '21dba981875e173f692590bf910d60964660c5f4cbb79f3a377c7e54f6a1f016' const HEAD_STYLE_REFERENCE_SHA256 = @@ -517,7 +521,7 @@ describe('mobile session route extraction parity', () => { it('preserves runtime strings, styles, and the expanded JSX tree', () => { const strings = readRuntimeStrings() - expect(strings).toHaveLength(546) + expect(strings).toHaveLength(540) expect(hash(strings)).toBe(HEAD_RUNTIME_STRING_SHA256) const jsx = readJsxFacts(readDefinitions()) expect(jsx.host).toHaveLength(124) diff --git a/mobile/src/session/mobile-session-startup-source.test.ts b/mobile/src/session/mobile-session-startup-source.test.ts index 83b2021b95e..ae666206070 100644 --- a/mobile/src/session/mobile-session-startup-source.test.ts +++ b/mobile/src/session/mobile-session-startup-source.test.ts @@ -138,7 +138,7 @@ describe('mobile session startup', () => { 'committedScope !== null && committedScope !== scopeKey' ) expect(terminalListSource).toContain('return terminalInventoryRequest.activate()') - expect(terminalListSource).toContain('if (!isCurrent() || !response.ok)') + expect(terminalListSource).toContain('if (!isCurrent() || !response.accepted)') expect(terminalInventoryRecoverySource).toContain( 'TERMINAL_INVENTORY_CONFIRMATION_DELAY_MS = 750' ) diff --git a/mobile/src/session/mobile-session-tab-activation.ts b/mobile/src/session/mobile-session-tab-activation.ts index ff8353459b4..d6d35295336 100644 --- a/mobile/src/session/mobile-session-tab-activation.ts +++ b/mobile/src/session/mobile-session-tab-activation.ts @@ -1,6 +1,6 @@ import type { TabActivationIntent } from '../../../src/shared/tab-activation-intent' -import type { RpcClient } from '../transport/rpc-client' import { LogicalClientCutoverError } from '../transport/stable-logical-rpc-client' +import { sessionTabActivate, sessionTerminalFocus } from './mobile-session-write-operations' import type { RpcResponse } from '../transport/types' import { getMobileTerminalDiagnosticErrorName, @@ -8,7 +8,7 @@ import { shortenMobileTerminalDiagnosticId } from './mobile-terminal-diagnostics' -type ActivationClient = Pick +type ActivationClient = Parameters[0] type MobileSessionTabActivationParams = { worktree: string @@ -76,7 +76,7 @@ export function focusMobileTerminal( terminal: string ): Promise { return retryIdempotentActivationAfterCutover( - () => client.sendRequest('terminal.focus', { terminal, navigation: 'host' }), + () => sessionTerminalFocus.request(client, { terminal, navigation: 'host' }), 'terminal.focus', terminal ) @@ -87,7 +87,7 @@ export function activateMobileSessionTab( params: MobileSessionTabActivationParams ): Promise { return retryIdempotentActivationAfterCutover( - () => client.sendRequest('session.tabs.activate', params), + () => sessionTabActivate.request(client, params), 'session.tabs.activate', params.tabId ) diff --git a/mobile/src/session/mobile-session-tabs-stream-health.ts b/mobile/src/session/mobile-session-tabs-stream-health.ts index 66dfd21ddb3..50fd3f424e2 100644 --- a/mobile/src/session/mobile-session-tabs-stream-health.ts +++ b/mobile/src/session/mobile-session-tabs-stream-health.ts @@ -1,5 +1,6 @@ +import { sessionTabsListRead } from './mobile-session-read-operations' import type { RpcClient } from '../transport/rpc-client' -import type { RpcFailure, RpcSuccess } from '../transport/types' +import type { RpcFailure } from '../transport/types' export type SessionTabsApplyOutcome = | { accepted: false } @@ -255,7 +256,7 @@ export class MobileSessionTabsStreamHealth { private async runRequest(owner: RequestOwner): Promise { try { this.options.onFetchStarted?.() - const response = await this.options.client.sendRequest('session.tabs.list', { + const response = await sessionTabsListRead.request(this.options.client, { worktree: this.options.scope }) if (!this.isCurrentGeneration(owner.generation)) { @@ -267,7 +268,8 @@ export class MobileSessionTabsStreamHealth { } return false } - const result = (response as RpcSuccess).result as Result + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the snapshot's shape is the owner's type parameter, which no module-level reader can name. + const result = sessionTabsListRead.interpret(response) as Result if (owner.barrier !== this.barrier) { return false } diff --git a/mobile/src/session/mobile-session-write-operations.ts b/mobile/src/session/mobile-session-write-operations.ts new file mode 100644 index 00000000000..2f45b4a1f6d --- /dev/null +++ b/mobile/src/session/mobile-session-write-operations.ts @@ -0,0 +1,133 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcReadUnchecked, rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' +import { isTerminalSendResultAccepted } from '../terminal/terminal-send-rpc-response' +import { quickCommandsReader } from './mobile-session-read-operations' + +// The session screen's writes: terminal input from native chat and the image surfaces, the tab +// strip's rename/close/activate, the markdown tab save and the quick-command save. +// The `subscribe` and `sendUnsubscribe` ports these files sit next to are a separate boundary and +// are untouched here. + +/** + * A terminal write whose whole meaning is whether the runtime took the bytes. Native chat, the two + * image paste paths and the stop key all read exactly this and treat a refusal, a non-object result + * and an unaccepted one as the same "not delivered" — which is what `object-result-or-null` says, + * and the only policy that turns an unreadable result into a verdict instead of a throw. + * + * Separate from `terminalInputSend` despite the identical policy and reader: that family is the + * query-reply responder and the live accessory, and these callers differ in what a *lost* reply + * means. Here a drop is delivery-unknown and must not be retried, so the two keep their own names + * and their own recorded families rather than sharing one. + */ +export const nativeChatTerminalWrite = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'terminal.native-chat-write', + method: 'terminal.send', + acceptance: 'object-result-or-null', + barrier: 'after-caller-barrier', + read: (raw) => rpcReadUnchecked('terminal-send-accepted', isTerminalSendResultAccepted(raw)) + }) +) + +/** Renaming a terminal. The reply body is unread: only acceptance decides whether the strip keeps + * the new title, and a refusal leaves the server title to the next refresh. */ +export const sessionTerminalRename = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'terminal.rename', + method: 'terminal.rename', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('terminal-renamed') + }) +) + +/** Closing a terminal. Same skip policy for the same reason: a refused close must not prune the + * local list, because the pane is still there. */ +export const sessionTerminalClose = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'terminal.close', + method: 'terminal.close', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('terminal-closed') + }) +) + +/** Closing a session tab, with the same accepted-or-leave-it-alone rule as the two above. */ +export const sessionTabClose = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'session.tabs-close', + method: 'session.tabs.close', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('session-tab-closed') + }) +) + +/** + * Focusing a terminal and activating a session tab. Both are sent through the cutover retry, which + * logs the envelope's own `ok` and `error.code` and hands the raw reply back to its caller, so + * neither is interpreted here — the acceptance is declared for the callers that eventually read a + * verdict rather than the diagnostics. + */ +export const sessionTerminalFocus = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'terminal.focus', + method: 'terminal.focus', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('terminal-focused') + }) +) + +export const sessionTabActivate = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'session.tabs-activate', + method: 'session.tabs.activate', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('session-tab-activated') + }) +) + +/** + * Writing the review notes and the per-file review state onto the worktree record. Both call sites + * raise the host's message on a refusal and roll their optimistic list back, so the message has to + * survive; the reply body is never read. + * + * Kept separate from source-control's `worktree.set-review-link` even though the two configs match + * today: `worktree.set` is a partial update, and these two sites write disjoint members. Sharing one + * operation would let a change to the link save's acceptance or params reach the review screen's + * rollback path, and the host list's pin write already proves this method carries no single policy. + */ +export const sessionWorktreeNotesWrite = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'worktree.set-review-notes', + method: 'worktree.set', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('worktree-notes-written') + }) +) + +/** The save leg. Its reply is the canonical document, and a refusal is shown on the tab. */ +export const markdownTabSave = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'markdown.save-tab', + method: 'markdown.saveTab', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('markdown-tab-doc') + }) +) + +/** The save leg's reply is the canonical list, read exactly as the load leg reads it. */ +export const quickCommandsWrite = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'settings.quick-commands-write', + method: 'settings.updateTerminalQuickCommands', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: quickCommandsReader + }) +) diff --git a/mobile/src/session/mobile-structured-agent-session-cancel.ts b/mobile/src/session/mobile-structured-agent-session-cancel.ts index 9c67e7480d0..f144accc2e7 100644 --- a/mobile/src/session/mobile-structured-agent-session-cancel.ts +++ b/mobile/src/session/mobile-structured-agent-session-cancel.ts @@ -61,7 +61,10 @@ export async function requestMobileStructuredAgentSessionCancel(args: { fields, clientOperationId }) - if (result.status !== 'unknown') { + // Cancel's plan recovers no unknown ledger row, so an id the host answered that + // way earns the same refusal until it expires; keeping it leaves Stop unusable. + // Transport doubt proves nothing about delivery, so it stays a replay. + if (result.status !== 'unknown' || result.hostReportedOperationUnknown === true) { operationIds.delete(key) } if (result.status === 'accepted') { diff --git a/mobile/src/session/mobile-structured-agent-session-launch.ts b/mobile/src/session/mobile-structured-agent-session-launch.ts index bd15e595736..8a35f7499ec 100644 --- a/mobile/src/session/mobile-structured-agent-session-launch.ts +++ b/mobile/src/session/mobile-structured-agent-session-launch.ts @@ -12,6 +12,10 @@ import { import { TUI_AGENT_DISPLAY_NAMES } from '../../../src/shared/tui-agent-display-names' import { hasRuntimeRpcErrorCode } from '../../../src/shared/runtime-rpc-error-code' import type { RpcClient } from '../transport/rpc-client' +import { + structuredAgentSessionCreate, + structuredAgentSupportProbe +} from './mobile-session-launch-operations' import { structuredSessionRandomUuid } from './mobile-structured-agent-session-rpc' type StructuredCreateSupport = { @@ -82,7 +86,7 @@ export async function createMobileStructuredAgentSession( let supportResponse for (let attempt = 0; ; attempt += 1) { try { - supportResponse = await client.sendRequest('agentSession.createSupport', { worktree, agent }) + supportResponse = await structuredAgentSupportProbe.request(client, { worktree, agent }) } catch (error) { const retryDelayMs = CREATE_SUPPORT_RETRY_DELAYS_MS[attempt] if ( @@ -120,14 +124,14 @@ export async function createMobileStructuredAgentSession( const params = createParamsFor(agent, worktree) let response try { - response = await client.sendRequest('agentSession.create', params, { + response = await structuredAgentSessionCreate.request(client, params, { timeoutMs: 15_000, budgetSpansConnect: true }) } catch { // Replay the durable envelope once so a lost acknowledgement cannot create a sibling. try { - response = await client.sendRequest('agentSession.create', params, { + response = await structuredAgentSessionCreate.request(client, params, { timeoutMs: 15_000, budgetSpansConnect: true }) diff --git a/mobile/src/session/mobile-structured-agent-session-rpc.ts b/mobile/src/session/mobile-structured-agent-session-rpc.ts index 279893f6673..4e3861a058e 100644 --- a/mobile/src/session/mobile-structured-agent-session-rpc.ts +++ b/mobile/src/session/mobile-structured-agent-session-rpc.ts @@ -22,7 +22,11 @@ export type StructuredAgentSessionMutationCallResult = | { status: 'accepted'; value: TValue } | { status: 'refused'; code: AgentSessionWireRefusalCode; message: string } | { status: 'failed'; message: string } - | { status: 'unknown' } + /** `hostReportedOperationUnknown` separates a host answer about the id from doubt + * about the effect. Whether that id can still be retried is the method's own + * question: a plan that recovers an unknown ledger row replays or reruns it, one + * that does not refuses the same id until the row expires. */ + | { status: 'unknown'; hostReportedOperationUnknown?: true } export type StructuredAgentSessionMutationResult = | { status: 'accepted'; value: TValue; sameFence: boolean } @@ -169,7 +173,7 @@ export async function requestStructuredAgentSessionMutation(args: { (method === 'agentSession.cancel' || method === 'agentSession.conversationCommand') && result.refusal.code === 'agent_session_operation_unknown' ) { - return { status: 'unknown' } + return { status: 'unknown', hostReportedOperationUnknown: true } } return result.ok ? { status: 'accepted', value: result.value } diff --git a/mobile/src/session/mobile-structured-operation-id-retirement.test.ts b/mobile/src/session/mobile-structured-operation-id-retirement.test.ts new file mode 100644 index 00000000000..6c8b50e33b8 --- /dev/null +++ b/mobile/src/session/mobile-structured-operation-id-retirement.test.ts @@ -0,0 +1,133 @@ +import { describe, expect, it, vi } from 'vitest' +import type { StructuredAgentSessionState } from '../../../src/shared/structured-agent-session-reducer' +import type { RpcClient } from '../transport/rpc-client' +import { markRpcDeliveryUnknown } from '../transport/rpc-delivery-ambiguity' +import { requestMobileStructuredAgentSessionCancel } from './mobile-structured-agent-session-cancel' +import { requestStructuredAgentSessionMutation } from './mobile-structured-agent-session-rpc' + +type SentParams = { envelope: { clientOperationId: string } } + +function operationRefusedAsUnknown() { + return { + ok: true, + result: { + ok: false, + refusal: { + code: 'agent_session_operation_unknown', + message: 'The outcome of operation X is unknown; it was not run again.' + } + }, + _meta: { runtimeId: 'runtime-1' } + } +} + +function fakeClient( + sendRequest: (method: string, params: SentParams) => Promise +): RpcClient { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: both paths under test reach only `sendRequest`. + return { sendRequest } as unknown as RpcClient +} + +function runningState(): StructuredAgentSessionState { + const state = { + fence: 3, + items: [ + { + itemId: 'status-1', + revision: 1, + sequence: 1, + observedAt: 10, + body: { + kind: 'status', + text: 'Working', + turnLifecycle: { turnId: 'turn-1', state: 'running' } + } + } + ] + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: cancel reads only the fence and the running turn. + return state as unknown as StructuredAgentSessionState +} + +function cancelArgs(client: RpcClient, operationIds: Map) { + return { + client, + sessionId: 'session-1', + enabled: true, + stateRef: { current: runningState() }, + sessionKey: 'key-1', + operationIds, + promptCancelSupported: null, + onSendError: vi.fn() + } +} + +describe('structured mutation id retirement', () => { + it('marks a host answer about the id apart from doubt about the effect', async () => { + const result = await requestStructuredAgentSessionMutation({ + client: fakeClient(async () => operationRefusedAsUnknown()), + method: 'agentSession.cancel', + fingerprintMethod: 'agentSession.cancel', + sessionId: 'session-1', + expectedRuntimeFence: 3, + fields: { turnId: 'turn-1' }, + clientOperationId: `1900000000000-${'a'.repeat(32)}` + }) + + expect(result).toEqual({ status: 'unknown', hostReportedOperationUnknown: true }) + }) + + it('leaves the id replayable when only the transport was in doubt', async () => { + const result = await requestStructuredAgentSessionMutation({ + client: fakeClient(async () => { + throw markRpcDeliveryUnknown(new Error('Connection closed')) + }), + method: 'agentSession.cancel', + fingerprintMethod: 'agentSession.cancel', + sessionId: 'session-1', + expectedRuntimeFence: 3, + fields: { turnId: 'turn-1' }, + clientOperationId: `1900000000000-${'b'.repeat(32)}` + }) + + expect(result).toEqual({ status: 'unknown' }) + }) +}) + +describe('structured Stop after an unknown outcome', () => { + it('retries under a fresh id once the host has answered about the previous one', async () => { + const sent: string[] = [] + const client = fakeClient(async (_method, params) => { + sent.push(params.envelope.clientOperationId) + return operationRefusedAsUnknown() + }) + const operationIds = new Map() + const args = cancelArgs(client, operationIds) + + await requestMobileStructuredAgentSessionCancel(args) + await requestMobileStructuredAgentSessionCancel(args) + + expect(sent).toHaveLength(2) + // Reusing it earns the same refusal until the row expires, leaving Stop unusable. + expect(sent[1]).not.toBe(sent[0]) + expect(operationIds.size).toBe(0) + }) + + it('replays the same id when the host never answered', async () => { + const sent: string[] = [] + const client = fakeClient(async (_method, params) => { + sent.push(params.envelope.clientOperationId) + throw markRpcDeliveryUnknown(new Error('Connection closed')) + }) + const operationIds = new Map() + const args = cancelArgs(client, operationIds) + + await requestMobileStructuredAgentSessionCancel(args) + await requestMobileStructuredAgentSessionCancel(args) + + expect(sent).toHaveLength(2) + // Nothing proves the first Stop missed, so the retry must stay a replay. + expect(sent[1]).toBe(sent[0]) + expect(operationIds.size).toBe(1) + }) +}) diff --git a/mobile/src/session/use-mobile-diff-review-comment-actions.ts b/mobile/src/session/use-mobile-diff-review-comment-actions.ts index 730f1e83354..d49350f1519 100644 --- a/mobile/src/session/use-mobile-diff-review-comment-actions.ts +++ b/mobile/src/session/use-mobile-diff-review-comment-actions.ts @@ -3,6 +3,8 @@ import type { DiffComment, MobileDiffReviewState } from '../../../src/shared/dif import { triggerError, triggerSuccess } from '../platform/haptics' import type { ConnectionState } from '../transport/types' import type { RpcClient } from '../transport/rpc-client' +import { interpretOrThrowRefusalMessage } from '../transport/rpc-refusal-message' +import { sessionWorktreeNotesWrite } from './mobile-session-write-operations' import { addMobileDiffComment, removeMobileDiffComments } from './mobile-diff-comments' import { updateMobileDiffComment } from './mobile-diff-comment-edit' import { @@ -66,14 +68,15 @@ export function useMobileDiffReviewCommentActions(input: CommentActionsInput) { if (!client || connState !== 'connected') { throw new Error('Waiting for desktop...') } - const response = await client.sendRequest('worktree.set', { + const response = await sessionWorktreeNotesWrite.request(client, { worktree: `id:${worktreeId}`, - diffComments: comments, + diffComments: [...comments], mobileDiffReview: reviewState }) - if (!response.ok) { - throw new Error(response.error?.message || 'Failed to save review state') - } + interpretOrThrowRefusalMessage( + () => sessionWorktreeNotesWrite.interpret(response), + 'Failed to save review state' + ) }, [client, connState, worktreeId] ) diff --git a/mobile/src/session/use-mobile-diff-review-git-actions.ts b/mobile/src/session/use-mobile-diff-review-git-actions.ts index 9ddcda0487d..a3aa6cc060d 100644 --- a/mobile/src/session/use-mobile-diff-review-git-actions.ts +++ b/mobile/src/session/use-mobile-diff-review-git-actions.ts @@ -1,6 +1,11 @@ import { useCallback, type Dispatch, type SetStateAction } from 'react' import type { ConnectionState } from '../transport/types' import type { RpcClient } from '../transport/rpc-client' +import { interpretOrThrowRefusalMessage } from '../transport/rpc-refusal-message' +import { + MOBILE_DIFF_REVIEW_GIT_MUTATIONS, + reviewGitStageRun +} from './mobile-diff-review-git-operations' import { triggerError, triggerSuccess } from '../platform/haptics' import type { MobileDiffReviewQueueItem } from './mobile-diff-review-queue' import type { GitMutationMethod } from './mobile-diff-review-screen-model' @@ -29,13 +34,15 @@ export function useMobileDiffReviewGitActions(input: GitActionsInput) { setBusyAction(`${method}:${item.filePath}`) setActionError(null) try { - const response = await client.sendRequest(method, { + const mutation = MOBILE_DIFF_REVIEW_GIT_MUTATIONS[method] + const response = await mutation.request(client, { worktree: `id:${worktreeId}`, filePath: item.filePath }) - if (!response.ok) { - throw new Error(response.error?.message || 'Source control action failed') - } + interpretOrThrowRefusalMessage( + () => mutation.interpret(response), + 'Source control action failed' + ) triggerSuccess() await loadReviewData() } catch (err) { @@ -64,11 +71,13 @@ export function useMobileDiffReviewGitActions(input: GitActionsInput) { let staged = 0 let failed = 0 for (const item of files) { - const response = await client.sendRequest('git.stage', { - worktree: `id:${worktreeId}`, - filePath: item.filePath - }) - if (response.ok) { + const response = reviewGitStageRun.interpret( + await reviewGitStageRun.request(client, { + worktree: `id:${worktreeId}`, + filePath: item.filePath + }) + ) + if (response.accepted) { staged += 1 } else { failed += 1 diff --git a/mobile/src/session/use-mobile-diff-review-interactions.ts b/mobile/src/session/use-mobile-diff-review-interactions.ts index 079874933e2..161048fc9ce 100644 --- a/mobile/src/session/use-mobile-diff-review-interactions.ts +++ b/mobile/src/session/use-mobile-diff-review-interactions.ts @@ -15,6 +15,8 @@ import type { ReviewScreenState, SendSheetState } from './mobile-diff-review-screen-model' +import { sourceFileDiffOpenRun } from '../source-control/mobile-source-file-open-operations' +import { refusedRpcMessageOrFallback } from '../transport/rpc-refusal-message' import { useMobileDiffReviewCommentActions } from './use-mobile-diff-review-comment-actions' import { useMobileDiffReviewGitActions } from './use-mobile-diff-review-git-actions' import { useMobileDiffReviewSendActions } from './use-mobile-diff-review-send-actions' @@ -182,13 +184,15 @@ export function useMobileDiffReviewInteractions(input: InteractionInput) { if (!client || !currentItem || currentItem.scope === 'branch') { return } - const response = await client.sendRequest('files.openDiff', { + const response = await sourceFileDiffOpenRun.request(client, { worktree: `id:${worktreeId}`, relativePath: currentItem.filePath, staged: currentItem.scope === 'staged' }) - if (!response.ok) { - setActionError(response.error?.message || 'Unable to open in session') + try { + sourceFileDiffOpenRun.interpret(response) + } catch (error) { + setActionError(refusedRpcMessageOrFallback(error, 'Unable to open in session')) return } onOpenSession() diff --git a/mobile/src/session/use-mobile-diff-review-send-actions.ts b/mobile/src/session/use-mobile-diff-review-send-actions.ts index 40423f95664..cf061c47e9f 100644 --- a/mobile/src/session/use-mobile-diff-review-send-actions.ts +++ b/mobile/src/session/use-mobile-diff-review-send-actions.ts @@ -7,10 +7,11 @@ import { triggerSuccess } from '../platform/haptics' import { formatDiffComments, formatMobileDiffReviewPrompt } from './mobile-diff-comments' import { clearSentMobileDiffComments, markMobileDiffCommentsSent } from './mobile-diff-comment-edit' import { - readMobileReviewCreatedTerminal, - readMobileReviewTerminalSendAccepted, - readMobileReviewTerminalTabs -} from './mobile-diff-review-rpc' + reviewTerminalCreateRun, + reviewTerminalListRead, + reviewTerminalSendRun +} from './mobile-review-terminal-operations' +import { interpretOrThrowRefusalMessage } from '../transport/rpc-refusal-message' import { healMobileNativeChatStaleInput } from './mobile-native-chat-stale-input' import type { ReviewScreenState, SendSheetState } from './mobile-diff-review-screen-model' @@ -80,15 +81,17 @@ export function useMobileDiffReviewSendActions(input: SendActionsInput) { if (!(await healMobileNativeChatStaleInput({ client, terminal, deviceToken: null }))) { throw new Error('Failed to send notes') } - const response = await client.sendRequest('terminal.send', { + const response = await reviewTerminalSendRun.request(client, { terminal, text: formatMobileDiffReviewPrompt(comments), enter: true }) - if (!response.ok) { - throw new Error(response.error?.message || 'Failed to send notes') - } - if (!readMobileReviewTerminalSendAccepted(response.result)) { + let accepted + accepted = interpretOrThrowRefusalMessage( + () => reviewTerminalSendRun.interpret(response), + 'Failed to send notes' + ) + if (!accepted) { throw new Error('Terminal input is locked') } await markNotesSent(comments) @@ -104,16 +107,17 @@ export function useMobileDiffReviewSendActions(input: SendActionsInput) { if (!client || connState !== 'connected') { throw new Error('Waiting for desktop...') } - const response = await client.sendRequest('session.tabs.createTerminal', { + const response = await reviewTerminalCreateRun.request(client, { worktree: `id:${worktreeId}`, activate: false, select: true, navigation: 'caller' }) - if (!response.ok) { - throw new Error(response.error?.message || 'Failed to create terminal') - } - const created = readMobileReviewCreatedTerminal(response.result) + let created + created = interpretOrThrowRefusalMessage( + () => reviewTerminalCreateRun.interpret(response), + 'Failed to create terminal' + ) if (!created) { throw new Error('Created terminal response was invalid') } @@ -129,13 +133,15 @@ export function useMobileDiffReviewSendActions(input: SendActionsInput) { } setSendSheet({ kind: 'loading' }) try { - const response = await client.sendRequest('session.tabs.list', { + const response = await reviewTerminalListRead.request(client, { worktree: `id:${worktreeId}` }) - if (!response.ok) { - throw new Error(response.error?.message || 'Unable to load agent sessions') - } - setSendSheet({ kind: 'ready', terminals: readMobileReviewTerminalTabs(response.result) }) + let terminals + terminals = interpretOrThrowRefusalMessage( + () => reviewTerminalListRead.interpret(response), + 'Unable to load agent sessions' + ) + setSendSheet({ kind: 'ready', terminals }) } catch (err) { setSendSheet({ kind: 'error', diff --git a/mobile/src/session/use-mobile-file-tap-handlers.ts b/mobile/src/session/use-mobile-file-tap-handlers.ts index 5bfe71f839b..9c3019f3073 100644 --- a/mobile/src/session/use-mobile-file-tap-handlers.ts +++ b/mobile/src/session/use-mobile-file-tap-handlers.ts @@ -1,12 +1,12 @@ import { useCallback, useLayoutEffect, useRef, type MutableRefObject } from 'react' import { useRouter } from 'expo-router' import { triggerSelection } from '../platform/haptics' -import type { RpcClient } from '../transport/rpc-client' import { openMobileFileTap, type FileTapSessionTab } from './mobile-file-tap-open' import { openMobileNativeChatFileTap } from './mobile-native-chat-open-file' +import type { RpcOperationSender } from '../transport/rpc-operation-sender' type MobileFileTapHandlerOptions = { - client: Pick | null + client: RpcOperationSender | null hostId: string worktreeId: string worktreeName?: string diff --git a/mobile/src/session/use-mobile-native-chat-file-search.ts b/mobile/src/session/use-mobile-native-chat-file-search.ts index 53df98e3ee0..5cd97e04830 100644 --- a/mobile/src/session/use-mobile-native-chat-file-search.ts +++ b/mobile/src/session/use-mobile-native-chat-file-search.ts @@ -1,18 +1,22 @@ import { useCallback, useEffect, useRef, useState } from 'react' import type { RpcClient } from '../transport/rpc-client' +import { + nativeChatFileInventoryRead, + nativeChatFileSearchRead +} from './mobile-session-read-operations' import { rankSuggestions } from './mobile-native-chat-autocomplete' +function extractPaths(files: unknown): string[] { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + return ((files as { relativePath?: string }[] | undefined) ?? []) + .map((file) => file.relativePath ?? '') + .filter((path): path is string => path.length > 0) +} + const FILE_SEARCH_DEBOUNCE_MS = 120 const FILE_SEARCH_RESULT_LIMIT = 16 const FILE_SEARCH_QUERY_CACHE_LIMIT = 20 -function extractPaths(result: unknown): string[] { - const files = (result as { files?: Array<{ relativePath?: string }> }).files ?? [] - return files - .map((file) => file.relativePath ?? '') - .filter((path): path is string => path.length > 0) -} - /** Debounces current-host path searches, bounds the mobile result/cache, and * falls back to the legacy one-time full list when paired to an older host. */ export function useMobileNativeChatFileSearch(args: { @@ -88,13 +92,14 @@ export function useMobileNativeChatFileSearch(args: { const loadLegacyPaths = async (): Promise => { if (!legacyPathsRef.current) { if (!legacyLoadRef.current) { - const request = client - .sendRequest('files.list', { worktree: `id:${worktreeId}` }) + const request = nativeChatFileInventoryRead + .request(client, { worktree: `id:${worktreeId}` }) .then((response) => { - if (!response.ok || generationRef.current !== generation) { + const accepted = nativeChatFileInventoryRead.interpret(response) + if (!accepted.accepted || generationRef.current !== generation) { return null } - const paths = extractPaths(response.result) + const paths = extractPaths(accepted.value) legacyPathsRef.current = paths return paths }) @@ -122,17 +127,20 @@ export function useMobileNativeChatFileSearch(args: { await loadLegacyPaths() return } - const response = await client.sendRequest('files.searchPaths', { + const response = await nativeChatFileSearchRead.request(client, { worktree: `id:${worktreeId}`, query: normalizedQuery, limit: FILE_SEARCH_RESULT_LIMIT }) - if (response.ok) { + const accepted = nativeChatFileSearchRead.interpret(response) + if (accepted.accepted) { searchSupportedRef.current = true - applyPaths(extractPaths(response.result)) + applyPaths(extractPaths(accepted.value)) return } - if (response.error.code === 'method_not_found') { + // Why the raw refusal: `method_not_found` is what makes the composer fall back to the + // full inventory, and no acceptance policy carries a code. + if (!response.ok && response.error.code === 'method_not_found') { searchSupportedRef.current = false await loadLegacyPaths() } diff --git a/mobile/src/session/use-mobile-native-chat-readability.ts b/mobile/src/session/use-mobile-native-chat-readability.ts index e3729022d38..167e70f832f 100644 --- a/mobile/src/session/use-mobile-native-chat-readability.ts +++ b/mobile/src/session/use-mobile-native-chat-readability.ts @@ -1,10 +1,13 @@ import { useEffect, useState } from 'react' import type { RpcClient } from '../transport/rpc-client' +import { + nativeChatRepoListRead, + type MobileRuntimeRepoSummary +} from './mobile-session-read-operations' import { isFloatingWorkspaceWorktreeId } from './floating-workspace' import { isMobileNativeChatTranscriptReadable } from './mobile-native-chat-eligibility' import { getRepoIdFromMobileWorktreeId } from './mobile-session-route-helpers' -type RepoSummary = { id: string; connectionId?: string | null } type ReadabilityState = { client: RpcClient | null; worktreeId: string; readable: boolean } export function useMobileNativeChatReadability( @@ -27,14 +30,16 @@ export function useMobileNativeChatReadability( setState({ client, worktreeId, readable: false }) return } - void client - .sendRequest('repo.list') + void nativeChatRepoListRead + .request(client) .then((response) => { if (!active) { return } - const repos = response.ok - ? ((response.result as { repos?: RepoSummary[] }).repos ?? []) + const accepted = nativeChatRepoListRead.interpret(response) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const repos = accepted.accepted + ? ((accepted.value as MobileRuntimeRepoSummary[]) ?? []) : [] const repoId = getRepoIdFromMobileWorktreeId(worktreeId) const repo = repos.find((candidate) => candidate.id === repoId) diff --git a/mobile/src/session/use-mobile-native-chat-stop.ts b/mobile/src/session/use-mobile-native-chat-stop.ts index 69d2d8e73e8..6cfbc327dfb 100644 --- a/mobile/src/session/use-mobile-native-chat-stop.ts +++ b/mobile/src/session/use-mobile-native-chat-stop.ts @@ -2,7 +2,7 @@ import { useCallback, useEffect, useRef, type MutableRefObject } from 'react' import type { RpcClient } from '../transport/rpc-client' import { isRpcDeliveryUnknown } from '../transport/rpc-delivery-ambiguity' import { isLogicalClientCutoverError } from '../transport/stable-logical-rpc-client' -import { isTerminalSendRpcAccepted } from '../terminal/terminal-send-rpc-response' +import { nativeChatTerminalWrite } from './mobile-session-write-operations' import { reportWorkerTerminalUserInput } from '../terminal/worker-terminal-takeover-report' import { openMobileNativeChatSendBudget } from './mobile-native-chat-send' @@ -94,9 +94,9 @@ export function useMobileNativeChatStop(args: { reportIfSettled() return } - void client - .sendRequest( - 'terminal.send', + void nativeChatTerminalWrite + .request( + client, { terminal: handle, text: String.fromCharCode(27), @@ -110,7 +110,7 @@ export function useMobileNativeChatStop(args: { { timeoutMs, budgetSpansConnect: true } ) .then((response) => { - if (isTerminalSendRpcAccepted(response)) { + if (nativeChatTerminalWrite.interpret(response) === true) { sawAccepted = true // A deliberate Stop is human input; it takes the worker over like any other key. reportWorkerTerminalUserInput(client, handle) diff --git a/mobile/src/session/use-mobile-session-close-actions.ts b/mobile/src/session/use-mobile-session-close-actions.ts index c2ff6825b0a..98f9f6cbc7a 100644 --- a/mobile/src/session/use-mobile-session-close-actions.ts +++ b/mobile/src/session/use-mobile-session-close-actions.ts @@ -1,3 +1,8 @@ +import { + sessionTabClose, + sessionTerminalClose, + sessionTerminalRename +} from './mobile-session-write-operations' import type { MobileSessionTab, Terminal } from './mobile-session-route-types' import type { MobileSessionContentCreateActionsModel } from './use-mobile-session-content-create-actions' @@ -39,11 +44,10 @@ export function useMobileSessionCloseActions(scope: MobileSessionContentCreateAc try { const title = value.trim() - const response = await client.sendRequest('terminal.rename', { - terminal: target.handle, - title - }) - if (response.ok) { + const response = sessionTerminalRename.interpret( + await sessionTerminalRename.request(client, { terminal: target.handle, title }) + ) + if (response.accepted) { setTerminals((prev) => { const next = prev.map((terminal) => terminal.handle === target.handle @@ -66,10 +70,10 @@ export function useMobileSessionCloseActions(scope: MobileSessionContentCreateAc } try { - const response = await client.sendRequest('terminal.close', { - terminal: target.handle - }) - if (response.ok) { + const response = sessionTerminalClose.interpret( + await sessionTerminalClose.request(client, { terminal: target.handle }) + ) + if (response.accepted) { unsubscribeTerminal(target.handle) terminalRefs.current.delete(target.handle) initializedHandlesRef.current.delete(target.handle) @@ -97,14 +101,16 @@ export function useMobileSessionCloseActions(scope: MobileSessionContentCreateAc return } try { - const response = await client.sendRequest('session.tabs.close', { - worktree: `id:${worktreeId}`, - tabId: tab.id, - // Why: a tapped tab close is explicit user intent; older hosts strip - // the unknown field and keep their legacy behavior. - reason: 'user' - }) - if (response.ok) { + const response = sessionTabClose.interpret( + await sessionTabClose.request(client, { + worktree: `id:${worktreeId}`, + tabId: tab.id, + // Why: a tapped tab close is explicit user intent; older hosts strip + // the unknown field and keep their legacy behavior. + reason: 'user' + }) + ) + if (response.accepted) { const remainingTabs = sessionTabsRef.current.filter((candidate) => candidate.id !== tab.id) reconcileBufferedDraftsRef.current(sessionTabsRef.current, remainingTabs) if (tab.type === 'browser' && tab.browserPageId === pendingBrowserFocusPageIdRef.current) { diff --git a/mobile/src/session/use-mobile-session-content-create-actions.ts b/mobile/src/session/use-mobile-session-content-create-actions.ts index f9980d379ba..1812e2cf122 100644 --- a/mobile/src/session/use-mobile-session-content-create-actions.ts +++ b/mobile/src/session/use-mobile-session-content-create-actions.ts @@ -1,10 +1,28 @@ -import type { RpcFailure, RpcSuccess } from '../transport/types' import { normalizeBrowserUrl } from '../browser/browser-url' import { captureMobileFileMutationOwnership } from '../files/mobile-file-mutation-ownership' +import { + browserGoBack, + browserGoForward, + browserReload +} from '../browser/mobile-browser-command-operations' +import { sourceFileOpenRun } from '../source-control/mobile-source-file-open-operations' +import { + sessionBrowserTabCreate, + sessionMarkdownNoteCreate +} from './mobile-session-launch-operations' +import { interpretOrThrowRefusalMessage } from '../transport/rpc-refusal-message' +import type { MobileBrowserNavigationMethod } from './MobileBrowserTabActionSheet' import { isFileExistsErrorMessage } from './mobile-session-route-helpers' import type { MobileSessionTab } from './mobile-session-route-types' import type { MobileSessionTerminalCreateActionsModel } from './use-mobile-session-terminal-create-actions' +/** The tab sheet names the method it wants; each one is a separate operation on the same policy. */ +const BROWSER_NAVIGATION_COMMANDS = { + 'browser.back': browserGoBack, + 'browser.forward': browserGoForward, + 'browser.reload': browserReload +} as const + export function useMobileSessionContentCreateActions( scope: MobileSessionTerminalCreateActionsModel ) { @@ -37,27 +55,25 @@ export function useMobileSessionContentCreateActions( const mutationOwnership = await captureMobileFileMutationOwnership(client, worktree) for (let attempt = 1; attempt <= 100; attempt += 1) { const relativePath = attempt === 1 ? 'untitled.md' : `untitled-${attempt}.md` - const createResponse = await client.sendRequest( - 'files.createFile', + const createResponse = await sessionMarkdownNoteCreate.request( + client, { worktree, relativePath, ...mutationOwnership }, { timeoutMs: 15_000 } ) if (!createResponse.ok) { - const message = (createResponse as RpcFailure).error.message + const message = createResponse.error.message if (isFileExistsErrorMessage(message) && attempt < 100) { continue } throw new Error(message || 'Failed to create markdown note') } - const openResponse = await client.sendRequest( - 'files.open', + const openResponse = await sourceFileOpenRun.request( + client, { worktree, relativePath }, { timeoutMs: 15_000 } ) - if (!openResponse.ok) { - throw new Error((openResponse as RpcFailure).error.message) - } + interpretOrThrowRefusalMessage(() => sourceFileOpenRun.interpret(openResponse), '') scheduleDelayedAction(() => void fetchSessionTabs(), 300) return } @@ -91,8 +107,8 @@ export function useMobileSessionContentCreateActions( setCreatingBrowser(true) setCreateError('') try { - const response = await client.sendRequest( - 'browser.tabCreate', + const response = await sessionBrowserTabCreate.request( + client, { worktree: `id:${worktreeId}`, url, @@ -101,11 +117,12 @@ export function useMobileSessionContentCreateActions( }, { timeoutMs: 30_000 } ) - if (!response.ok) { - throw new Error((response as RpcFailure).error.message) - } + const created = interpretOrThrowRefusalMessage( + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: main cast this payload unread; the reader hands it back whole. + () => sessionBrowserTabCreate.interpret(response) as { browserPageId?: string }, + '' + ) // Focus the new browser tab once it syncs; refresh a few times since the desktop registers the tab asynchronously. - const created = (response as RpcSuccess).result as { browserPageId?: string } if (created.browserPageId) { pendingBrowserFocusPageIdRef.current = created.browserPageId } @@ -127,24 +144,23 @@ export function useMobileSessionContentCreateActions( async function handleBrowserNavigationCommand( tab: Extract, - method: 'browser.back' | 'browser.forward' | 'browser.reload' + method: MobileBrowserNavigationMethod ) { if (!client || !tab.browserPageId) { showToast('Browser page is not available yet.', 1500) return } try { - const response = await client.sendRequest( - method, + const command = BROWSER_NAVIGATION_COMMANDS[method] + const response = await command.request( + client, { worktree: `id:${worktreeId}`, page: tab.browserPageId }, { timeoutMs: 15_000 } ) - if (!response.ok) { - throw new Error((response as RpcFailure).error.message) - } + interpretOrThrowRefusalMessage(() => command.interpret(response), '') scheduleDelayedAction(() => void fetchSessionTabs(), 250) } catch (err) { const message = err instanceof Error ? err.message : 'Browser command failed' diff --git a/mobile/src/session/use-mobile-session-diff-comments.ts b/mobile/src/session/use-mobile-session-diff-comments.ts index e66db92a955..59350d51d00 100644 --- a/mobile/src/session/use-mobile-session-diff-comments.ts +++ b/mobile/src/session/use-mobile-session-diff-comments.ts @@ -1,6 +1,8 @@ import { useEffect, useCallback } from 'react' import * as Clipboard from 'expo-clipboard' -import type { RpcFailure, RpcSuccess } from '../transport/types' +import { interpretOrThrowRefusalMessage } from '../transport/rpc-refusal-message' +import { sessionWorktreeNotesRead } from './mobile-session-read-operations' +import { sessionWorktreeNotesWrite } from './mobile-session-write-operations' import { triggerSelection, triggerSuccess, triggerError } from '../platform/haptics' import { addMobileDiffComment, @@ -30,16 +32,15 @@ export function useMobileSessionDiffComments(scope: MobileSessionDocumentReaders setDiffComments([]) return } - const response = await client.sendRequest('worktree.show', { - worktree: `id:${worktreeId}` - }) - if (!response.ok) { + const response = sessionWorktreeNotesRead.interpret( + await sessionWorktreeNotesRead.request(client, { worktree: `id:${worktreeId}` }) + ) + if (!response.accepted) { return } - const result = (response as RpcSuccess).result as { - worktree?: { diffComments?: unknown } - } - setDiffComments(normalizeMobileDiffComments(result.worktree?.diffComments, worktreeId)) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: main cast this member unread; the reader hands back the same `worktree` value. + const worktree = response.value as { diffComments?: unknown } | undefined + setDiffComments(normalizeMobileDiffComments(worktree?.diffComments, worktreeId)) }, [client, connState, worktreeId, isFloatingWorkspaceRoute]) const persistDiffComments = useCallback( @@ -47,13 +48,14 @@ export function useMobileSessionDiffComments(scope: MobileSessionDocumentReaders if (!client || connState !== 'connected') { throw new Error('Waiting for desktop...') } - const response = await client.sendRequest('worktree.set', { + const response = await sessionWorktreeNotesWrite.request(client, { worktree: `id:${worktreeId}`, - diffComments: comments + diffComments: [...comments] }) - if (!response.ok) { - throw new Error((response as RpcFailure).error.message || 'Failed to save review notes') - } + interpretOrThrowRefusalMessage( + () => sessionWorktreeNotesWrite.interpret(response), + 'Failed to save review notes' + ) }, [client, connState, worktreeId] ) diff --git a/mobile/src/session/use-mobile-session-document-readers.ts b/mobile/src/session/use-mobile-session-document-readers.ts index dbf78b1a45a..6f68a649876 100644 --- a/mobile/src/session/use-mobile-session-document-readers.ts +++ b/mobile/src/session/use-mobile-session-document-readers.ts @@ -1,6 +1,8 @@ import { useCallback } from 'react' -import type { RpcFailure, RpcSuccess } from '../transport/types' +import type { RpcFailure } from '../transport/types' import { resolveMobileFileTabDoc } from '../files/mobile-file-tab-doc' +import { filePreviewTextRead } from '../files/mobile-file-preview-operations' +import { markdownTabRead } from './mobile-session-read-operations' import { buildMarkdownDiskFallbackDoc, shouldReadMarkdownFromDiskAfterReadTabFailure @@ -17,12 +19,13 @@ export function useMobileSessionDocumentReaders(scope: MobileSessionTabApplicati } setMarkdownDocs((prev) => new Map(prev).set(tab.id, { status: 'loading' })) try { - const response = await client.sendRequest('markdown.readTab', { + const response = await markdownTabRead.request(client, { worktree: `id:${worktreeId}`, tabId: tab.id }) if (response.ok) { - const result = (response as RpcSuccess).result as { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const result = markdownTabRead.interpret(response) as { content: string version: string isDirty: boolean @@ -47,14 +50,17 @@ export function useMobileSessionDocumentReaders(scope: MobileSessionTabApplicati throw new Error((response as RpcFailure).error.message) } // Why: a headless host fails markdown.readTab (renderer_unavailable); fall back to the on-disk file for read-only render. - const fallback = await client.sendRequest('files.read', { - worktree: `id:${worktreeId}`, - relativePath: tab.relativePath - }) - if (!fallback.ok) { + const fallback = filePreviewTextRead.interpret( + await filePreviewTextRead.request(client, { + worktree: `id:${worktreeId}`, + relativePath: tab.relativePath + }) + ) + if (!fallback.accepted) { throw new Error('Unable to read markdown') } - const fileResult = (fallback as RpcSuccess).result as { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: main cast this payload unread; the shared preview reader hands it back whole. + const fileResult = fallback.value as { content: string truncated: boolean byteLength: number diff --git a/mobile/src/session/use-mobile-session-markdown-actions.ts b/mobile/src/session/use-mobile-session-markdown-actions.ts index 50b6dbd7b29..70726dc4be7 100644 --- a/mobile/src/session/use-mobile-session-markdown-actions.ts +++ b/mobile/src/session/use-mobile-session-markdown-actions.ts @@ -1,7 +1,7 @@ import { useEffect, useCallback } from 'react' import { BackHandler, Keyboard } from 'react-native' import * as Clipboard from 'expo-clipboard' -import type { RpcFailure, RpcSuccess } from '../transport/types' +import { markdownTabSave } from './mobile-session-write-operations' import { triggerSuccess, triggerError } from '../platform/haptics' import type { DirtyMarkdownDraft, MobileSessionTab } from './mobile-session-route-types' import type { MobileSessionDiffCommentsModel } from './use-mobile-session-diff-comments' @@ -138,16 +138,14 @@ export function useMobileSessionMarkdownActions(scope: MobileSessionDiffComments return new Map(prev).set(tab.id, { ...existing, saving: true, saveError: undefined }) }) try { - const response = await client.sendRequest('markdown.saveTab', { + const response = await markdownTabSave.request(client, { worktree: `id:${worktreeId}`, tabId: tab.id, baseVersion: current.baseVersion, content: current.localContent }) - if (!response.ok) { - throw new Error((response as RpcFailure).error.message) - } - const result = (response as RpcSuccess).result as { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const result = markdownTabSave.interpret(response) as { content: string version: string isDirty: false diff --git a/mobile/src/session/use-mobile-session-terminal-list.ts b/mobile/src/session/use-mobile-session-terminal-list.ts index 105677533de..b479c02f60f 100644 --- a/mobile/src/session/use-mobile-session-terminal-list.ts +++ b/mobile/src/session/use-mobile-session-terminal-list.ts @@ -1,12 +1,12 @@ import { useRef, useCallback, useEffect, useMemo } from 'react' -import type { RpcSuccess } from '../transport/types' +import { sessionTerminalListRead } from './mobile-session-read-operations' +import type { Terminal } from './mobile-session-route-types' import { mergeTerminalListWithKnownRecords, terminalRecordsEqual } from './mobile-terminal-records' import { createTerminalPrunePredicate, pruneTerminalKeyboardMetrics, resolveRetainedTerminalHandles } from './mobile-terminal-prune-decision' -import type { Terminal } from './mobile-session-route-types' import type { MobileSessionTerminalStreamDisplayModel } from './use-mobile-session-terminal-stream-display' import { MobileTerminalInventoryRequest } from './mobile-terminal-inventory-request' import type { MobileTerminalInventoryRefreshOptions } from './use-mobile-terminal-inventory-recovery' @@ -54,14 +54,17 @@ export function useMobileSessionTerminalList(scope: MobileSessionTerminalStreamD allowEmptyLoaded, async (allowsEmpty, isCurrent) => { try { - const response = await client.sendRequest('terminal.list', { - worktree: `id:${worktreeId}`, - includeVisualLayouts: false - }) - if (!isCurrent() || !response.ok) { + const response = sessionTerminalListRead.interpret( + await sessionTerminalListRead.request(client, { + worktree: `id:${worktreeId}`, + includeVisualLayouts: false + }) + ) + if (!isCurrent() || !response.accepted) { return false } - const result = (response as RpcSuccess).result as { terminals: Terminal[] } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const result = response.value as { terminals: Terminal[] } if (result.terminals.length === 0 && !allowsEmpty()) { return true } diff --git a/mobile/src/session/use-quick-commands.ts b/mobile/src/session/use-quick-commands.ts index 6537551be7a..4000a5205ce 100644 --- a/mobile/src/session/use-quick-commands.ts +++ b/mobile/src/session/use-quick-commands.ts @@ -1,14 +1,26 @@ import { useCallback, useEffect, useRef, useState } from 'react' import type { RpcClient } from '../transport/rpc-client' import { isLogicalClientCutoverError } from '../transport/stable-logical-rpc-client' -import type { RpcFailure, RpcResponse, RpcSuccess } from '../transport/types' +import { + interpretOrThrowRefusalMessage, + refusedRpcMessageOrFallback +} from '../transport/rpc-refusal-message' +import type { RpcResponse } from '../transport/types' import type { TerminalQuickCommand } from '../../../src/shared/terminal-quick-command-types' +import { quickCommandsRead } from './mobile-session-read-operations' +import { quickCommandsWrite } from './mobile-session-write-operations' import { applyTerminalQuickCommandMutation, parseNormalizedTerminalQuickCommands, type TerminalQuickCommandMutation } from '../terminal/quick-commands' +function readQuickCommands(result: unknown): TerminalQuickCommand[] | null { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const list = (result as { terminalQuickCommands?: unknown } | null)?.terminalQuickCommands + return parseNormalizedTerminalQuickCommands(list) +} + type Args = { client: RpcClient | null // Fetch only while the sheet is open — quick commands are settings data we @@ -39,11 +51,6 @@ type MutationContext = { nextMutationId: number } -function readQuickCommands(result: unknown): TerminalQuickCommand[] | null { - const list = (result as { terminalQuickCommands?: unknown } | null)?.terminalQuickCommands - return parseNormalizedTerminalQuickCommands(list) -} - const LOAD_CUTOVER_MAX_RETRIES = 5 // Why: opening the sheet right after connecting over relay races the relay→direct @@ -55,7 +62,7 @@ async function loadQuickCommandsWithCutoverRetry( ): Promise { for (let migrationRetry = 0; ; migrationRetry += 1) { try { - return await client.sendRequest('settings.getTerminalQuickCommands') + return await quickCommandsRead.request(client) } catch (error) { if ( cancelled() || @@ -129,11 +136,13 @@ export function useQuickCommands({ client, enabled }: Args): QuickCommandsState ) { return } - if (!response.ok) { - setError((response as RpcFailure).error.message || 'Failed to load quick commands') + let next + try { + next = readQuickCommands(quickCommandsRead.interpret(response)) + } catch (err) { + setError(refusedRpcMessageOrFallback(err, 'Failed to load quick commands')) return } - const next = readQuickCommands((response as RpcSuccess).result) if (!next) { setError('Failed to load quick commands') return @@ -189,15 +198,14 @@ export function useQuickCommands({ client, enabled }: Args): QuickCommandsState let succeeded = false let failureMessage: string | null = null try { - const response = await client.sendRequest('settings.updateTerminalQuickCommands', { + const response = await quickCommandsWrite.request(client, { mutation: commandMutation }) - if (!response.ok) { - throw new Error( - (response as RpcFailure).error.message || 'Failed to save quick command' - ) - } - const confirmed = readQuickCommands((response as RpcSuccess).result) + let confirmed + confirmed = interpretOrThrowRefusalMessage( + () => readQuickCommands(quickCommandsWrite.interpret(response)), + 'Failed to save quick command' + ) if (!confirmed) { // Why: treating an invalid success payload as [] would let the next // full-list mutation erase commands that still exist on the host. diff --git a/mobile/src/test-support/rpc-recording/README.md b/mobile/src/test-support/rpc-recording/README.md index b6d5f1379ba..8878136f648 100644 --- a/mobile/src/test-support/rpc-recording/README.md +++ b/mobile/src/test-support/rpc-recording/README.md @@ -8,12 +8,52 @@ logic. The module loader transpiles the real source with TypeScript and resolves task barrels lazily so unused native views do not need a device. Accessing an unspecified native import fails. The history metadata function is exposed to its adapter without rewriting its body. +JSX compiles through the automatic runtime, because product sources use it and never import React; +a classic `React.createElement` emit throws `React is not defined` on the first screen render. The transport reuses `createStableLogicalRpcClient`, `projectMobileRpcRequestParams` (through that client), `RpcClientRequestTracker`, and the delivery-unknown marker. Hook mounting follows `use-mobile-native-chat-file-search.test.ts`; physical session mounting follows `stable-logical-rpc-client.test.ts`. Neither test exported a reusable mount utility. +## Mounting a screen + +`screenMount` mounts a component rather than a hook, and `projectMountedScreen` reads back what it +rendered: the inert primitives it chose, the copy it put on them, the labels it gave them, and the +crash instead if a reply took it down. A screen that throws is a recording, not a suite failure — +several reply partitions do exactly that, and refusing to record them would leave the shapes that +break a screen the only ones this oracle cannot see. The boundary also reports the crash to the +effect sink, so a hook mount, whose projection is the hook's own value and never a crash, still +carries it into a golden: an effect forces a cleanup checkpoint even when no adapter looks. + +The view packages a screen imports are in `screen-native-substitutes.ts`, under the table's usual +rule: only what a recording is known to read is listed, the rest throws. Every element there is +inert. It renders its children and keeps its props where a projection can read them, and does +nothing else: no callback it is handed is ever invoked, nothing is measured and no navigation +happens. `renderedElementProps` is the consequence — an inert list never calls `renderItem`, so the +data it was handed is the only record of what the screen would have drawn. +`screen-native-substitutes.test.ts` is the census; it renders every element with a callback prop and +a render callback as children and fails if either is called. + +Nothing is listed ahead of a reader, and that is a rule rather than an oversight. A member +provisioned before any recording reads it converts a refusal that would have forced a decision into +a silent stand-in, and a silent stand-in is how an inert `InteractionManager` or `Alert` swallows the +send a screen deferred behind it. The table was cut back to the members a recording actually reads; +whoever mounts the next screen adds what it needs together with the recording that reads it. + +## What a scenario declares about its device + +Two device surfaces are backed by the scenario instead of refused: `deviceStore` backs +`@react-native-async-storage/async-storage`, and `deviceState.notificationTray` backs +`expo-notifications`. Undeclared, both stay exactly as they were — a throwing store and an unlisted +package — so no existing recording changes and no new one reaches a device by accident. + +Reads resolve the declared entry or `null`, and never a write. A write that fed back into a read +would let a later read return a byte nothing declared, which is the device back inside the +recording; writes are recorded as effects instead, where they are observed rather than assumed. +That is the whole point of the declaration: every byte a read can return is visible in the scenario +file, and `scenarioSha256` pins it per golden like any other scenario field. + ## Scenario actions ```json @@ -122,7 +162,15 @@ file rather than of a restatement of it; `golden-header-digest.test.ts` pins wha buy. Checkpoints contain ordered sender calls and serialized physical application payloads, action and -request settlements, projected state, and ordered external effects. Sender args have three +request settlements, projected state, and ordered external effects. Each effect also carries `sent`, +the number of requests sent when it was recorded: sender and effects are two independent lists, so +without it a send reordered ahead of a device write moves neither list and no golden notices. +Scheduling the journal write in `codex-reset-attempt-journal.ts` on a timer instead of awaiting it +moved none of the 520 goldens before `sent` existed and moves two now, `codex-reset-credit-consumed` +and its reply matrix, where the write's `sent` goes from 0 to 1. What `sent` cannot see is a defer +shorter than the product's own await chain: dropping that `await`, or deferring the write by one +microtask, still lands it before the send, because resolving the journal's promise chain costs more +microtask ticks than the defer saved. Sender args have three positional slots; absent, undefined and null are distinct `$rpc` tags. Literal objects containing `$rpc` are escaped. Only object keys are sorted; array/effect order, options, budgets, settlement times and errors stay observable. Errors contain category, message and `isRpcDeliveryUnknown`, never @@ -365,9 +413,10 @@ so closing them needs new adapter capability rather than another scenario. Anyon call sites should not assume the recordings will notice a change here: - **`use-host-repo-metadata.ts` cross-module cache write.** Deleting `setCachedRepos(...)` survives. - No adapter mounts `useNewWorkspaceRepositories`, which is the consumer that reads that cache to - open workspace creation without waiting, so the write has no observer. Closing it needs a - cache-consumer mount after the metadata fetch. + `workspace.repositories` now mounts `useNewWorkspaceRepositories`, which is the consumer that + reads that cache to open workspace creation without waiting, but no recording runs the metadata + fetch and that consumer in the same mount, so the write still has no observer. Closing it needs + one recording that does both, not another scenario for either. - **`use-pr-bot-author-overrides.ts` client-identity guard.** Forcing `sourceClientRef.current !== client` to `false` survives. The adapter closes over one client object: `reset` changes only the refresh key, `cutover` migrates the same stable logical client, diff --git a/mobile/src/test-support/rpc-recording/adapters/agent-history-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/agent-history-mount-adapters.ts index a101ccf437d..54ac81c7435 100644 --- a/mobile/src/test-support/rpc-recording/adapters/agent-history-mount-adapters.ts +++ b/mobile/src/test-support/rpc-recording/adapters/agent-history-mount-adapters.ts @@ -1,8 +1,7 @@ import { createElement } from 'react' import { act, create, type ReactTestRenderer } from 'react-test-renderer' -import type { OperationExposure } from '../operation-module-loader' +import type { OperationExposure, operationModuleLoader } from '../operation-module-loader' import type { MountAdapter, MountContext } from '../recording-scenario' -import type { operationModuleLoader } from '../operation-module-loader' const HOST_ID = 'host-1' const WORKTREE_ID = 'worktree-1' diff --git a/mobile/src/test-support/rpc-recording/adapters/ai-vault-resume-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/ai-vault-resume-mount-adapters.ts new file mode 100644 index 00000000000..29492269833 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/ai-vault-resume-mount-adapters.ts @@ -0,0 +1,87 @@ +import type { MountAdapter } from '../recording-scenario' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' + +const WORKTREE = 'workspace-1' +/** The shared-home layout `isLegacySharedCodexHome` matches; anything else returns before sending. */ +const LEGACY_CODEX_HOME = '/hosts/codex-runtime-home/home' + +/** + * Resuming a sleeping agent: the legacy-Codex repin the phone asks for first, then the create/send + * pair that puts the resume command in a terminal. Both are exported async functions taking a + * client, so the recorded state is each function's own answer and no React host is needed. + */ +export function aiVaultResumeMountAdapters( + modules: ReturnType +): Record { + return { + 'aiVault.resume-preparation': ({ client }) => { + const prepare = modules.load( + 'mobile/src/session/ai-vault-resume-preparation.ts' + ).prepareMobileAiVaultSessionResume + let prepared: unknown = 'unprepared' + let failure: unknown = null + return { + action: (name) => + prepare( + client, + mountFixture[1]>({ + // `claude` never reaches the wire: the preparation is Codex-only and returns first. + agent: name === 'claude' ? 'claude' : 'codex', + filePath: '/sessions/rollout.jsonl', + codexHome: LEGACY_CODEX_HOME, + executionHostId: 'local' + }) + ).then( + (value: unknown) => { + prepared = value + return value + }, + (error: unknown) => { + failure = error instanceof Error ? error.message : String(error) + throw error + } + ), + state: () => ({ prepared, failure }), + dispose: () => {} + } + }, + 'aiVault.resume-launch': ({ client }) => { + const resume = modules.load( + 'mobile/src/session/ai-vault-resume-launch.ts' + ).resumeAiVaultSessionInTerminal + let launched: unknown = 'unlaunched' + let failure: unknown = null + return { + action: (name) => + resume( + client, + WORKTREE, + mountFixture[2]>({ + command: 'codex resume rollout', + // The bare arm drops every optional launch field, which changes the create params. + ...(name === 'bare' + ? {} + : { + env: { ORCA_RESUME: '1' }, + envToDelete: ['CODEX_HOME'], + launchAgent: 'codex', + clientMutationId: 'resume-mutation-1' + }) + }) + ).then( + (value: unknown) => { + launched = value + return value + }, + (error: unknown) => { + failure = error instanceof Error ? error.message : String(error) + throw error + } + ), + state: () => ({ launched, failure }), + dispose: () => {} + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/clipboard-image-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/clipboard-image-mount-adapters.ts new file mode 100644 index 00000000000..1998127d67a --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/clipboard-image-mount-adapters.ts @@ -0,0 +1,150 @@ +import type { MountAdapter } from '../recording-scenario' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' + +const TERMINAL = 'terminal-1' +const DEVICE_TOKEN = 'device-token-1' +const CONNECTION = 'connection-1' +/** Four base64 characters per byte-triple; short enough that one chunk covers a whole upload. */ +const IMAGE_BASE64 = 'AAAA'.repeat(8) + +/** + * The clipboard image path a phone takes to get pixels into a terminal: the chunked host upload and + * its single-frame fallback, the picker-driven attachment that rides on it, and the native-chat + * paste sequence. The picker itself is injected by the attachment's own dependency object, so no + * image-picker module is reached; the recording observes the upload and the terminal writes. + */ +export function clipboardImageMountAdapters( + modules: ReturnType +): Record { + return { + 'clipboard.image-upload': ({ client }) => { + const save = modules.load( + 'mobile/src/session/mobile-clipboard-image.ts' + ).saveMobileClipboardImageAsTempFile + let path: unknown = 'unsaved' + let failure: unknown = null + return { + action: (name, args) => + save(client, String(args.data ?? IMAGE_BASE64), { + connectionId: name === 'local' ? null : CONNECTION + }).then( + (value: unknown) => { + path = value + return value + }, + (error: unknown) => { + failure = error instanceof Error ? error.message : String(error) + throw error + } + ), + state: () => ({ path, failure }), + dispose: () => {} + } + }, + 'clipboard.image-terminal-attachment': ({ client, effect }) => { + const attach = modules.load( + 'mobile/src/session/mobile-image-attachment.ts' + ).attachMobileImageToTerminal + let attached: unknown = 'unattached' + let failure: unknown = null + return { + action: (name) => + attach( + 'library', + mountFixture[1]>({ + client, + terminal: TERMINAL, + deviceToken: name === 'anonymous' ? null : DEVICE_TOKEN, + getConnectionId: () => Promise.resolve(CONNECTION), + pickImage: () => + Promise.resolve(name === 'cancelled' ? null : { base64: IMAGE_BASE64 }), + onUploadStart: () => effect('upload-start', {}), + beforeTerminalSend: (terminal: string) => { + effect('before-terminal-send', { terminal }) + return Promise.resolve(name !== 'blocked') + } + }) + ).then( + (value: unknown) => { + attached = value + return value + }, + (error: unknown) => { + failure = error instanceof Error ? error.message : String(error) + throw error + } + ), + state: () => ({ attached, failure }), + dispose: () => {} + } + }, + 'nativeChat.image-upload': ({ client, effect }) => { + const upload = modules.load< + typeof import('../../../session/mobile-native-chat-image-attachment') + >('mobile/src/session/mobile-native-chat-image-attachment.ts').uploadMobileNativeChatImages + let uploaded: unknown = 'unuploaded' + let failure: unknown = null + return { + action: (name) => + upload( + 'library', + mountFixture[1]>({ + client, + getConnectionId: () => Promise.resolve(CONNECTION), + pickImages: () => + name === 'cancelled' + ? [] + : name === 'two' + ? [{ base64: IMAGE_BASE64 }, { base64: IMAGE_BASE64, uri: 'file:///b.png' }] + : [{ base64: IMAGE_BASE64, uri: 'file:///a.png' }], + onUploadStart: () => effect('upload-start', {}), + onImageUploaded: (image) => effect('image-uploaded', image) + }) + ).then( + (value: unknown) => { + uploaded = value + return value + }, + (error: unknown) => { + failure = error instanceof Error ? error.message : String(error) + throw error + } + ), + state: () => ({ uploaded, failure }), + dispose: () => {} + } + }, + 'nativeChat.image-paste': ({ client }) => { + const paste = modules.load( + 'mobile/src/session/mobile-native-chat-image-send.ts' + ).pasteMobileNativeChatImagePaths + let pasted: unknown = 'unpasted' + let failure: unknown = null + return { + action: (name) => + paste( + mountFixture[0]>({ + client, + terminal: TERMINAL, + deviceToken: name === 'anonymous' ? null : DEVICE_TOKEN, + imagePaths: name === 'two' ? ['/tmp/a.png', '/tmp/b.png'] : ['/tmp/a.png'], + followedByText: name !== 'trailing', + ...(name === 'burst' ? { clearInput: '' } : {}) + }) + ).then( + (value: unknown) => { + pasted = value + return value + }, + (error: unknown) => { + failure = error instanceof Error ? error.message : String(error) + throw error + } + ), + state: () => ({ pasted, failure }), + dispose: () => {} + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/codex-reset-credit-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/codex-reset-credit-mount-adapters.ts new file mode 100644 index 00000000000..cb99d8fd01d --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/codex-reset-credit-mount-adapters.ts @@ -0,0 +1,82 @@ +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' +import type { AccountsSnapshot } from '../../../components/accounts-snapshot' + +const HOST = 'host-1' +const ACCOUNT_REVISION = 1_700_000_000_000 + +/** + * The offer the scenario confirms against. Recorded rather than invented: the expected scope the + * request carries is derived from this by the product's own `getCodexResetCreditScope`, so the + * bytes on the wire are the ones a screen holding this snapshot would send. + */ +const CODEX_ACCOUNTS = mountFixture({ + claude: { accounts: [], activeAccountId: null }, + codex: { + accounts: [{ id: 'codex-1', email: 'codex@example.test', updatedAt: ACCOUNT_REVISION }], + activeAccountId: 'codex-1', + activeAccountIdsByRuntime: { host: 'codex-1', wsl: {} } + }, + rateLimits: { + claude: null, + codex: { + provider: 'codex', + session: null, + weekly: null, + rateLimitResetCredits: { availableCount: 1 }, + updatedAt: ACCOUNT_REVISION, + error: null, + status: 'ok' + }, + inactiveClaudeAccounts: [], + inactiveCodexAccounts: [] + } +}) + +/** Redeeming a Codex rate-limit reset credit, and the attempt journal that makes it idempotent. */ +export function codexResetCreditMountAdapters( + modules: ReturnType +): Record { + return { + 'accounts.codex-reset-credit': ({ client }) => { + const credit = modules.load( + 'mobile/src/components/codex-reset-credit.ts' + ) + const snapshot = modules + .load( + 'mobile/src/components/accounts-snapshot.ts' + ) + .decodeAccountsSnapshot(CODEX_ACCOUNTS) + let settled: unknown = null + return { + action(name) { + if (name !== 'confirm') { + throw new Error(`Unknown reset credit action: ${name}`) + } + const expectedScope = credit.getCodexResetCreditScope(snapshot) + if (!expectedScope) { + throw new Error('The recorded snapshot offers no reset credit to confirm') + } + const pending = credit.requestCodexResetCredit(client, { + hostId: HOST, + expectedScope, + createIdempotencyKey: () => globalThis.crypto.randomUUID() + }) + void pending.then( + (result) => { + settled = { + outcome: 'outcome' in result ? result.outcome : result.status, + attemptJournalRetained: result.attemptJournalRetained + } + }, + () => undefined + ) + return pending + }, + state: () => ({ settled }), + dispose: () => {} + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/diff-review-action-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/diff-review-action-mount-adapters.ts new file mode 100644 index 00000000000..e192d454bae --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/diff-review-action-mount-adapters.ts @@ -0,0 +1,171 @@ +import { hookMount, performHookAction } from '../hook-mount' +import { mountFixture } from '../recorder-fixture-shape' +import type { DiffComment } from '../../../../../src/shared/diff-comment-types' +import type { MobileDiffReviewQueueItem } from '../../../session/mobile-diff-review-queue' +import type { + ReviewScreenState, + SendSheetState +} from '../../../session/mobile-diff-review-screen-model' +import type { MountAdapter } from '../recording-scenario' +import type { operationModuleLoader } from '../operation-module-loader' + +const WORKSPACE = 'workspace-1' +const HOST = 'host-1' +const FILE = 'src/app.ts' +const TERMINAL = 'terminal-1' + +/** + * Everything the review screen writes: the note/review-state metadata save, the stage/unstage/ + * discard mutations, the reveal-in-session open, and the two ways review notes reach a terminal. + * + * One mount, because the screen composes the comment, git and send hooks into a single interaction + * surface and they share the client and the error setter. The send arm also drives the stale-input + * heal, whose clearing write only happens when a prior image paste marked the handle — so the + * marker is set by an action rather than assumed. + */ +export function diffReviewActionMountAdapters( + modules: ReturnType +): Record { + return { + 'session.diff-review-actions': ({ client, effect }) => { + const useInteractions = modules.load< + typeof import('../../../session/use-mobile-diff-review-interactions') + >('mobile/src/session/use-mobile-diff-review-interactions.ts').useMobileDiffReviewInteractions + const staleInput = modules.load< + typeof import('../../../session/mobile-native-chat-stale-input') + >('mobile/src/session/mobile-native-chat-stale-input.ts') + staleInput.resetMobileNativeChatStaleInputForTests() + const comment: DiffComment = { + side: 'modified', + id: 'note-1', + worktreeId: WORKSPACE, + filePath: FILE, + lineNumber: 4, + body: 'needs a test', + createdAt: 0 + } + const item: MobileDiffReviewQueueItem = { + key: `unstaged:${FILE}`, + scope: 'unstaged' as const, + area: 'unstaged' as const, + filePath: FILE, + status: 'modified' as const, + title: 'app.ts', + subtitle: 'src', + canStage: true, + canUnstage: false, + canDiscard: true, + isGeneratedOrLockFile: false, + diffIdentity: 'identity-1', + noteCount: 1, + unsentNoteCount: 1, + staleNoteCount: 0, + isReviewed: true, + changedSinceReview: false + } + let screenState: ReviewScreenState = { + kind: 'ready', + // These actions never read the status; the queue item above is what they branch on. + status: mountFixture['status']>({ + entries: [] + }), + branchCompare: null, + comments: [comment], + reviewState: { version: 1, files: {} } + } + let actionError: string | null = null + let busyAction: string | null = null + let sendSheet: SendSheetState | null = null + let interactions: ReturnType + const hook = hookMount(() => { + interactions = useInteractions( + mountFixture[0]>({ + client, + connState: 'connected', + hostId: HOST, + worktreeId: WORKSPACE, + screenState, + diffState: { kind: 'idle' }, + currentItem: item, + queue: [item], + filteredQueue: [item], + filter: 'all', + currentIndex: 0, + activeHunkIndex: null, + composer: null, + composerBody: '', + listRef: { current: null }, + setScreenState: (update) => { + screenState = typeof update === 'function' ? update(screenState) : update + }, + setFilter: () => {}, + setCurrentIndex: () => {}, + setActiveHunkIndex: () => {}, + setComposer: () => {}, + setComposerBody: () => {}, + setActionError: (update) => { + actionError = typeof update === 'function' ? update(actionError) : update + }, + setBusyAction: (update) => { + busyAction = typeof update === 'function' ? update(busyAction) : update + }, + setSendSheet: (update) => { + sendSheet = typeof update === 'function' ? update(sendSheet) : update + }, + setShowCompletion: () => {}, + loadReviewData: () => { + effect('load-review-data', {}) + return Promise.resolve() + }, + onOpenSession: () => effect('open-session', {}), + onReconnect: (hostId: string) => effect('reconnect', { hostId }) + }) + ) + }) + hook.mount() + return { + action(name, args) { + if (name === 'mark-stale') { + staleInput.markMobileNativeChatInputStale(TERMINAL) + return TERMINAL + } + return performHookAction(() => { + if (name === 'mark-reviewed') { + return interactions.markReviewed() + } + if (name === 'stage') { + return interactions.runGitMutation('git.stage', item) + } + if (name === 'discard') { + return interactions.runGitMutation('git.discard', item) + } + if (name === 'stage-reviewed') { + return interactions.stageReviewedFiles() + } + if (name === 'open-in-session') { + return interactions.openInSession() + } + if (name === 'send-notes') { + return interactions.sendPromptToTerminal(TERMINAL, [comment]) + } + if (name === 'create-and-send') { + return interactions.createTerminalAndSend([comment]) + } + if (name === 'copy-notes') { + return interactions.copyNotes() + } + if (name === 'clear-sent') { + return interactions.clearSentNotes() + } + throw new Error(`Unknown review action: ${name}${String(args.unused ?? '')}`) + }) + }, + state: () => ({ screenState, actionError, busyAction, sendSheet }), + dispose: () => { + staleInput.resetMobileNativeChatStaleInputForTests() + hook.unmount() + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/file-explorer-screen-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/file-explorer-screen-mount-adapters.ts new file mode 100644 index 00000000000..9021d1b0059 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/file-explorer-screen-mount-adapters.ts @@ -0,0 +1,82 @@ +import { createElement, type Context } from 'react' +import { projectMountedScreen, renderedElementProps, screenMount } from '../mounted-screen-tree' +import { mountFixture } from '../recorder-fixture-shape' +import type { OperationExposure, operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' +import type { RpcClientContextValue } from '../../../transport/rpc-client-context-contract' + +const HOST = 'host-1' +const WORKTREE = 'wt-files' + +/** + * The panel reads its client through the shared host-client context, whose handle is module-private + * in `client-context.tsx`. Exposing it mounts the real `useHostClient` — acquire, subscribe, + * release — over a scripted client, instead of reconstructing the hook against a prop. + */ +export const fileExplorerScreenMountExposures: readonly OperationExposure[] = [ + ['client-context.tsx', '\nexports.recorderHostClientContext = Ctx;'] +] + +/** The mobile files tab: the directory read, and the capped legacy list it falls back to. */ +export function fileExplorerScreenMountAdapters( + modules: ReturnType +): Record { + return { + 'files.explorer-screen': ({ client, effect }) => { + const Panel = modules.load( + 'mobile/src/files/MobileFileExplorerPanel.tsx' + ).MobileFileExplorerPanel + const { recorderHostClientContext } = modules.load<{ + recorderHostClientContext: Context + }>('mobile/src/transport/client-context.tsx') + const context = mountFixture({ + acquire: () => client, + release: () => {}, + getKnownState: () => 'connected', + getClientId: () => 'client-1', + getAllClients: () => [{ hostId: HOST, client }], + subscribeHostState: () => () => {}, + // A reconnect is the screen reaching past the socket the recording scripts, so it is + // recorded rather than performed. + forceReconnect: (hostId) => { + effect('host-client.force-reconnect', { hostId }) + return Promise.resolve() + } + }) + const screen = screenMount( + () => + createElement( + recorderHostClientContext.Provider, + { value: context }, + createElement(Panel, { hostId: HOST, worktreeId: WORKTREE, name: 'orca-files' }) + ), + effect + ) + return { + action(name) { + if (name === 'mount' || name === 'remount') { + return screen.mount() + } + if (name === 'unmount') { + return screen.unmount() + } + if (name === 'blur') { + return + } + throw new Error(`Unknown file explorer action: ${name}`) + }, + state: () => ({ + ...projectMountedScreen(screen), + // The inert list never calls `renderItem`, so the rows it was handed are the only + // record of what the screen would have drawn. + rows: renderedElementProps(screen.tree(), 'FlatList').flatMap((props) => + Array.isArray(props.data) + ? props.data.map((row: { id?: unknown }) => row?.id) + : [props.data] + ) + }), + dispose: screen.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/file-tap-open-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/file-tap-open-mount-adapters.ts new file mode 100644 index 00000000000..57779cb5eae --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/file-tap-open-mount-adapters.ts @@ -0,0 +1,92 @@ +import type { MountAdapter } from '../recording-scenario' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' + +const HOST = 'host-1' +const WORKSPACE = 'workspace-1' +const TERMINAL = 'terminal-1' + +/** + * Tapping a path a terminal printed: the host resolve, then the worktree open it may lead to. + * + * The entry point is fire-and-forget (`void ... .catch`), so the recording observes the two sends, + * the route it pushed and the miss callback rather than a returned value. Its three delayed + * activation attempts run on the scenario's own clock, which is what makes the tab-switch order + * observable at all. + */ +export function fileTapOpenMountAdapters( + modules: ReturnType +): Record { + return { + 'files.terminal-path-tap': ({ client, effect }) => { + const open = modules.load( + 'mobile/src/session/mobile-file-tap-open.ts' + ).openMobileFileTap + type Tab = { id: string; relativePath?: string } + const timers: ReturnType[] = [] + let sessionTabs: readonly Tab[] = [] + let activeSessionTabId: string | null = 'tab-source' + let switched: unknown = null + let failed = 0 + return { + action(name, args) { + if (name === 'list') { + sessionTabs = [{ id: 'tab-opened', relativePath: 'src/app.ts' }] + return sessionTabs + } + if (name !== 'tap') { + throw new Error(`Unknown file tap action: ${name}`) + } + return open( + mountFixture>[0]>({ + client, + hostId: HOST, + worktreeId: WORKSPACE, + worktreeName: 'workspace', + terminalHandle: TERMINAL, + pathText: String(args.pathText ?? 'src/app.ts'), + cwd: '/repo', + line: args.line === undefined ? null : Number(args.line), + column: null, + pushPreviewRoute: (href) => effect('push-preview-route', href), + openBrowser: (url: string) => effect('open-browser', { url }), + triggerOpenFeedback: () => effect('open-feedback', {}), + fetchSessionTabs: () => { + effect('fetch-session-tabs', {}) + return Promise.resolve() + }, + getSessionTabs: () => sessionTabs, + getActiveSessionTabId: () => activeSessionTabId, + getActivationState: (activated: boolean) => ({ + activated, + activationSeq: 1, + latestActivationSeq: 1, + sourceTerminalHandle: TERMINAL, + activeTerminalHandle: args.moved === true ? 'terminal-2' : TERMINAL, + activeTabType: 'terminal' + }), + switchSessionTab: (tab: Tab) => { + switched = tab + activeSessionTabId = tab.id + }, + scheduleDelayedAction: (callback: () => void, delayMs: number) => { + const timer = setTimeout(callback, delayMs) + timers.push(timer) + return timer + }, + onOpenFailed: () => { + failed += 1 + } + }) + ) + }, + state: () => ({ switched, failed, activeSessionTabId }), + dispose: () => { + for (const timer of timers) { + clearTimeout(timer) + } + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts index 74cf7c1f6ae..5fdcd0e197e 100644 --- a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts +++ b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts @@ -1,26 +1,43 @@ +import { aiVaultResumeMountAdapters } from './ai-vault-resume-mount-adapters' import { agentHistoryMountAdapters, agentHistoryMountExposures } from './agent-history-mount-adapters' import { browserMountAdapters } from './browser-mount-adapters' +import { clipboardImageMountAdapters } from './clipboard-image-mount-adapters' +import { codexResetCreditMountAdapters } from './codex-reset-credit-mount-adapters' import { dictationMountAdapters } from './dictation-mount-adapters' +import { diffReviewActionMountAdapters } from './diff-review-action-mount-adapters' import { diffReviewMountAdapters } from './diff-review-mount-adapters' +import { + fileExplorerScreenMountAdapters, + fileExplorerScreenMountExposures +} from './file-explorer-screen-mount-adapters' import { fileInventoryMountAdapters } from './file-inventory-mount-adapters' +import { fileTapOpenMountAdapters } from './file-tap-open-mount-adapters' import { fileRequestMountAdapters } from './file-request-mount-adapters' import { githubPrMountAdapters } from './github-pr-mount-adapters' import { hostScreenMountAdapters } from './host-screen-mount-adapters' import { hostWorktreeActionMountAdapters } from './host-worktree-action-mount-adapters' import { hostedReviewMountAdapters } from './hosted-review-mount-adapters' +import { nativeChatWriteMountAdapters } from './native-chat-write-mount-adapters' import { newTabAgentMountAdapters } from './new-tab-agent-mount-adapters' import { newWorkspaceMountAdapters } from './new-workspace-mount-adapters' +import { newWorkspaceRepositoryMountAdapters } from './new-workspace-repository-mount-adapters' import { pairingJournalMountAdapters } from './pairing-journal-mount-adapters' +import { pushDismissalMountAdapters } from './push-dismissal-mount-adapters' import { pushRegistrationMountAdapters, pushRegistrationMountExposures } from './push-registration-mount-adapters' import { relayCredentialMountAdapters } from './relay-credential-mount-adapters' +import { sessionNotesMountAdapters } from './session-notes-mount-adapters' +import { sessionScreenReadMountAdapters } from './session-screen-read-mount-adapters' +import { sessionScreenTabMountAdapters } from './session-screen-tab-mount-adapters' +import { sessionTabMountAdapters } from './session-tab-mount-adapters' import { settingsMountAdapters, settingsMountExposures } from './settings-mount-adapters' import { sourceControlMountAdapters } from './source-control-mount-adapters' +import { structuredAgentLaunchMountAdapters } from './structured-agent-launch-mount-adapters' import { taskItemChecksStatusMountAdapters } from './task-item-checks-status-mount-adapters' import { taskItemConversationMountAdapters } from './task-item-conversation-mount-adapters' import { taskItemDetailMountAdapters } from './task-item-detail-mount-adapters' @@ -52,10 +69,20 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ mounts: agentHistoryMountAdapters, exposes: agentHistoryMountExposures }, + { source: 'ai-vault-resume-mount-adapters.ts', mounts: aiVaultResumeMountAdapters }, { source: 'browser-mount-adapters.ts', mounts: browserMountAdapters }, + { source: 'clipboard-image-mount-adapters.ts', mounts: clipboardImageMountAdapters }, + { source: 'codex-reset-credit-mount-adapters.ts', mounts: codexResetCreditMountAdapters }, { source: 'dictation-mount-adapters.ts', mounts: dictationMountAdapters }, + { source: 'diff-review-action-mount-adapters.ts', mounts: diffReviewActionMountAdapters }, { source: 'diff-review-mount-adapters.ts', mounts: diffReviewMountAdapters }, + { + source: 'file-explorer-screen-mount-adapters.ts', + mounts: fileExplorerScreenMountAdapters, + exposes: fileExplorerScreenMountExposures + }, { source: 'file-inventory-mount-adapters.ts', mounts: fileInventoryMountAdapters }, + { source: 'file-tap-open-mount-adapters.ts', mounts: fileTapOpenMountAdapters }, { source: 'file-request-mount-adapters.ts', mounts: fileRequestMountAdapters }, { source: 'github-pr-mount-adapters.ts', mounts: githubPrMountAdapters }, { source: 'host-screen-mount-adapters.ts', mounts: hostScreenMountAdapters }, @@ -64,21 +91,38 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ mounts: hostWorktreeActionMountAdapters }, { source: 'hosted-review-mount-adapters.ts', mounts: hostedReviewMountAdapters }, + { source: 'native-chat-write-mount-adapters.ts', mounts: nativeChatWriteMountAdapters }, { source: 'new-tab-agent-mount-adapters.ts', mounts: newTabAgentMountAdapters }, { source: 'new-workspace-mount-adapters.ts', mounts: newWorkspaceMountAdapters }, + { + source: 'new-workspace-repository-mount-adapters.ts', + mounts: newWorkspaceRepositoryMountAdapters + }, { source: 'pairing-journal-mount-adapters.ts', mounts: pairingJournalMountAdapters }, + { source: 'push-dismissal-mount-adapters.ts', mounts: pushDismissalMountAdapters }, { source: 'push-registration-mount-adapters.ts', mounts: pushRegistrationMountAdapters, exposes: pushRegistrationMountExposures }, { source: 'relay-credential-mount-adapters.ts', mounts: relayCredentialMountAdapters }, + { source: 'session-notes-mount-adapters.ts', mounts: sessionNotesMountAdapters }, + { + source: 'session-screen-read-mount-adapters.ts', + mounts: sessionScreenReadMountAdapters + }, + { source: 'session-screen-tab-mount-adapters.ts', mounts: sessionScreenTabMountAdapters }, + { source: 'session-tab-mount-adapters.ts', mounts: sessionTabMountAdapters }, { source: 'settings-mount-adapters.ts', mounts: settingsMountAdapters, exposes: settingsMountExposures }, { source: 'source-control-mount-adapters.ts', mounts: sourceControlMountAdapters }, + { + source: 'structured-agent-launch-mount-adapters.ts', + mounts: structuredAgentLaunchMountAdapters + }, { source: 'task-item-checks-status-mount-adapters.ts', mounts: taskItemChecksStatusMountAdapters diff --git a/mobile/src/test-support/rpc-recording/adapters/native-chat-write-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/native-chat-write-mount-adapters.ts new file mode 100644 index 00000000000..02ab14da790 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/native-chat-write-mount-adapters.ts @@ -0,0 +1,94 @@ +import type { MountAdapter } from '../recording-scenario' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' + +const TERMINAL = 'terminal-1' +const DEVICE_TOKEN = 'device-token-1' + +/** + * The three writes native chat makes to a terminal — the message body, the standalone input clear + * and the paced command typing — plus the host-side record of a session-option pick. + * + * Each is an exported async function taking a client. The send's delivery-unknown arm is the reason + * these are recorded rather than reasoned about: a cutover and an ack loss must both answer + * `unknown`, and only a recording shows which of the three outcomes a given failure produced. + */ +export function nativeChatWriteMountAdapters( + modules: ReturnType +): Record { + return { + 'nativeChat.terminal-write': ({ client }) => { + const send = modules.load( + 'mobile/src/session/mobile-native-chat-send.ts' + ) + const outcomes: Record = {} + return { + action(name, args) { + const mobileClient = { id: DEVICE_TOKEN, type: 'mobile' as const } + const shared = { + client, + terminal: TERMINAL, + ...(args.anonymous === true ? {} : { mobileClient }), + ...(args.deadline === undefined ? {} : { deadline: Number(args.deadline) }) + } + const request = + name === 'clear' + ? send.clearMobileNativeChatInput( + mountFixture[0]>({ + ...shared, + clearInput: '\x15' + }) + ) + : name === 'command' + ? send.typeMobileNativeChatCommandWithOutcome( + mountFixture[0]>( + { ...shared, command: 'ok' } + ) + ) + : send.sendMobileNativeChatMessageWithOutcome( + mountFixture[0]>( + { + ...shared, + text: 'hello', + ...(args.enter === false ? { enter: false } : {}), + ...(args.draft === true + ? { resolvedLaunchDraft: { text: 'hello', createdAt: 0 } } + : {}) + } + ) + ) + return request.then((value: unknown) => { + outcomes[name] = value + return value + }) + }, + state: () => ({ ...outcomes }), + dispose: () => {} + } + }, + 'nativeChat.session-option-pick': ({ client }) => { + const persist = modules.load< + typeof import('../../../session/mobile-native-chat-session-option-persistence') + >( + 'mobile/src/session/mobile-native-chat-session-option-persistence.ts' + ).persistMobileStructuredOptionPicks + let settled: unknown = 'unsent' + return { + action: (name) => + persist( + mountFixture[0]>({ + client, + agent: 'claude', + // An empty pick list returns before the wire; the write is best-effort either way. + picks: name === 'empty' ? [] : [{ modelId: 'opus', optionId: 'model', value: 'opus' }] + }) + ).then((value: unknown) => { + settled = value === undefined ? 'settled' : value + return value + }), + state: () => ({ settled }), + dispose: () => {} + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/new-workspace-repository-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/new-workspace-repository-mount-adapters.ts new file mode 100644 index 00000000000..f0e302bf3af --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/new-workspace-repository-mount-adapters.ts @@ -0,0 +1,61 @@ +import { hookScreenMount } from '../mounted-screen-tree' +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' + +const HOST = 'host-1' + +/** + * The repository list the new-workspace dialog opens on: a `repo.list` refresh, and the last + * visited worktree the scenario declares in its device store, which is what picks the initial + * selection out of the refreshed list. + * + * Mounted through `hookScreenMount` rather than `hookMount` for its crash boundary — several reply + * partitions take this hook's effect down, and the message is the recording. + */ +export function newWorkspaceRepositoryMountAdapters( + modules: ReturnType +): Record { + return { + 'workspace.repositories': ({ client, effect }) => { + const useRepositories = modules.load< + typeof import('../../../components/use-new-workspace-repositories') + >('mobile/src/components/use-new-workspace-repositories.ts').useNewWorkspaceRepositories + let state: ReturnType | undefined + let visible = true + const screen = hookScreenMount(() => { + state = useRepositories({ client, hostId: HOST, visible }) + }, effect) + return { + action(name) { + if (name === 'mount' || name === 'remount') { + return screen.mount() + } + if (name === 'unmount') { + return screen.unmount() + } + if (name === 'blur') { + visible = false + return screen.update() + } + if (name === 'reset') { + visible = true + return screen.update() + } + throw new Error(`Unknown repositories action: ${name}`) + }, + state: () => { + const repos = state?.repos + return { + // Not only the ids: a reply partition can leave a non-array here, and that is the + // observation rather than something to normalise away. + repos: Array.isArray(repos) ? repos.map((repo) => repo?.id) : repos, + selected: state?.selectedRepo?.id ?? null, + loading: state?.loading ?? null, + crash: screen.crash() + } + }, + dispose: screen.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/push-dismissal-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/push-dismissal-mount-adapters.ts new file mode 100644 index 00000000000..a98445aedff --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/push-dismissal-mount-adapters.ts @@ -0,0 +1,38 @@ +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' + +const HOST = 'host-1' + +/** + * Reconciling the OS notification tray with the host. Everything this reads off the device is + * declared by the scenario — the presented notifications, and the stored host list the push + * fingerprint is resolved against — so the identities it puts on the wire are scenario bytes. + */ +export function pushDismissalMountAdapters( + modules: ReturnType +): Record { + return { + 'notifications.push-dismissal': ({ client }) => { + const requestNotificationCatchup = modules.load< + typeof import('../../../notifications/push-dismissal-reconciliation') + >('mobile/src/notifications/push-dismissal-reconciliation.ts').requestNotificationCatchup + let disposed = false + return { + action(name) { + if (name === 'catchup') { + return requestNotificationCatchup(client, HOST, () => disposed) + } + if (name === 'unmount') { + disposed = true + return + } + throw new Error(`Unknown push dismissal action: ${name}`) + }, + state: () => ({ disposed }), + dispose: () => { + disposed = true + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/push-registration-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/push-registration-mount-adapters.ts index daae1a4dd9e..56e5253fb74 100644 --- a/mobile/src/test-support/rpc-recording/adapters/push-registration-mount-adapters.ts +++ b/mobile/src/test-support/rpc-recording/adapters/push-registration-mount-adapters.ts @@ -1,6 +1,5 @@ -import type { OperationExposure } from '../operation-module-loader' +import type { OperationExposure, operationModuleLoader } from '../operation-module-loader' import type { MountAdapter } from '../recording-scenario' -import type { operationModuleLoader } from '../operation-module-loader' /** * The two push senders are module-private, and the exported entry points that reach them read the diff --git a/mobile/src/test-support/rpc-recording/adapters/session-notes-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/session-notes-mount-adapters.ts new file mode 100644 index 00000000000..682be1134f6 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/session-notes-mount-adapters.ts @@ -0,0 +1,199 @@ +import { hookMount, performHookAction } from '../hook-mount' +import { mountFixture } from '../recorder-fixture-shape' +import type { DiffComment } from '../../../../../src/shared/diff-comment-types' +import type { + DiffNotesDelivery, + MarkdownDocState +} from '../../../session/mobile-session-route-types' +import type { MountAdapter } from '../recording-scenario' +import type { operationModuleLoader } from '../operation-module-loader' + +const WORKSPACE = 'workspace-1' +const TAB = 'tab-md' + +/** + * The session screen's own persisted text: the worktree-stored review notes, the markdown tab save, + * and the quick-command list the terminal sheet edits. + * + * All three are optimistic writes with a rollback, so the projection is the local list rather than + * the reply: what a golden has to show is which value survives a refusal. Quick commands adds a + * serialized queue, so its recording is also the order two overlapping saves settle in. + */ +export function sessionNotesMountAdapters( + modules: ReturnType +): Record { + return { + 'session.diff-notes': ({ client, effect }) => { + const useComments = modules.load< + typeof import('../../../session/use-mobile-session-diff-comments') + >('mobile/src/session/use-mobile-session-diff-comments.ts').useMobileSessionDiffComments + let diffComments: DiffComment[] = [] + const diffCommentsRef = { current: diffComments } + let busy = false + let pendingDelivery: DiffNotesDelivery | null = null + let comments: ReturnType + const hook = hookMount(() => { + comments = useComments( + mountFixture[0]>({ + worktreeId: WORKSPACE, + isFloatingWorkspaceRoute: false, + client, + connState: 'connected', + setDiffComments: (update) => { + diffComments = typeof update === 'function' ? update(diffComments) : update + diffCommentsRef.current = diffComments + }, + diffCommentsRef, + diffCommentBusy: busy, + setDiffCommentBusy: (update) => { + busy = typeof update === 'function' ? update(busy) : update + }, + setPendingDiffNotesDelivery: (update) => { + pendingDelivery = typeof update === 'function' ? update(pendingDelivery) : update + }, + showToast: (message: string) => effect('toast', { message }) + }) + ) + }) + return { + action(name, args) { + if (name === 'mount') { + return hook.mount() + } + return performHookAction(() => { + if (name === 'add') { + return comments.addDiffCommentForFile( + 'src/app.ts', + Number(args.line ?? 4), + String(args.body ?? 'needs a test') + ) + } + if (name === 'delete') { + return comments.deleteDiffCommentForFile(String(args.id ?? 'note-1')) + } + if (name === 'copy') { + return comments.copyDiffCommentsToClipboard() + } + if (name === 'reload') { + return comments.loadDiffComments() + } + throw new Error(`Unknown diff notes action: ${name}`) + }) + }, + state: () => ({ diffComments, busy, pendingDelivery }), + dispose: hook.unmount + } + }, + 'session.markdown-save': ({ client, effect }) => { + const useMarkdown = modules.load< + typeof import('../../../session/use-mobile-session-markdown-actions') + >('mobile/src/session/use-mobile-session-markdown-actions.ts').useMobileSessionMarkdownActions + let markdownDocs = new Map([ + [ + TAB, + { + status: 'ready', + content: '# a', + localContent: '# b', + baseVersion: 'v1', + isDirty: true, + editable: true + } + ] + ]) + let actions: ReturnType + const hook = hookMount(() => { + actions = useMarkdown( + mountFixture[0]>({ + hostId: 'host-1', + worktreeId: WORKSPACE, + router: { push: (href: unknown) => effect('router-push', href), back: () => {} }, + client, + sessionTabs: [{ id: TAB, type: 'markdown', relativePath: 'docs/readme.md' }], + markdownDocs, + setMarkdownDocs: (update) => { + markdownDocs = typeof update === 'function' ? update(markdownDocs) : update + }, + setDiscardMarkdownTarget: () => {}, + discardMarkdownTarget: null, + setLeaveDrafts: () => {}, + markdownSaveSeqRef: { current: new Map() }, + markdownSaveInFlightRef: { current: new Set() }, + showToast: (message: string) => effect('toast', { message }), + readMarkdownTab: () => { + effect('read-markdown-tab', {}) + return Promise.resolve() + } + }) + ) + }) + hook.mount() + return { + action: (name) => + performHookAction(() => { + if (name === 'save') { + return actions.saveMarkdownTab( + mountFixture[0]>({ + type: 'markdown', + id: TAB, + relativePath: 'docs/readme.md' + }) + ) + } + throw new Error(`Unknown markdown action: ${name}`) + }), + state: () => ({ markdown: Object.fromEntries(markdownDocs) }), + dispose: hook.unmount + } + }, + 'settings.quick-commands': ({ client }) => { + const useQuickCommands = modules.load( + 'mobile/src/session/use-quick-commands.ts' + ).useQuickCommands + let enabled = true + let model: ReturnType + const persisted: unknown[] = [] + const hook = hookMount(() => { + model = useQuickCommands({ client, enabled }) + }) + return { + action(name, args) { + if (name === 'mount') { + return hook.mount() + } + if (name === 'close') { + enabled = false + return hook.update() + } + if (name === 'persist') { + return performHookAction(() => + model + .persist({ + type: 'upsert', + command: { + id: String(args.id ?? 'qc-1'), + label: String(args.label ?? 'build'), + command: 'pnpm build', + appendEnter: true + } + }) + .then((value: unknown) => { + persisted.push(value) + return value + }) + ) + } + throw new Error(`Unknown quick command action: ${name}`) + }, + state: () => ({ + commands: model.commands, + loading: model.loading, + ready: model.ready, + error: model.error, + persisted: [...persisted] + }), + dispose: hook.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/session-screen-read-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/session-screen-read-mount-adapters.ts new file mode 100644 index 00000000000..5afe5253e73 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/session-screen-read-mount-adapters.ts @@ -0,0 +1,199 @@ +import { hookMount, performHookAction } from '../hook-mount' +import type { + FileDocState, + MarkdownDocState, + MobileSessionTab +} from '../../../session/mobile-session-route-types' +import type { TerminalRecord } from '../../../session/mobile-terminal-records' +import { mountFixture } from '../recorder-fixture-shape' +import type { MountAdapter } from '../recording-scenario' +import type { operationModuleLoader } from '../operation-module-loader' + +const WORKSPACE = 'workspace-1' +const HANDLE = 'terminal-1' +const DEVICE_TOKEN = 'device-token-1' + +/** + * What the session screen reads while it is open: a markdown or file tab's document, the terminal + * inventory, the repo probe native chat gates readability on, and the paced double-Escape stop. + * + * These hooks take the screen's accumulated model, so each mount supplies only the members the hook + * destructures — a fixture completed into a whole session model would invent state no scenario + * observes. The setters are recorded as model values rather than as native UI. + */ +export function sessionScreenReadMountAdapters( + modules: ReturnType +): Record { + return { + 'session.tab-documents': ({ client }) => { + const useReaders = modules.load< + typeof import('../../../session/use-mobile-session-document-readers') + >('mobile/src/session/use-mobile-session-document-readers.ts').useMobileSessionDocumentReaders + let markdownDocs = new Map() + let fileDocs = new Map() + let readers: ReturnType + const hook = hookMount(() => { + readers = useReaders( + mountFixture[0]>({ + worktreeId: WORKSPACE, + client, + setMarkdownDocs: (update) => { + markdownDocs = typeof update === 'function' ? update(markdownDocs) : update + }, + setFileDocs: (update) => { + fileDocs = typeof update === 'function' ? update(fileDocs) : update + } + }) + ) + }) + hook.mount() + return { + action(name, args) { + if (name === 'markdown') { + return performHookAction(() => + readers.readMarkdownTab( + mountFixture[0]>({ + type: 'markdown', + id: 'tab-md', + relativePath: 'docs/readme.md', + isDirty: args.dirty === true + }) + ) + ) + } + if (name === 'file') { + return performHookAction(() => + readers.readFileTab( + mountFixture[0]>({ + type: 'file', + id: 'tab-file', + relativePath: 'src/app.ts', + ...(args.diff === true ? { diffSource: 'staged' as const } : {}) + }) + ) + ) + } + throw new Error(`Unknown document action: ${name}`) + }, + state: () => ({ + markdown: Object.fromEntries(markdownDocs), + file: Object.fromEntries(fileDocs) + }), + dispose: hook.unmount + } + }, + 'session.terminal-inventory': ({ client, effect }) => { + const useList = modules.load< + typeof import('../../../session/use-mobile-session-terminal-list') + >('mobile/src/session/use-mobile-session-terminal-list.ts').useMobileSessionTerminalList + let terminals: TerminalRecord[] = [] + const terminalsRef: { current: TerminalRecord[] } = { current: [] } + const sessionTabsRef: { current: MobileSessionTab[] } = { current: [] } + const unsubs = new Map void>([[HANDLE, () => {}]]) + let listModel: ReturnType + const hook = hookMount(() => { + listModel = useList( + mountFixture[0]>({ + hostId: 'host-1', + worktreeId: WORKSPACE, + client, + setTerminals: (update) => { + terminals = typeof update === 'function' ? update(terminals) : update + }, + terminalsRef, + sessionTabsRef, + pruneTerminalHandlesFromLiveInput: (handles) => + effect('prune-live-input', [...handles]), + defaultTerminalHandlesToLiveInput: (handles) => + effect('default-live-input', [...handles]), + clearTerminalLiveInputDefault: (handle) => effect('clear-live-input', { handle }), + setTerminalKeyboardMetrics: () => {}, + terminalRefs: { current: new Map() }, + terminalUnsubsRef: { current: unsubs }, + initializedHandlesRef: { current: new Set([HANDLE]) }, + viewportResubscribeBudgetRef: { + current: { + forget: (handle: string) => effect('forget-viewport-budget', { handle }), + notifyListedHandles: () => {} + } + }, + activeHandleRef: { current: HANDLE }, + showNativeChatRef: { current: false }, + unsubscribeTerminal: (handle: string) => effect('unsubscribe-terminal', { handle }), + nativeChatStream: { notifyListedHandles: () => {} }, + bufferedTerminalDraftState: { pruneDrafts: () => {} } + }) + ) + }) + hook.mount() + return { + action: (name) => + performHookAction(() => + listModel.fetchTerminals(name === 'no-empty' ? { allowEmptyLoaded: false } : {}) + ), + state: () => ({ terminals, known: terminalsRef.current }), + dispose: hook.unmount + } + }, + 'session.native-chat-readability': ({ client }) => { + const useReadability = modules.load< + typeof import('../../../session/use-mobile-native-chat-readability') + >('mobile/src/session/use-mobile-native-chat-readability.ts').useMobileNativeChatReadability + let readable = false + let worktreeId = `repo-1::/w` + const hook = hookMount(() => { + readable = useReadability(client, worktreeId) + }) + return { + action(name) { + if (name === 'mount') { + return hook.mount() + } + if (name === 'reroute') { + worktreeId = 'repo-2::/w' + return hook.update() + } + throw new Error(`Unknown readability action: ${name}`) + }, + state: () => ({ readable, worktreeId }), + dispose: hook.unmount + } + }, + 'session.native-chat-stop': ({ client, effect }) => { + const useStop = modules.load( + 'mobile/src/session/use-mobile-native-chat-stop.ts' + ).useMobileNativeChatStop + const errors: string[] = [] + let stop: () => void + let enabled = true + const hook = hookMount(() => { + stop = useStop( + mountFixture[0]>({ + client, + enabled, + handleRef: { current: HANDLE }, + deviceTokenRef: { current: DEVICE_TOKEN }, + streamIdentity: 'stream-1', + cancelPending: () => effect('cancel-pending', {}), + onSendError: (message: string) => errors.push(message) + }) + ) + }) + hook.mount() + return { + action(name) { + if (name === 'stop') { + return performHookAction(() => stop()) + } + if (name === 'leave') { + enabled = false + return hook.update() + } + throw new Error(`Unknown stop action: ${name}`) + }, + state: () => ({ errors: [...errors] }), + dispose: hook.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/session-screen-tab-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/session-screen-tab-mount-adapters.ts new file mode 100644 index 00000000000..f593ebc2a0d --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/session-screen-tab-mount-adapters.ts @@ -0,0 +1,189 @@ +import { hookMount, performHookAction } from '../hook-mount' +import type { MobileSessionTab } from '../../../session/mobile-session-route-types' +import type { TerminalRecord } from '../../../session/mobile-terminal-records' +import { mountFixture } from '../recorder-fixture-shape' +import type { MountAdapter } from '../recording-scenario' +import type { operationModuleLoader } from '../operation-module-loader' + +const WORKSPACE = 'workspace-1' +const HANDLE = 'terminal-1' + +/** + * Adding and removing session tabs: the markdown note and browser tab a user creates, and the + * rename/close writes the tab strip makes. + * + * Each of these keeps local tab state only on an accepted reply, so the state projection is the tab + * list itself — a golden that showed the same list after a refusal would be recording the erasure + * these call sites exist to avoid. + */ +export function sessionScreenTabMountAdapters( + modules: ReturnType +): Record { + return { + 'session.content-create': ({ client, effect }) => { + const useCreate = modules.load< + typeof import('../../../session/use-mobile-session-content-create-actions') + >( + 'mobile/src/session/use-mobile-session-content-create-actions.ts' + ).useMobileSessionContentCreateActions + let creatingBrowser = false + let creatingMarkdown = false + let createError = '' + let screencastSupported = true + const pendingBrowserFocusPageIdRef: { current: string | null } = { current: null } + let actions: ReturnType + const timers: ReturnType[] = [] + const hook = hookMount(() => { + actions = useCreate( + mountFixture[0]>({ + worktreeId: WORKSPACE, + client, + creatingBrowser, + setCreatingBrowser: (value) => { + creatingBrowser = typeof value === 'function' ? value(creatingBrowser) : value + }, + creatingMarkdown, + setCreatingMarkdown: (value) => { + creatingMarkdown = typeof value === 'function' ? value(creatingMarkdown) : value + }, + setCreateError: (value) => { + createError = typeof value === 'function' ? value(createError) : value + }, + pendingBrowserFocusPageIdRef, + handleCreateBrowserRef: { current: () => Promise.resolve(false) }, + browserScreencastSupportedRef: { current: screencastSupported }, + scheduleDelayedAction: (callback: () => void, delayMs: number) => { + timers.push(setTimeout(callback, delayMs)) + }, + showToast: (message: string) => effect('toast', { message }), + fetchSessionTabs: () => { + effect('fetch-session-tabs', {}) + return Promise.resolve() + }, + fetchPendingBrowserSessionTabs: () => { + effect('fetch-pending-browser-tabs', {}) + return Promise.resolve() + } + }) + ) + }) + hook.mount() + return { + action(name, args) { + if (name === 'unsupported') { + screencastSupported = false + return hook.update() + } + return performHookAction(() => + name === 'markdown' + ? actions.handleCreateMarkdownNote() + : actions.handleCreateBrowser(String(args.url ?? 'https://example.com')) + ) + }, + state: () => ({ + creatingBrowser, + creatingMarkdown, + createError, + pendingBrowserFocusPageId: pendingBrowserFocusPageIdRef.current + }), + dispose: () => { + for (const timer of timers) { + clearTimeout(timer) + } + hook.unmount() + } + } + }, + 'session.tab-close': ({ client, effect }) => { + const useClose = modules.load< + typeof import('../../../session/use-mobile-session-close-actions') + >('mobile/src/session/use-mobile-session-close-actions.ts').useMobileSessionCloseActions + const terminalTab = mountFixture>({ + id: 'tab-1', + type: 'terminal', + title: 'Terminal', + terminal: HANDLE, + isActive: true + }) + let terminals: TerminalRecord[] = [{ handle: HANDLE, title: 'Terminal', isActive: true }] + const terminalsRef = { current: terminals } + const sessionTabsRef = { current: [terminalTab] } + let sessionTabs: MobileSessionTab[] = sessionTabsRef.current + let activeHandle: string | null = HANDLE + const activeHandleRef: { current: string | null } = { current: HANDLE } + const renameTarget: { handle: string } | null = { handle: HANDLE } + const timers: ReturnType[] = [] + let actions: ReturnType + const hook = hookMount(() => { + actions = useClose( + mountFixture[0]>({ + worktreeId: WORKSPACE, + client, + terminals, + terminalsRef, + setTerminals: (update) => { + terminals = typeof update === 'function' ? update(terminals) : update + }, + sessionTabsRef, + setSessionTabs: (update) => { + sessionTabs = typeof update === 'function' ? update(sessionTabs) : update + }, + reconcileBufferedDraftsRef: { current: () => {} }, + closedTabTombstonesRef: { current: new Map() }, + clearTerminalLiveInputDefault: (handle: string) => + effect('clear-live-input', { handle }), + setActiveHandle: (value) => { + activeHandle = typeof value === 'function' ? value(activeHandle) : value + }, + setActiveSessionTabId: () => {}, + activeSessionTabIdRef: { current: 'tab-1' }, + selectedSessionTabIdRef: { current: 'tab-1' }, + renameTarget, + setRenameTarget: () => {}, + terminalRefs: { current: new Map() }, + initializedHandlesRef: { current: new Set([HANDLE]) }, + activeHandleRef, + activeSessionTabTypeRef: { current: 'terminal' }, + pendingActiveTerminalHandleRef: { current: null }, + pendingBrowserFocusPageIdRef: { current: null }, + scheduleDelayedAction: (callback: () => void, delayMs: number) => { + timers.push(setTimeout(callback, delayMs)) + }, + unsubscribeTerminal: (handle: string) => effect('unsubscribe-terminal', { handle }), + subscribeToTerminal: (handle: string) => effect('subscribe-terminal', { handle }), + fetchTerminals: () => { + effect('fetch-terminals', {}) + return Promise.resolve(true) + } + }) + ) + }) + hook.mount() + return { + action(name, args) { + if (name === 'rename') { + return performHookAction(() => + actions.handleRenameTerminal(String(args.title ?? 'renamed')) + ) + } + if (name === 'close-terminal') { + return performHookAction(() => + actions.handleCloseTerminal({ handle: HANDLE, title: 'Terminal', isActive: true }) + ) + } + if (name === 'close-tab') { + return performHookAction(() => actions.handleCloseSessionTab(terminalTab)) + } + throw new Error(`Unknown tab close action: ${name}`) + }, + state: () => ({ terminals, sessionTabs, activeHandle }), + dispose: () => { + for (const timer of timers) { + clearTimeout(timer) + } + hook.unmount() + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/session-tab-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/session-tab-mount-adapters.ts new file mode 100644 index 00000000000..c93d4ae0860 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/session-tab-mount-adapters.ts @@ -0,0 +1,111 @@ +import type { MountAdapter } from '../recording-scenario' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' + +const WORKTREE = 'id:workspace-1' +const TERMINAL = 'terminal-1' +const TAB = 'tab-1' + +/** + * Making a session tab the active one, and the reconciliation loop that keeps the tab list honest. + * + * The activation pair is recorded because of its one retry: a logical cutover is replayed once, so + * a golden has to show two sender calls for one action and a non-cutover error showing one. The + * stream-health controller is recorded for the opposite reason — its generation, barrier and + * application-revision guards each drop a reply, and only a recording says which drop happened. + */ +export function sessionTabMountAdapters( + modules: ReturnType +): Record { + return { + 'session.tab-activation': ({ client }) => { + const activation = modules.load< + typeof import('../../../session/mobile-session-tab-activation') + >('mobile/src/session/mobile-session-tab-activation.ts') + const replies: Record = {} + let failure: unknown = null + return { + action: (name) => + (name === 'focus' + ? activation.focusMobileTerminal(client, TERMINAL) + : activation.activateMobileSessionTab(client, { + worktree: WORKTREE, + tabId: TAB, + notifyClients: false, + navigation: 'caller', + intent: 'user' + }) + ).then( + (value: unknown) => { + replies[name] = value + return value + }, + (error: unknown) => { + failure = error instanceof Error ? error.message : String(error) + throw error + } + ), + state: () => ({ ...replies, failure }), + dispose: () => {} + } + }, + 'session.tabs-stream-health': ({ client, effect }) => { + const Controller = modules.load< + typeof import('../../../session/mobile-session-tabs-stream-health') + >('mobile/src/session/mobile-session-tabs-stream-health.ts').MobileSessionTabsStreamHealth + let applicationRevision = 0 + let accepted: unknown = 'unapplied' + let rejectApply = false + const controller = new Controller<{ tabs?: readonly { id: string }[] }, { id: string }>( + mountFixture< + ConstructorParameters< + typeof Controller<{ tabs?: readonly { id: string }[] }, { id: string }> + >[0] + >({ + client, + scope: WORKTREE, + apply: (result) => + rejectApply + ? { accepted: false } + : { accepted: true, effectiveTabs: result.tabs ?? [], applicationRevision }, + consumeAccepted: (_result, effectiveTabs, source) => { + accepted = { tabs: effectiveTabs, source } + }, + hasRecoveryNeed: () => false, + getApplicationRevision: () => applicationRevision, + onFetchStarted: () => effect('fetch-started', {}), + onFetchSucceeded: (result) => effect('fetch-succeeded', result), + onFetchFailed: (failure) => effect('fetch-failed', failure.error), + onFetchErrored: (error) => + effect('fetch-errored', error instanceof Error ? error.message : String(error)) + }) + ) + return { + action(name) { + if (name === 'activate') { + // Nothing is fetched until the screen turns reconciliation on; the class starts off. + controller.setReconciliationActive(true) + return true + } + if (name === 'reconcile') { + return controller.requestReconciliation() + } + if (name === 'retry') { + return controller.retryReconciliation() + } + if (name === 'revise') { + applicationRevision += 1 + return applicationRevision + } + if (name === 'reject-apply') { + rejectApply = true + return rejectApply + } + throw new Error(`Unknown session tabs health action: ${name}`) + }, + state: () => ({ accepted, applicationRevision }), + dispose: () => controller.dispose() + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/structured-agent-launch-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/structured-agent-launch-mount-adapters.ts new file mode 100644 index 00000000000..9091b7cb437 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/structured-agent-launch-mount-adapters.ts @@ -0,0 +1,38 @@ +import type { MountAdapter } from '../recording-scenario' +import type { operationModuleLoader } from '../operation-module-loader' + +const WORKSPACE = 'workspace-1' + +/** + * Opening a structured agent chat: the support probe, its bounded selector retry, and the durable + * create the phone replays exactly once when the transport drops. + * + * Recorded rather than reasoned about because every failure here has to stay `unknown` rather than + * `failed` unless the host names the refusal definitive — a create that may have committed must not + * grow a sibling terminal. The replay makes that visible as two sends for one action. + */ +export function structuredAgentLaunchMountAdapters( + modules: ReturnType +): Record { + return { + 'agentSession.structured-launch': ({ client }) => { + const create = modules.load< + typeof import('../../../session/mobile-structured-agent-session-launch') + >( + 'mobile/src/session/mobile-structured-agent-session-launch.ts' + ).createMobileStructuredAgentSession + let launched: unknown = 'unlaunched' + return { + action: (name) => + create(client, WORKSPACE, name === 'codex' ? 'codex' : 'claude').then( + (value: unknown) => { + launched = value + return value + } + ), + state: () => ({ launched }), + dispose: () => {} + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/worktree-catalog-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/worktree-catalog-mount-adapters.ts index 41283b2a41d..82bb78851a3 100644 --- a/mobile/src/test-support/rpc-recording/adapters/worktree-catalog-mount-adapters.ts +++ b/mobile/src/test-support/rpc-recording/adapters/worktree-catalog-mount-adapters.ts @@ -55,7 +55,8 @@ export function worktreeCatalogMountAdapters( fetched = result // Admitting is what advances the snapshot token a later poll sends back. admitted = snapshots.admit(result.kind === 'response' ? result.pending : null) - return result + // The pending catalog carries the live client, which the recorder cannot observe. + return projectObservable(result) }), state: () => projectObservable({ fetched, admitted }), dispose: () => {} diff --git a/mobile/src/test-support/rpc-recording/declared-device-state.test.ts b/mobile/src/test-support/rpc-recording/declared-device-state.test.ts new file mode 100644 index 00000000000..78b4629f40e --- /dev/null +++ b/mobile/src/test-support/rpc-recording/declared-device-state.test.ts @@ -0,0 +1,162 @@ +import { resolve } from 'node:path' +import { describe, expect, it } from 'vitest' +import { declaredDeviceSubstitutes } from './declared-device-state' +import { nativeMountingSubstitutes } from './native-mounting-substitutes' +import { pilotMountAdapters } from './pilot-mount-adapters' +import { runRecording } from './run-recording' +import { readScenarios } from './scenario-input' +import { vitestRecordingScheduler } from './vitest-recording-scheduler' +import type { Recording, RecordingScenario } from './recording-scenario' +import type { RecordedValue } from './recording-values' + +const root = resolve(import.meta.dirname, '../../../..') +const manifest = readScenarios( + process.env.RPC_FOUNDATION_SCENARIOS ?? + resolve(root, 'mobile/rpc-foundation/pilot-scenarios.json') +).scenarios + +const STORE = '@react-native-async-storage/async-storage' + +function store(declared: Record): { + module: Record Promise> + effects: { name: string; value: unknown }[] +} { + const effects: { name: string; value: unknown }[] = [] + const device = declaredDeviceSubstitutes({ deviceStore: declared }) + device.bind((name, value) => effects.push({ name, value })) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the declared store answers every member; the test asserts what each one does. + const module = device.substitutes.get(STORE) as Record< + string, + (...args: unknown[]) => Promise + > + return { module, effects } +} + +function scenario(id: string): RecordingScenario { + const found = manifest.find((candidate) => candidate.id === id) + if (!found) { + throw new Error(`No scenario named ${id}`) + } + return found +} + +async function record(id: string): Promise { + const declared = scenario(id) + const { adapters } = pilotMountAdapters(root, { device: declared }) + return runRecording(declared, adapters[declared.operation]!, vitestRecordingScheduler()) +} + +function lastCheckpoint(recording: Recording): { + sender: RecordedValue + effects: RecordedValue + state: RecordedValue +} { + const { observation } = recording.checkpoints.at(-1)! + return { sender: observation.sender, effects: observation.effects, state: observation.state } +} + +function sentParams(recording: Recording, index = 0): unknown { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: a recorded sender entry has three positional argument slots. + const sender = lastCheckpoint(recording).sender as { + name: string + args: { name: string; value: unknown }[] + }[] + return { name: sender[index]?.name, params: sender[index]?.args[1]?.value } +} + +describe('a scenario that declares its device', () => { + it('leaves the refusing store in place when nothing is declared', () => { + const undeclared = declaredDeviceSubstitutes({}) + expect(undeclared.substitutes.size).toBe(0) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the table's default store answers every member with a throwing call. + const fallback = nativeMountingSubstitutes().get(STORE) as { getItem: () => unknown } + expect(() => fallback.getItem()).toThrow('Native store reached during recording') + }) + + it('reads the declared entry, and null for everything else', async () => { + const { module } = store({ 'orca:key': 'declared' }) + await expect(module.getItem!('orca:key')).resolves.toBe('declared') + await expect(module.getItem!('orca:other')).resolves.toBeNull() + }) + + /** + * A write that fed back into a read would let a later read return a byte nothing declared, which + * is the device back inside the recording. The write is an effect instead, where it is observed. + */ + it('records a write as an effect without letting a read see it', async () => { + const { module, effects } = store({}) + await module.setItem!('orca:key', 'written') + await module.removeItem!('orca:key') + await expect(module.getItem!('orca:key')).resolves.toBeNull() + expect(effects).toEqual([ + { name: 'device-store.setItem', value: { key: 'orca:key', value: 'written' } }, + { name: 'device-store.removeItem', value: { key: 'orca:key' } } + ]) + }) + + it('refuses a member the declaration does not back', () => { + const { module } = store({}) + expect(() => module.multiGet!('orca:key')).toThrow( + `Native store reached during recording: ${STORE}.multiGet` + ) + }) + + it('answers a declared tray, and records a dismissal as an effect', async () => { + const entry = { request: { identifier: 'tray-1', content: { data: { a: 1 } } } } + const effects: { name: string; value: unknown }[] = [] + const device = declaredDeviceSubstitutes({ deviceState: { notificationTray: [entry] } }) + device.bind((name, value) => effects.push({ name, value })) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the declared tray lists exactly these two members. + const module = device.substitutes.get('expo-notifications') as { + getPresentedNotificationsAsync: () => Promise + dismissNotificationAsync: (identifier: string) => Promise + } + const presented = await module.getPresentedNotificationsAsync() + expect(presented).toEqual([entry]) + expect(presented[0]).not.toBe(entry) + await module.dismissNotificationAsync('tray-1') + expect(effects).toEqual([ + { name: 'notification-tray.dismiss', value: { identifier: 'tray-1' } } + ]) + }) + + it('backs a recorded read: the declared last-visited repo is the one the dialog selects', async () => { + const recording = await record('new-workspace-repositories-fulfilled') + expect(sentParams(recording)).toEqual({ name: 'repo.list#1', params: { $rpc: 'absent' } }) + // repo-a is the first eligible repo, so repo-b can only come from the declared entry. + expect(lastCheckpoint(recording).state).toMatchObject({ selected: 'repo-b' }) + }) + + it('backs a recorded write: the reset credit journals its key before the request', async () => { + const recording = await record('codex-reset-credit-consumed') + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: a recorded request's params are recorded data. + const params = sentParams(recording) as { name: string; params: { idempotencyKey?: string } } + expect(params.name).toBe('accounts.consumeCodexResetCredit#1') + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: recorded effects are a list of name/value pairs. + const effects = lastCheckpoint(recording).effects as { name: string; value: unknown }[] + expect(effects.map((effect) => effect.name)).toEqual(['device-store.setItem']) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: as above. + const write = effects[0]!.value as { key: string; value: string } + expect(write.key).toMatch(/^orca:codex-reset-credit-attempt:v1:[0-9a-f]{64}$/) + expect(JSON.parse(write.value)).toMatchObject({ idempotencyKey: params.params.idempotencyKey }) + }) + + it('backs a recorded tray: the presented push is the identity the catch-up sends', async () => { + const recording = await record('push-dismissal-tray-reconciled') + expect(sentParams(recording)).toEqual({ + name: 'notifications.getMissedSince#1', + params: { + lastSeenSeq: Number.MAX_SAFE_INTEGER, + deliveredPushes: [ + { notificationEpoch: 'epoch-1', notificationId: 'note-1', notificationSeq: 7 } + ] + } + }) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: recorded effects are a list of name/value pairs. + const effects = lastCheckpoint(recording).effects as { name: string }[] + expect(effects.map((effect) => effect.name)).toEqual([ + 'device-store.setItem', + 'notification-tray.dismiss' + ]) + }) +}) diff --git a/mobile/src/test-support/rpc-recording/declared-device-state.ts b/mobile/src/test-support/rpc-recording/declared-device-state.ts new file mode 100644 index 00000000000..fda5eaca596 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/declared-device-state.ts @@ -0,0 +1,91 @@ +import { nativeStoreModule, partialNativeModule } from './native-module-traps' + +/** + * What a recording declares about the device it runs on. + * + * Undeclared is unchanged: async storage stays the throwing store and expo-notifications stays an + * unlisted package. Declaring one swaps in a backing that answers only from the declaration, so + * every byte a read can return is visible in the scenario file. Writes never feed back into reads — + * a read that could return a byte nothing declared would put the device back inside the recording. + * They are recorded as effects instead, which is where an unobserved write becomes observable. + */ +type DeclaredNotification = { + readonly request: { + readonly identifier: string + readonly content: { readonly data?: unknown } + readonly trigger?: unknown + } +} +export type DeclaredDeviceState = { + readonly deviceStore?: Readonly> + readonly deviceState?: { readonly notificationTray?: readonly DeclaredNotification[] } +} +type DeviceEffect = (name: string, value: unknown) => void + +/** + * The substitutes a scenario's declarations back, and the sink its writes are recorded through. + * The sink is bound at mount because the effect recorder belongs to one run, while the loader that + * holds the substitutes is built before it; an unbound write is a bug rather than a silent drop. + */ +export function declaredDeviceSubstitutes(declared: DeclaredDeviceState): { + substitutes: ReadonlyMap + bind: (effect: DeviceEffect) => void +} { + let sink: DeviceEffect | undefined + const effect: DeviceEffect = (name, value) => { + if (!sink) { + throw new Error(`Declared device effect before mount: ${name}`) + } + sink(name, value) + } + const substitutes = new Map() + const store = declared.deviceStore + if (store) { + substitutes.set('@react-native-async-storage/async-storage', declaredDeviceStore(store, effect)) + } + const tray = declared.deviceState?.notificationTray + if (tray) { + substitutes.set('expo-notifications', declaredNotificationTray(tray, effect)) + } + return { + substitutes, + bind: (bound) => { + sink = bound + } + } +} + +function declaredDeviceStore( + entries: Readonly>, + effect: DeviceEffect +): unknown { + return nativeStoreModule('@react-native-async-storage/async-storage', { + getItem: (key: string) => Promise.resolve(entries[key] ?? null), + setItem: (key: string, value: string) => { + effect('device-store.setItem', { key, value }) + return Promise.resolve() + }, + removeItem: (key: string) => { + effect('device-store.removeItem', { key }) + return Promise.resolve() + } + }) +} + +function declaredNotificationTray( + tray: readonly DeclaredNotification[], + effect: DeviceEffect +): unknown { + return partialNativeModule('expo-notifications', { + // Namespace-imported by every consumer, so the marker keeps reads going through the trap; see + // the `__esModule` paragraph in `native-module-traps.ts`. + __esModule: true, + // Cloned per read, so a screen that mutates a notification cannot change what the next read of + // the declaration returns. + getPresentedNotificationsAsync: () => Promise.resolve(structuredClone(tray)), + dismissNotificationAsync: (identifier: string) => { + effect('notification-tray.dismiss', { identifier }) + return Promise.resolve() + } + }) +} diff --git a/mobile/src/test-support/rpc-recording/family-recordings.test.ts b/mobile/src/test-support/rpc-recording/family-recordings.test.ts index e7c971810d6..497f5809ec6 100644 --- a/mobile/src/test-support/rpc-recording/family-recordings.test.ts +++ b/mobile/src/test-support/rpc-recording/family-recordings.test.ts @@ -28,7 +28,7 @@ async function certify(id: string, scenarios: RecordingScenario[]) { for (let run = 0; run < determinismRuns(); run++) { const checkpoints: Recording['checkpoints'] = [] for (const scenario of scenarios) { - const { adapters } = pilotMountAdapters(root) + const { adapters } = pilotMountAdapters(root, { device: scenario }) const recording = await runRecording( scenario, adapters[scenario.operation], diff --git a/mobile/src/test-support/rpc-recording/golden-recorder-failure-absence.test.ts b/mobile/src/test-support/rpc-recording/golden-recorder-failure-absence.test.ts new file mode 100644 index 00000000000..90b7494de85 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/golden-recorder-failure-absence.test.ts @@ -0,0 +1,79 @@ +import { readdirSync } from 'node:fs' +import { resolve } from 'node:path' +import { describe, expect, it } from 'vitest' +import { readGolden } from './golden-recording' +import { OBSERVATION_FIELDS } from './golden-value-pool' +import type { Observation } from './recording-scenario' +import type { RecordedValue } from './recording-values' + +const root = resolve(import.meta.dirname, '../../../..') +const directory = + process.env.RPC_FOUNDATION_GOLDENS ?? resolve(root, 'mobile/rpc-foundation/goldens') + +/** `captureValue`'s two refusals. Neither is ever product behaviour. */ +const PROJECTION_REFUSALS = [ + 'Unsupported observation', + 'Observation requires an explicit projection' +] + +function refusalText(value: RecordedValue): boolean { + if (typeof value === 'string') { + return PROJECTION_REFUSALS.some((refusal) => value.includes(refusal)) + } + if (Array.isArray(value)) { + return value.some(refusalText) + } + return typeof value === 'object' && value !== null && Object.values(value).some(refusalText) +} + +function failures(at: string, observation: Observation): string[] { + const found: string[] = [] + for (const field of OBSERVATION_FIELDS) { + if (refusalText(observation[field])) { + found.push(`${at}.${field}: recorder refused to project a value`) + } + } + return found +} + +/** + * A refused projection settles as data — the throw is captured as an effect and the action stays + * `pending` — so `--record` writes it and the suite goes green over it. Two adapters shipped that + * way (#20667, and the worktree catalog), and a revert plus a re-record would restore either one + * silently. A detached rejection is not banned here: recording one is how a real main bug gets + * pinned, and `unhandled-recording.test.ts` pins the capture itself. + */ +describe('recorder failures never reach a golden', () => { + it('records no refused projection in any observation field', () => { + const ids = readdirSync(directory) + .filter((file) => file.endsWith('.json')) + .map((file) => file.replace(/\.json$/, '')) + + // Positive control: absence proves nothing unless the detector fires. `effects` carries the + // shape both real defects took — the refusal captured as the message of a recorded error. + const seeded: Observation = { + sender: [], + payloads: [], + settlements: { fetch: { status: 'pending' } }, + state: { fetched: 'Observation requires an explicit projection for non-plain objects' }, + effects: [ + { name: 'unhandled-rejection', value: { message: 'Unsupported observation: function' } } + ] + } + expect(failures('seeded', seeded)).toEqual([ + 'seeded.state: recorder refused to project a value', + 'seeded.effects: recorder refused to project a value' + ]) + + let checkpoints = 0 + const found = ids.flatMap((id) => + readGolden(directory, id).recording.checkpoints.flatMap((checkpoint) => { + checkpoints++ + return failures(`${id}/${checkpoint.id}`, checkpoint.observation) + }) + ) + expect(found).toEqual([]) + expect(ids.length).toBeGreaterThan(0) + expect(checkpoints).toBeGreaterThan(ids.length) + }) +}) diff --git a/mobile/src/test-support/rpc-recording/inert-native-elements.ts b/mobile/src/test-support/rpc-recording/inert-native-elements.ts new file mode 100644 index 00000000000..aa104a775d1 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/inert-native-elements.ts @@ -0,0 +1,53 @@ +import { createElement, type ReactNode } from 'react' + +/** + * A native view a recording renders but never operates. + * + * It renders its children and keeps every other prop on the test tree, where a projection can read + * what the screen chose to pass, and it does nothing else: no prop of its own is ever invoked, no + * layout is measured, and no event is fired. The name becomes the host tag, so which primitive a + * screen reached for is part of the observation rather than lost in a generic wrapper. + * + * Children that are a render callback — `Pressable`'s pressed-state form — are dropped rather than + * called, because calling one would be the recording inventing a press nobody scripted. + */ +export function inertNativeElement(name: string) { + function InertNativeElement(props: { children?: ReactNode }): ReactNode { + const { children, ...rest } = props + return createElement(name, rest, typeof children === 'function' ? undefined : children) + } + InertNativeElement.displayName = name + return InertNativeElement +} + +/** One inert element per name, built once so React sees a stable component identity per render. */ +export function inertNativeElements(names: readonly string[]): Record { + return Object.fromEntries(names.map((name) => [name, inertNativeElement(name)])) +} + +/** + * A package whose entire export surface is icon components, answered with one inert element per + * name. There is no "rest" to refuse here the way a partial module refuses one: an unlisted member + * of an icon set is another icon, so enumerating the set would only pin the package's contents. + * Memoised because an icon rebuilt per render would remount the subtree it labels. + */ +export function inertIconModule(): unknown { + const icons = new Map() + return new Proxy( + {}, + { + get: (_target, key) => { + if (typeof key !== 'string' || key === '__esModule') { + return undefined + } + const found = icons.get(key) + if (found) { + return found + } + const icon = inertNativeElement(key) + icons.set(key, icon) + return icon + } + } + ) +} diff --git a/mobile/src/test-support/rpc-recording/mounted-screen-tree.test.ts b/mobile/src/test-support/rpc-recording/mounted-screen-tree.test.ts new file mode 100644 index 00000000000..096fed0ed5b --- /dev/null +++ b/mobile/src/test-support/rpc-recording/mounted-screen-tree.test.ts @@ -0,0 +1,138 @@ +import { resolve } from 'node:path' +import { createElement } from 'react' +import { describe, expect, it } from 'vitest' +import { + hookScreenMount, + projectMountedScreen, + renderedElementProps, + screenMount +} from './mounted-screen-tree' +import { pilotMountAdapters } from './pilot-mount-adapters' +import { runRecording } from './run-recording' +import { readScenarios } from './scenario-input' +import { vitestRecordingScheduler } from './vitest-recording-scheduler' + +const root = resolve(import.meta.dirname, '../../../..') +const manifest = readScenarios( + process.env.RPC_FOUNDATION_SCENARIOS ?? + resolve(root, 'mobile/rpc-foundation/pilot-scenarios.json') +).scenarios + +function Broken(): never { + throw new Error('a reply took the screen down') +} + +/** Collects what an adapter would have handed the recorder, so a crash effect is observable here. */ +function effectSink(): { + calls: { name: string; value: unknown }[] + effect: (name: string, value: unknown) => void +} { + const calls: { name: string; value: unknown }[] = [] + return { calls, effect: (name, value) => calls.push({ name, value }) } +} + +describe('a mounted screen', () => { + it('records a crash as state instead of failing the run', () => { + const screen = screenMount(() => createElement(Broken), effectSink().effect) + screen.mount() + expect(projectMountedScreen(screen)).toEqual({ + elements: {}, + text: [], + labels: [], + crash: 'a reply took the screen down' + }) + }) + + it('projects the elements, copy and labels of what rendered', () => { + const screen = screenMount( + () => + createElement( + 'View', + null, + createElement('Text', { accessibilityLabel: 'title' }, 'Files'), + createElement('Text', null, 'orca-files') + ), + effectSink().effect + ) + screen.mount() + expect(projectMountedScreen(screen)).toEqual({ + elements: { View: 1, Text: 2 }, + text: ['Files', 'orca-files'], + labels: ['title'], + crash: null + }) + }) + + it('reads the props an inert element was handed, which is all a list ever renders', () => { + const screen = screenMount( + () => createElement('View', null, createElement('FlatList', { data: [{ id: 'row-1' }] })), + effectSink().effect + ) + screen.mount() + expect(renderedElementProps(screen.tree(), 'FlatList')).toEqual([{ data: [{ id: 'row-1' }] }]) + expect(renderedElementProps(screen.tree(), 'SectionList')).toEqual([]) + }) + + /** + * A hook mount projects the hook's own value, never a crash, so the boundary reporting through the + * effect sink is the only thing that puts a crash the adapter ignores into a golden. + */ + it('reports a crash through the effect sink with no adapter cooperation', () => { + const sink = effectSink() + let renders = 0 + const screen = hookScreenMount(() => { + renders++ + // From the second render on, not only on it: React retries a failed concurrent render + // synchronously, and a hook that recovers on the retry never reaches the boundary. + if (renders >= 2) { + throw new Error('the second render threw') + } + }, sink.effect) + screen.mount() + expect(sink.calls).toEqual([]) + screen.update() + expect(sink.calls).toEqual([ + { name: 'screen.crash', value: { message: 'the second render threw' } } + ]) + }) + + /** + * The screen-mount capability end to end: the real panel, over the real host-client context, over + * the scripted socket. Both worktree values on the wire are the adapter's declared prop, and the + * fallback is reached only because the first request was refused. + */ + it('sends what the screen sends, with no substitute shaping a param', async () => { + const scenario = manifest.find( + (candidate) => candidate.id === 'files-explorer-legacy-fallback' + )! + const { adapters } = pilotMountAdapters(root, { device: scenario }) + const recording = await runRecording( + scenario, + adapters[scenario.operation]!, + vitestRecordingScheduler() + ) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: a recorded sender entry has a name and three positional argument slots. + const sender = recording.checkpoints.at(-1)!.observation.sender as { + name: string + args: { name: string; value: unknown }[] + }[] + expect( + sender.map((entry) => ({ + name: entry.name, + params: entry.args[1]?.value, + options: entry.args[2]?.value + })) + ).toEqual([ + { + name: 'files.readDir#1', + params: { relativePath: '', worktree: 'id:wt-files' }, + options: { $rpc: 'absent' } + }, + { + name: 'files.list#1', + params: { worktree: 'id:wt-files' }, + options: { $rpc: 'absent' } + } + ]) + }) +}) diff --git a/mobile/src/test-support/rpc-recording/mounted-screen-tree.ts b/mobile/src/test-support/rpc-recording/mounted-screen-tree.ts new file mode 100644 index 00000000000..70350b28c7b --- /dev/null +++ b/mobile/src/test-support/rpc-recording/mounted-screen-tree.ts @@ -0,0 +1,161 @@ +import { Component, createElement, type ReactElement, type ReactNode } from 'react' +import { act, create, type ReactTestRenderer } from 'react-test-renderer' +import type { MountContext } from './recording-scenario' + +type CrashProps = { onCrash: (message: string) => void; children?: ReactNode } + +/** + * A screen that throws while rendering or in an effect is a recording, not a suite failure: it is + * what a reply partition does to a device, and refusing to record it would leave the shapes that + * break a screen the only ones the oracle cannot see. The boundary catches it, the subtree goes, + * and the message becomes state. + */ +class MountedScreenCrash extends Component { + state: { crash: string | null } = { crash: null } + static getDerivedStateFromError(error: unknown): { crash: string } { + return { crash: error instanceof Error ? error.message : String(error) } + } + componentDidCatch(error: unknown): void { + this.props.onCrash(error instanceof Error ? error.message : String(error)) + } + render(): ReactNode { + return this.state.crash === null ? this.props.children : null + } +} + +/** + * A mounted screen, rather than a mounted hook. The element is rebuilt on every mount and update so + * an adapter can change a prop between steps the way a parent screen would. + * + * The crash goes to the effect sink as well as to `crash()`, because an adapter that projects no + * crash — every hook mount, whose state is the hook's own value — would otherwise record a screen + * that quietly stopped rendering. An effect is not optional in the same way: it forces a cleanup + * checkpoint, so the crash reaches the golden without the adapter cooperating. + */ +export function screenMount(element: () => ReactElement, effect: MountContext['effect']) { + let renderer: ReactTestRenderer | undefined + let crashed: string | null = null + const wrapped = () => + createElement( + MountedScreenCrash, + { + onCrash: (message: string) => { + crashed = message + effect('screen.crash', { message }) + } + }, + element() + ) + return { + mount() { + act(() => { + renderer = create(wrapped()) + }) + }, + update() { + act(() => { + renderer?.update(wrapped()) + }) + }, + unmount() { + act(() => { + renderer?.unmount() + renderer = undefined + crashed = null + }) + }, + tree: (): unknown => renderer?.toJSON() ?? null, + crash: (): string | null => crashed + } +} + +/** The hook form of `screenMount`: the same crash boundary, over a harness that draws nothing. */ +export function hookScreenMount( + render: () => void, + effect: MountContext['effect'] +): ReturnType { + function Harness(): null { + render() + return null + } + return screenMount(() => createElement(Harness), effect) +} + +type RenderedNode = { type: string; props: Record; children: unknown[] | null } + +/** + * The props one inert element was rendered with. Nothing invokes an inert element's callbacks, so a + * list's contents are only ever observable through the data it was handed; this is how an adapter + * reads them without the recording pretending a row was drawn. + */ +export function renderedElementProps(tree: unknown, tag: string): Record[] { + const found: Record[] = [] + walk(tree, (node) => { + if (typeof node !== 'string' && node.type === tag) { + found.push(node.props) + } + }) + return found +} + +/** One depth-first pass in render order, over the host nodes and the text between them. */ +function walk(node: unknown, visit: (node: RenderedNode | string) => void): void { + if (typeof node === 'string') { + visit(node) + return + } + if (Array.isArray(node)) { + for (const child of node) { + walk(child, visit) + } + return + } + if (!node || typeof node !== 'object' || !('type' in node)) { + return + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: react-test-renderer's JSON nodes carry exactly these three fields. + const rendered = node as RenderedNode + visit(rendered) + walk(rendered.children, visit) +} + +/** What a mounted screen rendered, and the crash instead if a reply took it down. */ +export function projectMountedScreen(screen: { tree: () => unknown; crash: () => string | null }): { + elements: Record + text: string[] + labels: string[] + crash: string | null +} { + return { ...projectScreenTree(screen.tree()), crash: screen.crash() } +} + +/** + * Which inert primitives a screen chose, the copy it put on them, and the labels it gave them. + * + * Deliberately not the whole tree. A projection is an observation, and the props a screen passes + * include callbacks and style objects that are neither recordable nor behaviour — but the element + * census is what distinguishes a spinner from a list from an error, the text is what a person would + * read off the screen, and the labels are the affordances. A screen that stops rendering its rows, + * or blanks its copy, moves all three. + */ +function projectScreenTree(tree: unknown): { + elements: Record + text: string[] + labels: string[] +} { + const elements: Record = {} + const text: string[] = [] + const labels: string[] = [] + walk(tree, (node) => { + if (typeof node === 'string') { + text.push(node) + return + } + elements[node.type] = (elements[node.type] ?? 0) + 1 + const label = node.props.accessibilityLabel + if (typeof label === 'string') { + labels.push(label) + } + }) + return { elements, text, labels } +} diff --git a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts index 1b52c817536..1752e5bc2dd 100644 --- a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts +++ b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts @@ -6,11 +6,21 @@ import type { OperationMutation } from '../operation-module-loader' * is what proves that family's `state()` projection observes the operation's actual output. */ export const OPERATION_MUTATIONS = { - // Loses the generation comparison, so a stale workspace response poisons the search cache. + // Drops the delivery-unknown arm of a native-chat send, so an ack lost after the frame was + // written reads as a definite rejection and invites the user to send the same message twice. + 'native-chat-send-delivery-unknown': { + file: 'mobile-native-chat-send.ts', + before: ` return isRpcDeliveryUnknown(error) || isLogicalClientCutoverError(error) + ? 'unknown' + : 'rejected'`, + after: ` return isLogicalClientCutoverError(error) ? 'unknown' : 'rejected'` + }, + // Re-anchored where the operation migration moved the acceptance read; the defect it injects — + // a stale workspace response poisoning the search cache — is unchanged. race: { file: 'use-mobile-native-chat-file-search.ts', - before: '!response.ok || generationRef.current !== generation', - after: '!response.ok' + before: '!accepted.accepted || generationRef.current !== generation', + after: '!accepted.accepted' }, // Accepts a null result envelope instead of rejecting it. The guard is repeated for three // mutations in this file; the anchor carries the message so only the recorded one is edited. @@ -108,15 +118,13 @@ export const OPERATION_MUTATIONS = { }, // Checks the sibling's refusal before the operation's own, so a correlated refusal reports the // sibling. Invisible to every scenario whose sibling succeeds or rejects at the transport. + // Re-anchored where the operation migration moved both reads; the reorder it injects — the + // detection refusal deciding the error before the settings read is interpreted — is unchanged. 'new-tab-refusal-order': { file: 'mobile-new-tab-agent-loader.ts', - before: ` const readSettings = newTabSettingsRead.interpret(settingsResponse) - if (!detectedResponse.ok) { - throw new Error((detectedResponse as RpcFailure).error.message) - }`, - after: ` if (!detectedResponse.ok) { - throw new Error((detectedResponse as RpcFailure).error.message) - } + before: ` const readSettings = newTabSettingsRead.interpret(settingsResponse)`, + after: ` const detected0 = detectedAgents.interpret(detectedAgents.reply) + void detected0 const readSettings = newTabSettingsRead.interpret(settingsResponse)` }, // Publishes an unaccepted read, blanking settings a refusal should have left alone. Invisible diff --git a/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts b/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts index acd9840e4f0..b6de872588c 100644 --- a/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts +++ b/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts @@ -28,7 +28,8 @@ const mutants: Record = { 'settings-task-hydration-fulfilled': 'task-hydration-envelope', 'settings-task-write': 'task-preferences-optimistic', 'settings-workspace-submit-fulfilled': 'workspace-submit-envelope', - 'settings-task-workspace-fulfilled': 'task-workspace-envelope' + 'settings-task-workspace-fulfilled': 'task-workspace-envelope', + 'native-chat-write-delivery-unknown': 'native-chat-send-delivery-unknown' } /** * The archived tree's visible state, pinned per seed: b1 serves the poisoned empty inventory, b2 @@ -74,6 +75,7 @@ describe('RPC main recording mutants', () => { for (const { id, scenario, mutation } of mutantPilots) { it(`${id}: kills ${mutation}`, async () => { const { adapters, assertMutationApplied } = pilotMountAdapters(root, { + device: scenario, mutation: operationMutation(mutation) }) const result = await runRecordingMutant( @@ -90,6 +92,7 @@ describe('RPC main recording mutants', () => { for (const { id, scenario, reference } of referencePilots) { it.skipIf(!process.env.RPC_FOUNDATION_REFERENCE_ROOT)(`${id}: rejects bcba08b3e4`, async () => { const { adapters } = pilotMountAdapters(process.env.RPC_FOUNDATION_REFERENCE_ROOT!, { + device: scenario, reference: true }) const result = await runRecording( diff --git a/mobile/src/test-support/rpc-recording/mutants/probe-hole-witness.test.ts b/mobile/src/test-support/rpc-recording/mutants/probe-hole-witness.test.ts index 9bfcb55bd1c..277bb892b8d 100644 --- a/mobile/src/test-support/rpc-recording/mutants/probe-hole-witness.test.ts +++ b/mobile/src/test-support/rpc-recording/mutants/probe-hole-witness.test.ts @@ -40,6 +40,7 @@ const HOLES: readonly { mutation: Mutation; operation: string; closedBy: readonl async function verdict(id: string, mutation: Mutation): Promise { const scenario = input.scenarios.find((candidate) => candidate.id === id)! const { adapters, assertMutationApplied } = pilotMountAdapters(root, { + device: scenario, mutation: operationMutation(mutation) }) const result = await runRecordingMutant( diff --git a/mobile/src/test-support/rpc-recording/native-module-traps.ts b/mobile/src/test-support/rpc-recording/native-module-traps.ts new file mode 100644 index 00000000000..3dd3c0390c3 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/native-module-traps.ts @@ -0,0 +1,60 @@ +/** + * The two traps a native substitute is built from. + * + * A partial module stands in for part of a package: the members a mounted operation reads, and a + * refusal for the rest. A member nobody listed throws on the read rather than resolving to + * `undefined`, because an undefined native member is not a recording of anything — the product + * would call it. A store inverts that, reading every member back as a function that throws when + * called: a default-dependency object may name them, and a recording that reaches one fails at the + * call instead. Whether that failure is visible depends on the caller; `host-app-version-store.ts` + * catches and degrades to its unread state, which is what it does on a device too. + * + * `__esModule` is exempt from both refusals, because it is the module system's interop marker rather + * than a native API, and what a trap answers there is the whole of the interop rule for every + * substitute in this directory — the other sites point here rather than restating it. Both emitted + * helpers short-circuit on a truthy marker: `__importDefault` returns the module instead of wrapping + * it, and `__importStar` returns it instead of copying its own keys into a fresh object. + * + * So a trap answers `true` when it has to survive being imported: the loader's refusing proxy, and + * any partial whose consumer takes a default or a namespace, because a flattened copy has no trap + * left and would answer an unlisted member with `undefined` instead of the named refusal. A store + * answers `undefined`, because the store *is* the default export — a truthy marker would bind + * `import X from` to the trap's own `default`, a throwing stub, instead of to the trap. + */ +export function partialNativeModule(module: string, members: Record): unknown { + return new Proxy(members, { + get: (target, key) => { + if (typeof key === 'string') { + if (key !== '__esModule' && !(key in target)) { + throw new Error(`Unsubstituted native member: ${module}.${key}`) + } + return target[key] + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: a symbol key cannot index the declared string record; the trap reads whatever the member object holds there. + return (target as Record)[key] + } + }) +} + +/** A device event source with no events: registration succeeds, nothing is ever delivered. */ +export function silentNativeSubscription(): { remove: () => void } { + return { remove: () => {} } +} + +/** A native store: the members a recording declared, and a throwing call for every other. */ +export function nativeStoreModule(module: string, declared: Record = {}): unknown { + return new Proxy(declared, { + get: (target, key) => { + if (key === '__esModule') { + return undefined + } + if (typeof key === 'string' && key in target) { + return target[key] + } + return (...args: unknown[]) => { + void args + throw new Error(`Native store reached during recording: ${module}.${String(key)}`) + } + } + }) +} diff --git a/mobile/src/test-support/rpc-recording/native-mounting-substitutes.ts b/mobile/src/test-support/rpc-recording/native-mounting-substitutes.ts index 09c1eab0ae0..6a85b39e020 100644 --- a/mobile/src/test-support/rpc-recording/native-mounting-substitutes.ts +++ b/mobile/src/test-support/rpc-recording/native-mounting-substitutes.ts @@ -1,33 +1,35 @@ import { Buffer } from 'node:buffer' import * as React from 'react' +import * as ReactJsxRuntime from 'react/jsx-runtime' import { sha256 } from '@noble/hashes/sha256' import * as zod from 'zod' +import { + nativeStoreModule, + partialNativeModule, + silentNativeSubscription +} from './native-module-traps' +import { reactNativeScreenMembers, screenNativeSubstitutes } from './screen-native-substitutes' /** * The native modules a mounted operation may import, and what it gets instead. * - * The loader's default is a proxy that throws on any property of a non-relative import, which is - * what keeps an adapter from silently mounting a device API. That default is too strict for the - * relay pairing modules: each builds a `defaultDependencies` object at module scope, so merely + * The loader's default is a proxy that refuses any member of a non-relative import, which is what + * keeps an adapter from silently mounting a device API. That default is too strict for the relay + * pairing modules: each builds a `defaultDependencies` object at module scope, so merely * *referencing* `Platform.OS` or a storage-backed loader throws before an adapter can override it. * * So the table separates reference from use. `react` and `zod` are the real libraries — pure, and - * React additionally has to be the one instance the test renderer drives, and `@noble/hashes` is - * the same pure-JS digest the product would run on a device. `expo-crypto` is routed through the - * Web Crypto the recording scheduler already pins, which is both deterministic and what the library - * itself does off-device. + * React additionally has to be the one instance the test renderer drives, which is also why + * `react/jsx-runtime` is the real module: the automatic runtime a screen compiles to must build + * elements for that instance. `@noble/hashes` is the same pure-JS digest the product would run on a + * device, and `expo-crypto` is routed through the Web Crypto the recording scheduler already pins, + * which is both deterministic and what the library itself does off-device. * - * Every substitute that stands in for part of a module keeps the default's shape: a member nobody - * listed throws on the read rather than resolving to `undefined`, because an undefined native - * member is not a recording of anything — the product would call it. Async storage inverts that, - * reading every member back as a function that throws when called: a default-dependency object may - * name them, and a recording that reaches it fails at the call instead. Whether that failure is - * visible depends on the caller. `host-app-version-store.ts` catches and degrades to its unread - * state, which is what it does on a device too. - * - * Both traps leave `__esModule` undefined. It is the module system's interop marker rather than a - * native API, and answering it truthfully binds a transpiled `import X from` to the trap's own - * answer instead of the module object, leaving every consumer holding a member-less stand-in. + * Every substitute keeps one of the two trap shapes in `native-module-traps.ts`, which is where the + * rule about unlisted members and `__esModule` lives. The view packages a mounted screen needs are + * in `screen-native-substitutes.ts`, and the two entries a scenario can declare for itself — the + * device store and the notification tray — are in `declared-device-state.ts`, absent here until a + * recording declares them. * * `AppState`, `useWindowDimensions`, the two-way audio module and `expo-keep-awake` are the same * kind of boundary as the scripted socket: a screen-lock tag, a window size and a microphone are @@ -35,43 +37,35 @@ import * as zod from 'zod' * audio is produced — because every send the dictation and terminal hooks make is driven through * the operation's own API instead. A recording that needed a native event would have to say so by * adding an emitter here. + * + * `expo-haptics` is the only one whose real members are already fire-and-forget: every caller in + * `platform/haptics.ts` is `void …catch(() => {})`, so resolving is what the device does with the + * reply too. Only the iOS members are listed because `Platform.OS` above is pinned to `ios` and + * the Android branch is never evaluated; adding a second platform would have to add them. + * + * `expo-clipboard` is a pasteboard the session screens read and write, so it is a fixture rather + * than a no-op: it starts empty and remembers what a recorded action put there. It is per-recording, + * so nothing leaks between scenarios. Unlike the declared entries it needs no declaration, because + * every byte it can return was written inside the same recording. */ -function partialNativeModule(module: string, members: Record): unknown { - return new Proxy(members, { - get: (target, key) => { - if (typeof key === 'string' && key !== '__esModule' && !(key in target)) { - throw new Error(`Unsubstituted native member: ${module}.${key}`) - } - return Reflect.get(target, key) +/** The system pasteboard as a per-recording cell: empty at mount, readable after a write. */ +function pasteboardNativeStore(): unknown { + let text: string | null = null + return partialNativeModule('expo-clipboard', { + getStringAsync: () => Promise.resolve(text ?? ''), + hasStringAsync: () => Promise.resolve(text !== null), + hasImageAsync: () => Promise.resolve(false), + setStringAsync: (value: string) => { + text = value + return Promise.resolve(true) } }) } -/** A device event source with no events: registration succeeds, nothing is ever delivered. */ -function silentNativeSubscription(): { remove: () => void } { - return { remove: () => {} } -} - -function unusableNativeStore(module: string): unknown { - return new Proxy( - {}, - { - get: (_target, key) => { - if (key === '__esModule') { - return undefined - } - return (...args: unknown[]) => { - void args - throw new Error(`Native store reached during recording: ${module}.${String(key)}`) - } - } - } - ) -} - export function nativeMountingSubstitutes(): Map { return new Map([ ['react', React], + ['react/jsx-runtime', ReactJsxRuntime], ['zod', zod], ['@noble/hashes/sha256', partialNativeModule('@noble/hashes/sha256', { sha256 })], [ @@ -89,7 +83,10 @@ export function nativeMountingSubstitutes(): Map { partialNativeModule('react-native', { Platform: { OS: 'ios' }, AppState: { currentState: 'active', addEventListener: silentNativeSubscription }, - useWindowDimensions: () => ({ width: 390, height: 844 }) + BackHandler: { addEventListener: silentNativeSubscription }, + Keyboard: { dismiss: () => {} }, + useWindowDimensions: () => ({ width: 390, height: 844 }), + ...reactNativeScreenMembers() }) ], [ @@ -102,6 +99,17 @@ export function nativeMountingSubstitutes(): Map { toggleRecording: () => true }) ], + [ + 'expo-haptics', + partialNativeModule('expo-haptics', { + impactAsync: () => Promise.resolve(), + notificationAsync: () => Promise.resolve(), + selectionAsync: () => Promise.resolve(), + ImpactFeedbackStyle: { Light: 'light', Medium: 'medium' }, + NotificationFeedbackType: { Error: 'error', Success: 'success' } + }) + ], + ['expo-clipboard', pasteboardNativeStore()], [ 'expo-keep-awake', partialNativeModule('expo-keep-awake', { @@ -109,10 +117,11 @@ export function nativeMountingSubstitutes(): Map { deactivateKeepAwake: () => {} }) ], + ...screenNativeSubstitutes(), [ '@react-native-async-storage/async-storage', - unusableNativeStore('@react-native-async-storage/async-storage') + nativeStoreModule('@react-native-async-storage/async-storage') ], - ['expo-secure-store', unusableNativeStore('expo-secure-store')] + ['expo-secure-store', nativeStoreModule('expo-secure-store')] ]) } diff --git a/mobile/src/test-support/rpc-recording/operation-module-loader.test.ts b/mobile/src/test-support/rpc-recording/operation-module-loader.test.ts new file mode 100644 index 00000000000..bf8d411cff7 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/operation-module-loader.test.ts @@ -0,0 +1,105 @@ +import { mkdtempSync, mkdirSync, writeFileSync } from 'node:fs' +import { tmpdir } from 'node:os' +import { join } from 'node:path' +import { createElement } from 'react' +import { act, create } from 'react-test-renderer' +import { afterAll, describe, expect, it } from 'vitest' +import { operationModuleLoader } from './operation-module-loader' + +/** + * A tree of source files instead of a product path, so these two properties are pinned by what the + * loader does rather than by what one screen happens to import today. + */ +const roots: string[] = [] +function loaderOver(files: Record): ReturnType { + const root = mkdtempSync(join(tmpdir(), 'rpc-loader-')) + roots.push(root) + for (const [name, source] of Object.entries(files)) { + mkdirSync(join(root, 'mobile/src'), { recursive: true }) + writeFileSync(join(root, 'mobile/src', name), source) + } + return operationModuleLoader(root) +} + +afterAll(() => { + roots.length = 0 +}) + +describe('the mounted module loader', () => { + /** + * Product sources compile with the automatic runtime and never import React, so a classic + * `React.createElement` emit throws `React is not defined` on the first render of every screen. + */ + it('compiles JSX against the automatic runtime and the React the test renderer drives', () => { + const modules = loaderOver({ + 'screen.tsx': ` + import { View } from 'react-native' + export function Screen(props: { label: string }) { + return {props.label} + } + ` + }) + const { Screen } = modules.load<{ Screen: (props: { label: string }) => unknown }>( + 'mobile/src/screen.tsx' + ) + let rendered: ReturnType | undefined + act(() => { + rendered = create(createElement(Screen, { label: 'files' })) + }) + expect(rendered?.toJSON()).toEqual({ + type: 'View', + props: { accessibilityLabel: 'files' }, + children: ['files'] + }) + }) + + /** + * Both interop helpers short-circuit on `__esModule`, so the trap binds as the module itself in + * all three import forms: the module loads, and the refusal lands on the member a recording + * actually wanted rather than on every module that merely mentions the package. + */ + it('lets a default import of an unlisted package load, and refuses the member it uses', () => { + const modules = loaderOver({ + 'uses-default.ts': ` + import Animated from 'react-native-not-substituted' + export const read = () => Animated.createAnimatedComponent + ` + }) + const { read } = modules.load<{ read: () => unknown }>('mobile/src/uses-default.ts') + expect(typeof read).toBe('function') + expect(() => read()).toThrow( + 'Unspecified native mounting dependency: react-native-not-substituted.default' + ) + }) + + it('refuses a named import of an unlisted package on the read', () => { + const modules = loaderOver({ + 'uses-named.ts': ` + import { thing } from 'expo-not-substituted' + export const read = () => thing + ` + }) + const { read } = modules.load<{ read: () => unknown }>('mobile/src/uses-named.ts') + expect(() => read()).toThrow( + 'Unspecified native mounting dependency: expo-not-substituted.thing' + ) + }) + + /** + * What lets a screen mount a module such as `platform/haptics.ts`, which imports a device package + * it only touches on a press: loading the importer is not itself a use. + */ + it('lets a namespace import of an unlisted package load, and refuses the member it reads', () => { + const modules = loaderOver({ + 'uses-namespace.ts': ` + import * as Haptics from 'expo-not-substituted' + export const read = () => Haptics.selectionAsync + ` + }) + const { read } = modules.load<{ read: () => unknown }>('mobile/src/uses-namespace.ts') + expect(typeof read).toBe('function') + expect(() => read()).toThrow( + 'Unspecified native mounting dependency: expo-not-substituted.selectionAsync' + ) + }) +}) diff --git a/mobile/src/test-support/rpc-recording/operation-module-loader.ts b/mobile/src/test-support/rpc-recording/operation-module-loader.ts index 25c43f7e72c..e1979895572 100644 --- a/mobile/src/test-support/rpc-recording/operation-module-loader.ts +++ b/mobile/src/test-support/rpc-recording/operation-module-loader.ts @@ -26,10 +26,12 @@ const SHARED_MODULE = 'mobile/src/transport/rpc-delivery-ambiguity.ts' export function operationModuleLoader( root: string, mutation?: OperationMutation, - exposures: readonly OperationExposure[] = [] + exposures: readonly OperationExposure[] = [], + /** What this recording declared about its device, overlaid on the refusing defaults. */ + declared: ReadonlyMap = new Map() ) { const cache = new Map() - const natives = nativeMountingSubstitutes() + const natives = new Map([...nativeMountingSubstitutes(), ...declared]) const sharedModulePath = resolve(root, SHARED_MODULE) let mutationCount = 0 function pathFor(base: string): string { @@ -53,8 +55,15 @@ export function operationModuleLoader( return new Proxy( {}, { - get: () => { - throw new Error(`Unspecified native mounting dependency: ${name}`) + // Answering `__esModule` binds this trap as the module itself in every import form; the + // rule is in the `__esModule` paragraph of `native-module-traps.ts`. The refusal then + // lands on the first member the emit reads, which for a default import is `.default` + // rather than whichever member the product went on to touch. + get: (_target, key) => { + if (key === '__esModule') { + return true + } + throw new Error(`Unspecified native mounting dependency: ${name}.${String(key)}`) } } ) @@ -133,7 +142,9 @@ export function operationModuleLoader( compilerOptions: { module: ts.ModuleKind.CommonJS, target: ts.ScriptTarget.ES2022, - jsx: ts.JsxEmit.React + // Product sources use the automatic runtime and never import React, so a classic + // `React.createElement` emit throws `React is not defined` on the first screen render. + jsx: ts.JsxEmit.ReactJSX } }).outputText const exposure = exposures.find(([suffix]) => file.endsWith(suffix))?.[1] ?? '' diff --git a/mobile/src/test-support/rpc-recording/pilot-mount-adapters.ts b/mobile/src/test-support/rpc-recording/pilot-mount-adapters.ts index 4fda6b195ef..0c5e186b9cd 100644 --- a/mobile/src/test-support/rpc-recording/pilot-mount-adapters.ts +++ b/mobile/src/test-support/rpc-recording/pilot-mount-adapters.ts @@ -1,4 +1,5 @@ import { MOUNTED_OPERATION_MODULES } from './adapters/mounted-operation-modules' +import { declaredDeviceSubstitutes, type DeclaredDeviceState } from './declared-device-state' import { operationModuleLoader, type OperationMutation } from './operation-module-loader' import type { MountOptions } from './mounted-operation-module' import type { MountAdapter } from './recording-scenario' @@ -14,11 +15,12 @@ import type { MountAdapter } from './recording-scenario' */ export function pilotMountAdapters( root: string, - options: MountOptions & { mutation?: OperationMutation } = {} + options: MountOptions & { mutation?: OperationMutation; device?: DeclaredDeviceState } = {} ) { + const device = declaredDeviceSubstitutes(options.device ?? {}) const loaders = MOUNTED_OPERATION_MODULES.map((module) => ({ module, - modules: operationModuleLoader(root, options.mutation, module.exposes ?? []) + modules: operationModuleLoader(root, options.mutation, module.exposes ?? [], device.substitutes) })) const adapters: Record = {} for (const { module, modules } of loaders) { @@ -26,7 +28,12 @@ export function pilotMountAdapters( if (operation in adapters) { throw new Error(`Two adapter modules mount ${operation}`) } - adapters[operation] = adapter + // The declared device writes through the same effect recorder the adapter is handed, so a + // scenario records one without its adapter having to wire the sink itself. + adapters[operation] = (context) => { + device.bind(context.effect) + return adapter(context) + } } } return { diff --git a/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts b/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts index 815e0e71c4b..4c0909b91aa 100644 --- a/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts +++ b/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts @@ -32,7 +32,7 @@ describe('RPC main recordings', () => { it(pilot.title, async () => { let first = '' for (let run = 0; run < determinismRuns(); run++) { - const { adapters } = pilotMountAdapters(root) + const { adapters } = pilotMountAdapters(root, { device: scenario }) const recording = await runRecording( scenario, adapters[scenario.operation], diff --git a/mobile/src/test-support/rpc-recording/recording-scenario.ts b/mobile/src/test-support/rpc-recording/recording-scenario.ts index ee1fe21814f..e3d09073fc7 100644 --- a/mobile/src/test-support/rpc-recording/recording-scenario.ts +++ b/mobile/src/test-support/rpc-recording/recording-scenario.ts @@ -1,4 +1,5 @@ import type { RpcClient } from '../../transport/rpc-client' +import type { DeclaredDeviceState } from './declared-device-state' import type { RecordedValue } from './recording-values' export type RpcRequestSender = Pick @@ -18,7 +19,8 @@ export type ScenarioStep = | { bind: string; request: string; params: unknown; optional?: true } | { advance: number } | { checkpoint: string } -export type RecordingScenario = { +/** A scenario may declare device state; see `declared-device-state.ts` for what a declaration buys. */ +export type RecordingScenario = DeclaredDeviceState & { id: string operation: string version: number diff --git a/mobile/src/test-support/rpc-recording/run-recording.ts b/mobile/src/test-support/rpc-recording/run-recording.ts index 9ace2a7a7c0..0c2022012fb 100644 --- a/mobile/src/test-support/rpc-recording/run-recording.ts +++ b/mobile/src/test-support/rpc-recording/run-recording.ts @@ -22,11 +22,14 @@ export async function runRecording( ): Promise { scheduler.start() const transport = new ScriptedRpcTransport(scheduler.elapsed) - const effects: { name: string; value: RecordedValue }[] = [] + const effects: { name: string; value: RecordedValue; sent: number }[] = [] const settlements: Record = {} const recording: Recording = { scenario: scenario.id, checkpoints: [] } const effect = (name: string, value: unknown) => { - effects.push({ name, value: captureValue(value) }) + // Why the send count: sender and effects are two independent lists, so a send reordered ahead of + // a device write moves neither of them. Stamping the count at push time orders them against + // each other, and that reordering becomes a golden diff. + effects.push({ name, value: captureValue(value), sent: transport.requests.length }) } const stopUnhandled = recordUnhandledRejections(effect) let mounted: MountedOperation | undefined diff --git a/mobile/src/test-support/rpc-recording/screen-native-substitutes.test.ts b/mobile/src/test-support/rpc-recording/screen-native-substitutes.test.ts new file mode 100644 index 00000000000..a16a9e25763 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/screen-native-substitutes.test.ts @@ -0,0 +1,111 @@ +import { createElement, type ElementType } from 'react' +import { act, create } from 'react-test-renderer' +import { describe, expect, it } from 'vitest' +import { inertIconModule } from './inert-native-elements' +import { nativeMountingSubstitutes } from './native-mounting-substitutes' +import { reactNativeScreenMembers, screenNativeSubstitutes } from './screen-native-substitutes' + +function member(module: string, name: string): unknown { + const substitute = nativeMountingSubstitutes().get(module) + if (substitute === undefined) { + throw new Error(`no substitute for ${module}`) + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the read is the assertion; a substitute proxy has no declared shape. + return (substitute as Record)[name] +} + +/** Every element a screen can render through the table, by the module it is imported from. */ +const INERT_ELEMENTS: readonly (readonly [string, string])[] = [ + ...Object.entries(reactNativeScreenMembers()) + .filter(([, value]) => typeof value === 'function') + .map(([name]): readonly [string, string] => ['react-native', name]), + ['react-native-safe-area-context', 'SafeAreaView'] +] + +describe('the inert screen substitutes', () => { + /** + * The whole contract in one place: an inert element renders its children and keeps its props + * where a projection can read them, and does nothing else — the callbacks it is handed are never + * invoked, including a render callback passed as its children. + */ + it.each(INERT_ELEMENTS)('renders %s.%s inertly', (module, name) => { + let invoked = 0 + const element = member(module, name) + let rendered: ReturnType | undefined + act(() => { + rendered = create( + createElement( + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: every entry above is an inert element component by construction. + element as ElementType, + { testID: name, onPress: () => invoked++, renderItem: () => invoked++ }, + 'child' + ) + ) + }) + const tree = rendered?.toJSON() + expect(invoked).toBe(0) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: a rendered host node carries exactly these fields. + const node = tree as { type: string; props: Record; children: unknown } + expect(node.props.testID).toBe(name) + expect(typeof node.props.onPress).toBe('function') + expect(node.children).toEqual(['child']) + }) + + it('drops a render callback passed as children rather than calling it', () => { + let invoked = 0 + let rendered: ReturnType | undefined + act(() => { + rendered = create( + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the substitute is an inert element component by construction. + createElement(member('react-native', 'Pressable') as ElementType, {}, () => { + invoked++ + return null + }) + ) + }) + expect(invoked).toBe(0) + const tree = rendered?.toJSON() + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: a rendered host node carries exactly these fields. + expect((tree as { children: unknown }).children).toBeNull() + }) + + it('pins the device inputs a screen reads instead of measuring them', () => { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the member is a hook by construction. + expect((member('react-native', 'useWindowDimensions') as () => unknown)()).toEqual({ + width: 390, + height: 844 + }) + expect(member('react-native', 'StyleSheet')).toMatchObject({ hairlineWidth: 1 }) + }) + + it('keeps a style sheet readable so a screen that reads one style sees it', () => { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the member is the substituted StyleSheet by construction. + const sheet = member('react-native', 'StyleSheet') as { + create: (value: unknown) => unknown + flatten: (value: unknown) => unknown + } + expect(sheet.create({ row: { flex: 1 } })).toEqual({ row: { flex: 1 } }) + expect(sheet.flatten([{ flex: 1 }, [{ gap: 2 }]])).toEqual({ flex: 1, gap: 2 }) + }) + + it('answers any icon name with its own element, because every export here is an icon', () => { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the icon module answers every string key. + const icons = inertIconModule() as Record + expect(icons.ChevronLeft).toBe(icons.ChevronLeft) + act(() => { + create(createElement(icons.ChevronLeft!, { size: 20 })) + }) + }) + + it('throws on a member nobody listed, in every screen package', () => { + for (const [module, substitute] of screenNativeSubstitutes()) { + if (module === 'lucide-react-native') { + continue + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the read is the assertion; a substitute proxy has no declared shape. + expect(() => (substitute as Record).notASubstitutedMember).toThrow( + `Unsubstituted native member: ${module}.notASubstitutedMember` + ) + } + }) +}) diff --git a/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts b/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts new file mode 100644 index 00000000000..1a518be95d5 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts @@ -0,0 +1,63 @@ +import { inertIconModule, inertNativeElements } from './inert-native-elements' +import { partialNativeModule } from './native-module-traps' + +/** + * The view packages a mounted screen imports, and what it gets instead. + * + * Every element here is inert (see `inert-native-elements.ts`) and every member follows the table's + * rule: only what a recording is known to read is listed, and the rest throws — `native-module-traps.ts` + * has the refusal and the `__esModule` exemption. A screen is mounted to observe the requests it + * sends and the state it publishes, so nothing below simulates a device: no layout is measured and + * no navigation happens. What a recording needs from any of them is that the render completes. + * + * Nothing is provisioned ahead of a reader, which is the point. A member listed before a recording + * reads it turns a refusal that would have forced a decision into a silent stand-in, so a screen + * reaching for an animation, a gesture or another primitive gets the named refusal instead, and + * whoever mounts it adds the member here together with the recording that reads it. + * + * `hairlineWidth` is the one device input pinned rather than refused, for the same reason the window + * size is: a pixel density is a pixel density, and a recording fixes it instead of reading it. + */ +export function screenNativeSubstitutes(): Map { + return new Map([ + [ + 'react-native-safe-area-context', + partialNativeModule('react-native-safe-area-context', inertNativeElements(['SafeAreaView'])) + ], + [ + 'expo-router', + // One router per recording, so a screen that closes over it keeps a stable callback. + partialNativeModule('expo-router', { useRouter: constantRouter }) + ], + ['lucide-react-native', inertIconModule()] + ]) +} + +const ROUTER = { push: () => {}, replace: () => {}, back: () => {}, dismiss: () => {} } +function constantRouter(): typeof ROUTER { + return ROUTER +} + +const ABSOLUTE_FILL = { position: 'absolute', left: 0, right: 0, top: 0, bottom: 0 } + +/** The same merge the real `flatten` does, and pure, so a screen reading one style sees it. */ +function flattenStyle(style: unknown): unknown { + if (!Array.isArray(style)) { + return style ?? {} + } + return Object.assign({}, ...style.map((entry) => flattenStyle(entry))) +} + +/** The react-native primitives and module members a mounted screen reads. */ +export function reactNativeScreenMembers(): Record { + return { + ...inertNativeElements(['ActivityIndicator', 'FlatList', 'Pressable', 'Text', 'View']), + StyleSheet: { + create: (sheet: unknown) => sheet, + flatten: flattenStyle, + hairlineWidth: 1, + absoluteFill: ABSOLUTE_FILL, + absoluteFillObject: ABSOLUTE_FILL + } + } +} diff --git a/mobile/src/transport/rpc-refusal-message.ts b/mobile/src/transport/rpc-refusal-message.ts index da681f0c570..a330944b9f8 100644 --- a/mobile/src/transport/rpc-refusal-message.ts +++ b/mobile/src/transport/rpc-refusal-message.ts @@ -12,10 +12,7 @@ export function refusedRpcMessageOrFallback(error: unknown, fallback: string): s * as a thunk, so a transport rejection stays outside the catch and reaches the caller as the object * the transport threw, delivery-unknown mark intact. */ -export function interpretOrThrowRefusalMessage( - interpret: () => unknown, - fallback: string -): unknown { +export function interpretOrThrowRefusalMessage(interpret: () => T, fallback: string): T { try { return interpret() } catch (error) { diff --git a/mobile/src/transport/unvalidated-rpc-request-port-boundary.test.ts b/mobile/src/transport/unvalidated-rpc-request-port-boundary.test.ts index 422b2925689..d0025e858ac 100644 --- a/mobile/src/transport/unvalidated-rpc-request-port-boundary.test.ts +++ b/mobile/src/transport/unvalidated-rpc-request-port-boundary.test.ts @@ -213,9 +213,11 @@ describe('unvalidated RPC request port boundary', () => { }) it('scans a plausible number of files', () => { - // A broken root or extension filter would make every check below vacuously pass. + // A broken root or extension filter would make every check below vacuously pass. The scan + // width is the load-bearing half: the offender count is what the migration is driving to zero, + // so its floor has to come down as the list does rather than fail on a successful step. expect(scanned.length).toBeGreaterThan(400) - expect(observed.size).toBeGreaterThan(50) + expect(observed.size).toBeGreaterThan(20) }) it('lists each file once', () => { diff --git a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts index 8b38a31b4cd..4cf1301d1ac 100644 --- a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts +++ b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts @@ -102,46 +102,44 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques // faking either would record a fiction of device state rather than of the wire. { file: 'src/notifications/push-dismissal-reconciliation.ts', references: 2 }, - // src/session/ — session screen: chat, diff review, PR actions, tabs - { file: 'src/session/ai-vault-resume-launch.ts', references: 3 }, - { file: 'src/session/ai-vault-resume-preparation.ts', references: 2 }, - { file: 'src/session/mobile-clipboard-image.ts', references: 7 }, - { file: 'src/session/mobile-file-tap-open.ts', references: 3 }, - { file: 'src/session/mobile-image-attachment.ts', references: 2 }, - { file: 'src/session/mobile-native-chat-image-attachment.ts', references: 1 }, - { file: 'src/session/mobile-native-chat-image-send.ts', references: 2 }, - { file: 'src/session/mobile-native-chat-send.ts', references: 2 }, - { file: 'src/session/mobile-native-chat-session-option-persistence.ts', references: 1 }, - { file: 'src/session/mobile-native-chat-stale-input.ts', references: 1 }, - { file: 'src/session/mobile-new-tab-agent-loader.ts', references: 4 }, - { file: 'src/session/mobile-session-tab-activation.ts', references: 3 }, - { file: 'src/session/mobile-session-tabs-stream-health.ts', references: 1 }, - { file: 'src/session/mobile-structured-agent-session-launch.ts', references: 3 }, + // src/session/ — session screen: chat, diff review, PR actions, tabs. The github.* PR surface, + // the diff-review loaders and the rest of the screen migrated in step 4; see + // mobile-session-{read,write,launch}-operations.ts, mobile-clipboard-image-operations.ts and + // mobile-diff-review-git-operations.ts. + // Holdout: the method is a parameter. `callAgentSession` takes a method string and a generic + // result type, and five call sites across two hooks pass their own, plus one inside this module's + // own mutation wrapper; an operation fixes the method at definition time, so migrating it is a + // restructure of those callers rather than of this send. { file: 'src/session/mobile-structured-agent-session-rpc.ts', references: 1 }, + // Holdout: unrecorded site, record-first rule. `worktree.show` here sits inside the same focus + // effect as a `runtime.clientEvents` subscription, and the request-only recording runner refuses + // to open one, so no golden can hold this file's behaviour. { file: 'src/session/use-live-worktree-name.ts', references: 1 }, - { file: 'src/session/use-mobile-diff-review-comment-actions.ts', references: 1 }, - { file: 'src/session/use-mobile-diff-review-git-actions.ts', references: 2 }, - { file: 'src/session/use-mobile-diff-review-interactions.ts', references: 1 }, - { file: 'src/session/use-mobile-diff-review-send-actions.ts', references: 3 }, - { file: 'src/session/use-mobile-file-tap-handlers.ts', references: 1 }, - { file: 'src/session/use-mobile-native-chat-file-search.ts', references: 2 }, - { file: 'src/session/use-mobile-native-chat-readability.ts', references: 1 }, + // Holdout: unrecorded site, record-first rule. The `nativeChat.readSession` read lives in the + // paging callback, not in an effect, but only the mount effect's `nativeChat.subscribe` arms the + // offset and generation it pages against — and the request-only runner refuses to open one. { file: 'src/session/use-mobile-native-chat-session.ts', references: 1 }, - { file: 'src/session/use-mobile-native-chat-stop.ts', references: 1 }, + // Holdout: unrecorded site, record-first rule. The hook reads the pasteboard and the PTY mode + // registry before the send, so a recording would pin device state rather than the wire. { file: 'src/session/use-mobile-session-accessory-selection.ts', references: 1 }, - { file: 'src/session/use-mobile-session-close-actions.ts', references: 3 }, - { file: 'src/session/use-mobile-session-content-create-actions.ts', references: 4 }, - { file: 'src/session/use-mobile-session-diff-comments.ts', references: 2 }, - { file: 'src/session/use-mobile-session-document-readers.ts', references: 2 }, - { file: 'src/session/use-mobile-session-markdown-actions.ts', references: 1 }, + // Holdout: unrecorded site, record-first rule. The startup effect drives 36 members of the + // session model including the terminal subscription lifecycle, which is a later step. { file: 'src/session/use-mobile-session-startup.ts', references: 2 }, + // Holdout: unrecorded site, record-first rule. The create path subscribes to the terminal it + // makes, and the request-only runner refuses the subscription. { file: 'src/session/use-mobile-session-terminal-create-actions.ts', references: 2 }, + // Holdout: unrecorded site, record-first rule. Gesture input is queued against a live PTY mode + // and a webview handle; neither exists in the runner. { file: 'src/session/use-mobile-session-terminal-input.ts', references: 2 }, - { file: 'src/session/use-mobile-session-terminal-list.ts', references: 1 }, + // Holdout: unrecorded site, record-first rule. The send reads the buffered draft store and the + // keyboard, both native state a recording would have to invent. { file: 'src/session/use-mobile-session-terminal-send-actions.ts', references: 2 }, + // Holdout: unrecorded site, record-first rule. The display-mode write is gated on an open + // terminal subscription, which is a later step. { file: 'src/session/use-mobile-session-terminal-stream-display.ts', references: 1 }, + // Holdout: unrecorded site, record-first rule. The paste reads a clipboard image through + // expo-image-manipulator and expo-file-system before any send. { file: 'src/session/use-mobile-terminal-paste.ts', references: 1 }, - { file: 'src/session/use-quick-commands.ts', references: 2 }, // src/settings/ — notification display probe { file: 'src/settings/notification-display-test.tsx', references: 1 }, diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 68ae103f6ec..92de08dfe22 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -54,7 +54,7 @@ allowBuilds: node-pty: true sherpa-onnx: true ssh2: false - "@orca/windows-registry": false + '@orca/windows-registry': false overrides: monaco-editor>dompurify: 3.4.14 diff --git a/src/cli/flag-help-text.ts b/src/cli/flag-help-text.ts new file mode 100644 index 00000000000..3cdee00060d --- /dev/null +++ b/src/cli/flag-help-text.ts @@ -0,0 +1,106 @@ +/** One-line flag descriptions shared by every command's help output. */ +export const FLAG_HELP_TEXT: Record = { + agent: '--agent Launch a known TUI agent in the first terminal', + 'base-branch': '--base-branch Base branch/ref to create the worktree from', + command: '--command Command to run in the terminal on startup', + comment: '--comment Comment stored in Orca metadata', + cursor: '--cursor Line cursor from a previous read (returns only new output)', + action: '--action Secondary accessibility action name', + activate: '--activate Reveal the new worktree in the Orca app', + app: '--app App name, bundle ID, or pid:N', + direction: + '--direction Direction: up|down|left|right for scroll, horizontal|vertical for split', + 'display-name': '--display-name Override the Orca display name', + 'element-index': '--element-index Element index from get-app-state', + title: '--title Custom title for the terminal tab (omit to reset)', + enter: '--enter Append Enter after sending text', + force: + '--force Force worktree removal when supported; does not force branch deletion', + focus: '--focus Reveal the created terminal session in Orca', + for: '--for exit|tui-idle Wait condition to satisfy', + 'from-element-index': '--from-element-index Source element index from get-app-state', + 'from-x': '--from-x Source window-local x coordinate', + 'from-y': '--from-y Source window-local y coordinate', + help: '--help Show this help message', + 'include-visual-layouts': '--include-visual-layouts Include tab and pane topology in JSON output', + interrupt: '--interrupt Send as an interrupt-style input when supported', + id: '--id Identifier for a target item or permission', + issue: '--issue Linked GitHub issue number', + 'linear-issue': + '--linear-issue Linked Linear issue identifier or URL; null clears on set', + json: '--json Emit machine-readable JSON', + key: '--key Key argument for this command', + limit: '--limit Maximum number of rows to return', + local: '--local Target the current project instead of the global install', + skill: '--skill Bundled skill to act on; repeat for several', + mode: '--mode Mode such as edit, diff, or both', + model: '--model Provider model id for a new agent launch', + effort: '--effort Reasoning effort for the selected model', + 'mouse-button': '--mouse-button Mouse button: left, right, or middle', + modifiers: '--modifiers Modifier keys held only for this click', + name: '--name Name for the new worktree or automation', + 'no-parent': '--no-parent Force no parent lineage for unrelated work', + 'no-screenshot': '--no-screenshot Skip screenshot capture after the operation', + pages: '--pages Number of scroll pages', + 'parent-worktree': + '--parent-worktree Parent worktree selector such as identity:, id:::, branch:, issue:, path:, or active/current', + path: '--path Path argument for the command', + prompt: '--prompt Prompt text for agent-backed commands', + query: '--query Search text for matching refs', + ref: '--ref Base ref to persist for the repo', + repo: '--repo Repo selector such as id:, name:, or path:', + 'restore-window': '--restore-window Bring the target app/window forward before the operation', + session: '--session Snapshot namespace for a related computer-use workflow', + setup: '--setup run|skip|inherit Setup policy for repo-defined setup hooks', + shell: '--shell Windows shell the terminal itself runs as', + terminal: '--terminal Runtime-issued terminal handle', + text: '--text Text payload to send or type', + 'text-stdin': '--text-stdin Read text payload from stdin', + 'task-id': '--task-id Task id to include in orchestration payload JSON', + 'task-title': '--task-title Concise title for an orchestration task', + 'dispatch-id': '--dispatch-id Dispatch id to include in orchestration payload JSON', + 'files-modified': '--files-modified Comma-separated files for orchestration payload JSON', + 'report-path': '--report-path Report path to include in orchestration payload JSON', + phase: '--phase Worker phase to include in orchestration payload JSON', + 'timeout-ms': '--timeout-ms Maximum wait time before timing out', + 'to-element-index': '--to-element-index Destination element index from get-app-state', + 'to-x': '--to-x Destination window-local x coordinate', + 'to-y': '--to-y Destination window-local y coordinate', + worktree: + '--worktree Worktree selector such as identity:, id:::, name:, branch:, issue:, path:, or active/current', + workspace: '--workspace Existing worktree selector for automation runs', + 'workspace-status': + '--workspace-status Board status id (defaults: todo, in-progress, in-review, completed)', + staged: '--staged Open staged source-control changes', + provider: '--provider Agent id such as codex, claude, or gemini', + 'source-context': + '--source-context Explicit TaskSourceContext for automation task/provider data', + trigger: '--trigger Automation schedule preset, cron, or RRULE', + schedule: '--schedule Alias for --trigger', + time: '--time Time used with daily/weekdays/weekly presets', + day: '--day <0-6> Day used with weekly preset, Sunday=0', + timezone: '--timezone IANA timezone for the automation', + enabled: '--enabled Enable the automation', + disabled: '--disabled Disable the automation', + 'reuse-session': + '--reuse-session Reuse the previous live session for existing-workspace runs', + 'fresh-session': '--fresh-session Disable session reuse for future runs', + 'workspace-mode': '--workspace-mode existing or new-per-run', + 'missed-run-grace-minutes': '--missed-run-grace-minutes Missed-run grace window', + 'value-stdin': '--value-stdin Read set-value payload from stdin', + 'window-id': '--window-id Target a window id from list-windows', + 'window-index': '--window-index Target a window index from list-windows', + // Browser automation flags + element: '--element Element ref from snapshot (e.g. e3)', + url: '--url URL to navigate to', + value: '--value Value to fill or select', + input: '--input Text to type at current focus', + expression: '--expression JavaScript expression to evaluate', + amount: '--amount Scroll distance in pixels', + index: '--index Tab index to switch to', + page: '--page Stable browser page id from `orca tab list --json`', + profile: '--profile Browser profile id', + 'show-profile': '--show-profile Include tab profile in text output', + 'no-ua-spoof': "--no-ua-spoof Keep Electron's native user agent", + format: '--format Screenshot image format' +} diff --git a/src/cli/handlers/terminal.test.ts b/src/cli/handlers/terminal.test.ts index 21f296b261a..90dbc7fd459 100644 --- a/src/cli/handlers/terminal.test.ts +++ b/src/cli/handlers/terminal.test.ts @@ -1,6 +1,9 @@ import { afterEach, describe, expect, it, vi } from 'vitest' import { RuntimeClientError, type RuntimeClient } from '../runtime-client' -import { TERMINAL_PROMPT_DELIVERY_RUNTIME_CAPABILITY } from '../../shared/protocol-version' +import { + TERMINAL_CREATE_SHELL_SELECTION_RUNTIME_CAPABILITY, + TERMINAL_PROMPT_DELIVERY_RUNTIME_CAPABILITY +} from '../../shared/protocol-version' import { parseArgs } from '../args' import { printHelp } from '../help' import { COMMAND_SPECS } from '../specs' @@ -685,3 +688,93 @@ describe('terminal send CLI', () => { ]) }) }) + +describe('terminal create --shell', () => { + const WORKTREE = 'path:C:/src/app' + + const shellClient = ( + call: ReturnType, + supported: boolean, + reachable = true + ): RuntimeClient => { + const client = { + call, + isRemote: false, + getCliStatus: vi.fn().mockResolvedValue({ + result: { + runtime: reachable + ? { + reachable: true, + runtimeId: 'runtime-current', + capabilities: supported ? [TERMINAL_CREATE_SHELL_SELECTION_RUNTIME_CAPABILITY] : [] + } + : { reachable: false, runtimeId: null } + } + }) + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: `terminal create` reads only `call`, `isRemote`, and `getCliStatus`, all stubbed above; RuntimeClient is a class, so a structural double cannot satisfy it without the cast. + return client as unknown as RuntimeClient + } + + afterEach(() => { + vi.restoreAllMocks() + process.exitCode = ORIGINAL_EXIT_CODE + }) + + function createTerminal(client: RuntimeClient, shell: string) { + return TERMINAL_HANDLERS['terminal create']({ + flags: new Map([ + ['worktree', WORKTREE], + ['shell', shell] + ]), + client, + cwd: 'C:/src/app', + json: true + }) + } + + it('sends the shell selection alongside an empty startup command', async () => { + const call = vi.fn().mockResolvedValue({ + result: { terminal: { handle: 'term_1', worktreeId: 'repo::C:/src/app', title: null } } + }) + vi.spyOn(console, 'log').mockImplementation(() => {}) + + await createTerminal(shellClient(call, true), 'cmd.exe') + + expect(call).toHaveBeenCalledWith( + 'terminal.create', + expect.objectContaining({ shell: 'cmd.exe', command: undefined }) + ) + }) + + it('refuses a shell the host cannot spawn without making the round trip', async () => { + const call = vi.fn() + + await expect(createTerminal(shellClient(call, true), 'nu.exe')).rejects.toThrow( + /--shell must be one of/ + ) + expect(call).not.toHaveBeenCalled() + }) + + // An older host strips the unknown param and answers with its default shell, which reads as a + // successful create. Creating the wrong shell silently is worse than refusing. + it('refuses rather than creating a default-shell terminal on a host without the capability', async () => { + const call = vi.fn() + + await expect(createTerminal(shellClient(call, false), 'cmd.exe')).rejects.toThrow( + /does not support --shell/ + ) + expect(call).not.toHaveBeenCalled() + }) + + // A status probe that fails or times out reports no capabilities either; blaming the host + // version would send the caller to update a host that may already be current. + it('reports an unreachable host as unavailable rather than incompatible', async () => { + const call = vi.fn() + + await expect(createTerminal(shellClient(call, false, false), 'cmd.exe')).rejects.toMatchObject({ + code: 'runtime_unavailable' + }) + expect(call).not.toHaveBeenCalled() + }) +}) diff --git a/src/cli/handlers/terminal.ts b/src/cli/handlers/terminal.ts index c409a6a9f9a..2da49ad8ca8 100644 --- a/src/cli/handlers/terminal.ts +++ b/src/cli/handlers/terminal.ts @@ -31,6 +31,11 @@ import { type WithAnnotatedHostScope } from '../omitted-host-scope-selectors' import { RuntimeClientError } from '../runtime-client' +import { + isSupportedWindowsShellOverride, + listSupportedWindowsShellOverrides +} from '../../shared/windows-terminal-shell' +import { TERMINAL_CREATE_SHELL_SELECTION_RUNTIME_CAPABILITY } from '../../shared/protocol-version' import { getBrowserWorktreeSelector, getOptionalWorktreeSelector, @@ -153,9 +158,40 @@ export const TERMINAL_HANDLERS: Record = { const useRendererBackedInteractiveTerminal = !client.isRemote && shouldUseRendererBackedInteractiveTerminal(command) const focus = flags.get('focus') === true + const shell = getOptionalStringFlag(flags, 'shell') + if (shell !== undefined) { + if (!isSupportedWindowsShellOverride(shell)) { + throw new RuntimeClientError( + 'invalid_argument', + `--shell must be one of: ${listSupportedWindowsShellOverrides().join(', ')}` + ) + } + // Why refused rather than sent hopefully: an older host strips the unknown param and hands + // back a healthy terminal running its DEFAULT shell. Nothing in that reply says the shell + // was ignored, so a caller that wanted cmd would drive a PowerShell session believing it won. + const status = await client.getCliStatus() + // An unreachable host reports no capabilities at all; that is not evidence it lacks --shell. + if (!status.result.runtime.reachable) { + throw new RuntimeClientError( + 'runtime_unavailable', + 'Orca could not verify --shell support on the execution host, so no terminal was created. Wait for the execution host to become reachable and retry.' + ) + } + if ( + status.result.runtime.capabilities?.includes( + TERMINAL_CREATE_SHELL_SELECTION_RUNTIME_CAPABILITY + ) !== true + ) { + throw new RuntimeClientError( + 'incompatible_runtime', + 'This Orca host does not support --shell, and would silently create a terminal running its default shell instead. No terminal was created; update Orca on the execution host.' + ) + } + } const result = await client.call<{ terminal: RuntimeTerminalCreate }>('terminal.create', { worktree: await getBrowserWorktreeSelector(flags, cwd, client), command, + ...(shell !== undefined ? { shell } : {}), title: getOptionalStringFlag(flags, 'title'), // Why: interactive local agent TUIs need the renderer-backed terminal // path for browser-side features, but CLI creates must stay backgrounded diff --git a/src/cli/help.ts b/src/cli/help.ts index 9d722388ae4..79e5b2b92c4 100644 --- a/src/cli/help.ts +++ b/src/cli/help.ts @@ -1,6 +1,7 @@ import type { CommandSpec } from './args' import { findCommandSpec, isCommandGroup, supportsBrowserPageFlag } from './args' import { unknownCommandData } from './command-suggestion' +import { FLAG_HELP_TEXT } from './flag-help-text' import { formatSkillsCommandFlagHelp } from './skills-command-flag-help' import { ROOT_HELP_TEXT_PRIMARY } from './root-help-text-primary' import { ROOT_HELP_TEXT_SECONDARY } from './root-help-text-secondary' @@ -182,113 +183,6 @@ function formatCommandFlagHelp(flag: string, commandPath: string[]): string { } export function formatFlagHelp(flag: string): string { - const helpByFlag: Record = { - agent: '--agent Launch a known TUI agent in the first terminal', - 'base-branch': '--base-branch Base branch/ref to create the worktree from', - command: '--command Command to run in the terminal on startup', - comment: '--comment Comment stored in Orca metadata', - cursor: '--cursor Line cursor from a previous read (returns only new output)', - action: '--action Secondary accessibility action name', - activate: '--activate Reveal the new worktree in the Orca app', - app: '--app App name, bundle ID, or pid:N', - direction: - '--direction Direction: up|down|left|right for scroll, horizontal|vertical for split', - 'display-name': '--display-name Override the Orca display name', - 'element-index': '--element-index Element index from get-app-state', - title: '--title Custom title for the terminal tab (omit to reset)', - enter: '--enter Append Enter after sending text', - force: - '--force Force worktree removal when supported; does not force branch deletion', - focus: '--focus Reveal the created terminal session in Orca', - for: '--for exit|tui-idle Wait condition to satisfy', - 'from-element-index': '--from-element-index Source element index from get-app-state', - 'from-x': '--from-x Source window-local x coordinate', - 'from-y': '--from-y Source window-local y coordinate', - help: '--help Show this help message', - 'include-visual-layouts': - '--include-visual-layouts Include tab and pane topology in JSON output', - interrupt: '--interrupt Send as an interrupt-style input when supported', - id: '--id Identifier for a target item or permission', - issue: '--issue Linked GitHub issue number', - 'linear-issue': - '--linear-issue Linked Linear issue identifier or URL; null clears on set', - json: '--json Emit machine-readable JSON', - key: '--key Key argument for this command', - limit: '--limit Maximum number of rows to return', - local: '--local Target the current project instead of the global install', - skill: '--skill Bundled skill to act on; repeat for several', - mode: '--mode Mode such as edit, diff, or both', - model: '--model Provider model id for a new agent launch', - effort: '--effort Reasoning effort for the selected model', - 'mouse-button': '--mouse-button Mouse button: left, right, or middle', - modifiers: '--modifiers Modifier keys held only for this click', - name: '--name Name for the new worktree or automation', - 'no-parent': '--no-parent Force no parent lineage for unrelated work', - 'no-screenshot': '--no-screenshot Skip screenshot capture after the operation', - pages: '--pages Number of scroll pages', - 'parent-worktree': - '--parent-worktree Parent worktree selector such as identity:, id:::, branch:, issue:, path:, or active/current', - path: '--path Path argument for the command', - prompt: '--prompt Prompt text for agent-backed commands', - query: '--query Search text for matching refs', - ref: '--ref Base ref to persist for the repo', - repo: '--repo Repo selector such as id:, name:, or path:', - 'restore-window': - '--restore-window Bring the target app/window forward before the operation', - session: '--session Snapshot namespace for a related computer-use workflow', - setup: '--setup run|skip|inherit Setup policy for repo-defined setup hooks', - terminal: '--terminal Runtime-issued terminal handle', - text: '--text Text payload to send or type', - 'text-stdin': '--text-stdin Read text payload from stdin', - 'task-id': '--task-id Task id to include in orchestration payload JSON', - 'task-title': '--task-title Concise title for an orchestration task', - 'dispatch-id': '--dispatch-id Dispatch id to include in orchestration payload JSON', - 'files-modified': '--files-modified Comma-separated files for orchestration payload JSON', - 'report-path': '--report-path Report path to include in orchestration payload JSON', - phase: '--phase Worker phase to include in orchestration payload JSON', - 'timeout-ms': '--timeout-ms Maximum wait time before timing out', - 'to-element-index': '--to-element-index Destination element index from get-app-state', - 'to-x': '--to-x Destination window-local x coordinate', - 'to-y': '--to-y Destination window-local y coordinate', - worktree: - '--worktree Worktree selector such as identity:, id:::, name:, branch:, issue:, path:, or active/current', - workspace: '--workspace Existing worktree selector for automation runs', - 'workspace-status': - '--workspace-status Board status id (defaults: todo, in-progress, in-review, completed)', - staged: '--staged Open staged source-control changes', - provider: '--provider Agent id such as codex, claude, or gemini', - 'source-context': - '--source-context Explicit TaskSourceContext for automation task/provider data', - trigger: '--trigger Automation schedule preset, cron, or RRULE', - schedule: '--schedule Alias for --trigger', - time: '--time Time used with daily/weekdays/weekly presets', - day: '--day <0-6> Day used with weekly preset, Sunday=0', - timezone: '--timezone IANA timezone for the automation', - enabled: '--enabled Enable the automation', - disabled: '--disabled Disable the automation', - 'reuse-session': - '--reuse-session Reuse the previous live session for existing-workspace runs', - 'fresh-session': '--fresh-session Disable session reuse for future runs', - 'workspace-mode': '--workspace-mode existing or new-per-run', - 'missed-run-grace-minutes': '--missed-run-grace-minutes Missed-run grace window', - 'value-stdin': '--value-stdin Read set-value payload from stdin', - 'window-id': '--window-id Target a window id from list-windows', - 'window-index': '--window-index Target a window index from list-windows', - // Browser automation flags - element: '--element Element ref from snapshot (e.g. e3)', - url: '--url URL to navigate to', - value: '--value Value to fill or select', - input: '--input Text to type at current focus', - expression: '--expression JavaScript expression to evaluate', - amount: '--amount Scroll distance in pixels', - index: '--index Tab index to switch to', - page: '--page Stable browser page id from `orca tab list --json`', - profile: '--profile Browser profile id', - 'show-profile': '--show-profile Include tab profile in text output', - 'no-ua-spoof': "--no-ua-spoof Keep Electron's native user agent", - format: '--format Screenshot image format' - } - if (flag === 'current') { return '--current Use the current Orca worktree linked Linear issue' } @@ -314,5 +208,5 @@ export function formatFlagHelp(flag: string): string { return '--full Include all supported V1 issue context within caps' } - return helpByFlag[flag] ?? `--${flag}` + return FLAG_HELP_TEXT[flag] ?? `--${flag}` } diff --git a/src/cli/root-help-text-secondary.ts b/src/cli/root-help-text-secondary.ts index 324fe847855..7a892c94ec8 100644 --- a/src/cli/root-help-text-secondary.ts +++ b/src/cli/root-help-text-secondary.ts @@ -62,7 +62,7 @@ export const ROOT_HELP_TEXT_SECONDARY = [ ' orca terminal read [--terminal ] [--cursor ] [--limit ] [--json]', ' orca terminal send [--terminal ] [--text ] [--enter] [--interrupt] [--wait-submit ] [--retry-request ] [--json]', ' orca terminal wait [--terminal ] --for exit|tui-idle [--timeout-ms ] [--json]', - ' orca terminal create [--worktree ] [--title ] [--command ] [--focus] [--json]', + ' orca terminal create [--worktree ] [--title ] [--command ] [--shell ] [--focus] [--json]', ' orca terminal split [--terminal ] [--direction horizontal|vertical] [--json]', ' orca terminal switch [--terminal ] [--json]', ' orca terminal close ([--terminal ] [--tab] | --worktree --all) [--json]', diff --git a/src/cli/runtime/status.test.ts b/src/cli/runtime/status.test.ts index 4c62be8d977..68d6f392a40 100644 --- a/src/cli/runtime/status.test.ts +++ b/src/cli/runtime/status.test.ts @@ -2,7 +2,7 @@ import { mkdtempSync, writeFileSync } from 'node:fs' import { createServer, type Socket } from 'node:net' import { tmpdir } from 'node:os' import { join } from 'node:path' -import { afterEach, describe, expect, it } from 'vitest' +import { afterEach, describe, expect, it, vi } from 'vitest' import { getRuntimeMetadataPath } from '../../shared/runtime-bootstrap' import type { RuntimeStatus } from '../../shared/runtime-types' import { RuntimeClient } from './client' @@ -86,6 +86,57 @@ describe.skipIf(process.platform === 'win32')('CLI runtime status', () => { }) }) +// Why: `kill(pid, 0)` answers EPERM when the pid exists under another uid — an Orca the +// CLI was pointed at with ORCA_USER_DATA_PATH, or one started with sudo. Reading that +// refusal as absence reports a live app as a dead one +// (docs/reference/ssh-execution-boundary.md). +describe.skipIf(process.platform === 'win32')('CLI status pid fallback', () => { + async function statusWithUnreachableRuntime( + killError: NodeJS.ErrnoException + ): Promise>> { + const userDataPath = mkdtempSync(join(tmpdir(), 'orca-runtime-status-probe-')) + writeFileSync( + getRuntimeMetadataPath(userDataPath), + JSON.stringify({ + runtimeId: 'runtime-unreachable', + pid: 424242, + // Nothing is listening here, so `status.get` fails and the pid probe decides. + transport: { kind: 'unix', endpoint: join(userDataPath, 'absent.sock') }, + authToken: 'token', + startedAt: Date.now() + }) + ) + const killSpy = vi.spyOn(process, 'kill').mockImplementation(() => { + throw killError + }) + try { + return await new RuntimeClient(userDataPath).getCliStatus() + } finally { + killSpy.mockRestore() + } + } + + it('keeps an unsignalable app running rather than calling the bootstrap stale', async () => { + const status = await statusWithUnreachableRuntime( + Object.assign(new Error('kill EPERM'), { code: 'EPERM' }) + ) + + expect(status.result.app).toMatchObject({ running: true, pid: 424242 }) + expect(status.result.runtime.state).toBe('starting') + expect(status.result.graph.state).toBe('starting') + }) + + it('still reports a stale bootstrap when the host proves the pid is gone', async () => { + const status = await statusWithUnreachableRuntime( + Object.assign(new Error('kill ESRCH'), { code: 'ESRCH' }) + ) + + expect(status.result.app).toMatchObject({ running: false, pid: null }) + expect(status.result.runtime.state).toBe('stale_bootstrap') + expect(status.result.graph.state).toBe('not_running') + }) +}) + describe('projectRemoteAppStatus', () => { function remoteStatus(overrides: Partial = {}): RuntimeStatus { return { diff --git a/src/cli/runtime/status.ts b/src/cli/runtime/status.ts index 8736f4cc177..ad30f97a96a 100644 --- a/src/cli/runtime/status.ts +++ b/src/cli/runtime/status.ts @@ -106,7 +106,9 @@ function isProcessRunning(pid: number | null | undefined): boolean { try { process.kill(pid, 0) return true - } catch { - return false + } catch (error) { + // Why: only ESRCH proves the pid is gone. EPERM means it exists under another uid, and + // reporting that as `stale_bootstrap` calls a live Orca dead. + return !(error instanceof Error && 'code' in error && error.code === 'ESRCH') } } diff --git a/src/cli/specs/core.ts b/src/cli/specs/core.ts index d029b0cd43d..98301b36e53 100644 --- a/src/cli/specs/core.ts +++ b/src/cli/specs/core.ts @@ -250,17 +250,20 @@ export const CORE_COMMAND_SPECS: CommandSpec[] = [ path: ['terminal', 'create'], summary: 'Create a terminal session in the current worktree', usage: - 'orca terminal create [--worktree ] [--title ] [--command ] [--focus] [--json]', - allowedFlags: [...GLOBAL_FLAGS, 'worktree', 'command', 'title', 'focus'], + 'orca terminal create [--worktree ] [--title ] [--command ] [--shell ] [--focus] [--json]', + allowedFlags: [...GLOBAL_FLAGS, 'worktree', 'command', 'shell', 'title', 'focus'], notes: [ 'Creates a visible terminal tab without switching focus when possible; falls back to a background handle if the UI cannot adopt it. Pass --focus to switch to it.', - 'Use this, not worktree create, for a fresh agent in the current checkout.' + 'Use this, not worktree create, for a fresh agent in the current checkout.', + '--shell picks the shell the terminal IS on a Windows host (cmd.exe, powershell.exe, pwsh.exe, wsl.exe, bash.exe, git-bash); --command is typed into whatever shell the host started, so `--command cmd.exe` leaves a cmd running INSIDE the default shell and exiting it drops back to that shell.', + 'A host that cannot apply --shell refuses the create rather than quietly spawning its default shell: macOS and Linux execution hosts spawn the login shell, terminals routed over SSH resolve their shell on the SSH host, a --shell that contradicts the project execution runtime (WSL vs Windows host) is refused, and an Orca host older than --shell is refused by the CLI.' ], examples: [ 'orca terminal create --json', 'orca terminal create --worktree active --command "codex" --json', 'orca terminal create --worktree path:/projects/myapp --title "RUNNER" --command "opencode"', - 'orca terminal create --worktree path:/projects/myapp --command "opencode" --focus' + 'orca terminal create --worktree path:/projects/myapp --command "opencode" --focus', + 'orca terminal create --worktree path:C:/src/app --shell cmd.exe --json' ] }, { diff --git a/src/main/agent-launch/agent-launch-executor.test.ts b/src/main/agent-launch/agent-launch-executor.test.ts new file mode 100644 index 00000000000..092262470a8 --- /dev/null +++ b/src/main/agent-launch/agent-launch-executor.test.ts @@ -0,0 +1,248 @@ +/** + * The executor's ordering contract, which is the defect this module exists to remove. + * + * The old shape created a new worktree agent-first, so its startup terminal WAS the agent and the + * structured branch below it could not be reached for any new worktree. The assertions that matter + * here are therefore about *order and arguments*, not just the returned mode: a structured launch + * must create the worktree with `startupAgent: undefined`, and it must ask the host only after the + * workspace exists. + */ + +import { describe, expect, it, vi } from 'vitest' +import { + AgentLaunchStructuredSessionRefusedError, + executeAgentLaunch, + type AgentLaunchExecution +} from './agent-launch-executor' +import type { AgentLaunchIntent } from '../../shared/agent-launch-intent' + +const STRUCTURED_PREFERENCE = { + experimentalNativeChat: true, + experimentalStructuredNativeChat: true, + openAgentTabsInChatByDefault: true +} + +function harness(options: { + settings?: Record | null + createSupport?: { supported: boolean; reason?: 'agent' | 'remote' | 'wsl' } + createSupportThrows?: boolean + structuredCreateError?: Error +}) { + const calls: string[] = [] + const createWorktree = vi.fn( + async (args: { create: Record; startupAgent: string | undefined }) => { + calls.push(`createWorktree(startupAgent=${String(args.startupAgent)})`) + return { + worktreeId: 'wt-new', + startupTerminalHandle: args.startupAgent ? 'term_agent_first' : undefined + } + } + ) + const getStructuredAgentSessionCreateSupport = vi.fn(async () => { + calls.push('createSupport') + if (options.createSupportThrows) { + throw new Error('host unreachable') + } + return options.createSupport ?? { supported: true } + }) + const createStructuredSession = vi.fn(async () => { + calls.push('createStructuredSession') + if (options.structuredCreateError) { + throw options.structuredCreateError + } + return { sessionId: 'sess-1', handle: 'handle_structured' } + }) + const createTerminalAgent = vi.fn(async () => { + calls.push('createTerminalAgent') + return { handle: 'term_1' } + }) + const runtime = { + getClientSettings: () => + options.settings === undefined ? STRUCTURED_PREFERENCE : options.settings, + getStructuredAgentSessionCreateSupport + } + return { + calls, + createWorktree, + createStructuredSession, + createTerminalAgent, + run: (intent: AgentLaunchIntent) => + executeAgentLaunch({ + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the stub implements only the two runtime methods the executor reaches, and each test asserts the calls made, so an omitted method throws rather than reading a wrong value. + runtime: runtime as unknown as AgentLaunchExecution['runtime'], + intent, + surfaces: { createStructuredSession, createTerminalAgent }, + workspaces: { createWorktree } + }) + } +} + +const CREATE_INTENT: AgentLaunchIntent = { + agent: 'claude', + target: { kind: 'create-worktree', create: { repo: 'id:repo-1', name: 'task' } } +} + +describe('a structured launch that creates its own worktree', () => { + it('creates the worktree with no startup agent, then asks the host, then opens a session', async () => { + const h = harness({}) + const result = await h.run(CREATE_INTENT) + + // The whole defect in one assertion: the worktree must not be created agent-first. + expect(h.calls).toEqual([ + 'createWorktree(startupAgent=undefined)', + 'createSupport', + 'createStructuredSession' + ]) + expect(result.outcome).toEqual({ + kind: 'structured', + sessionId: 'sess-1', + handle: 'handle_structured' + }) + expect(result.worktreeId).toBe('wt-new') + expect(result.receipt.mode).toBe('structured') + }) + + it('asks the host only after the workspace exists, never before', async () => { + const h = harness({}) + await h.run(CREATE_INTENT) + expect(h.calls.indexOf('createSupport')).toBeGreaterThan( + h.calls.indexOf('createWorktree(startupAgent=undefined)') + ) + }) + + it('falls back to a terminal in the worktree it just created when the host refuses', async () => { + const h = harness({ createSupport: { supported: false, reason: 'wsl' } }) + const result = await h.run(CREATE_INTENT) + + expect(h.calls).toEqual([ + 'createWorktree(startupAgent=undefined)', + 'createSupport', + 'createTerminalAgent' + ]) + expect(result.outcome).toEqual({ kind: 'terminal', handle: 'term_1' }) + // Not a failed launch, and the workspace is the one just created. + expect(result.worktreeId).toBe('wt-new') + expect(result.receipt).toMatchObject({ mode: 'terminal', reason: 'wsl_execution_runtime' }) + }) + + it('falls back to a terminal when the host cannot be reached at all', async () => { + const h = harness({ createSupportThrows: true }) + const result = await h.run(CREATE_INTENT) + expect(result.outcome.kind).toBe('terminal') + expect(result.receipt).toMatchObject({ reason: 'structured_support_unknown' }) + }) + + it('falls back only for a definitive structured refusal after the worktree exists', async () => { + const h = harness({ + structuredCreateError: new AgentLaunchStructuredSessionRefusedError( + 'structured_agent_session_unsupported', + 'unsupported' + ) + }) + const result = await h.run(CREATE_INTENT) + + expect(h.calls).toEqual([ + 'createWorktree(startupAgent=undefined)', + 'createSupport', + 'createStructuredSession', + 'createTerminalAgent' + ]) + expect(result.outcome).toEqual({ kind: 'terminal', handle: 'term_1' }) + expect(result.receipt).toMatchObject({ + mode: 'terminal', + reason: 'structured_unsupported_on_host' + }) + }) + + it('does not create a duplicate terminal when structured creation is unknown', async () => { + const h = harness({ + structuredCreateError: new AgentLaunchStructuredSessionRefusedError( + 'agent_session_operation_unknown', + 'unknown' + ) + }) + + await expect(h.run(CREATE_INTENT)).rejects.toThrow('unknown') + expect(h.calls).toEqual([ + 'createWorktree(startupAgent=undefined)', + 'createSupport', + 'createStructuredSession' + ]) + }) + + it('strips a stale startupAgent out of a migrated create payload', async () => { + const h = harness({}) + await h.run({ + agent: 'claude', + target: { + kind: 'create-worktree', + // Exactly what mobile sends `worktree.create` today. + create: { repo: 'id:repo-1', name: 'task', startupAgent: 'claude', startupDraft: 'url' } + } + }) + const passed = h.createWorktree.mock.calls[0]?.[0] + expect(passed?.create).not.toHaveProperty('startupAgent') + expect(passed?.create).not.toHaveProperty('startupDraft') + expect(passed?.create).toMatchObject({ repo: 'id:repo-1', name: 'task' }) + }) +}) + +describe('a launch the user did not ask to be structured', () => { + it('creates the worktree agent-first and never asks the host', async () => { + const h = harness({ settings: null }) + const result = await h.run(CREATE_INTENT) + + // Agent-first is preserved for PTY launches: it is what sequences the agent's startup command + // behind the setup runner, so the wait-for-setup gate comes for free. + expect(h.calls).toEqual(['createWorktree(startupAgent=claude)']) + expect(result.outcome).toEqual({ kind: 'terminal', handle: 'term_agent_first' }) + expect(result.receipt).toMatchObject({ mode: 'terminal', reason: 'user_default' }) + }) +}) + +describe('a launch into a workspace that already exists', () => { + it('opens a session without creating anything', async () => { + const h = harness({}) + const result = await h.run({ agent: 'codex', target: { kind: 'existing', worktree: 'wt-7' } }) + expect(h.calls).toEqual(['createSupport', 'createStructuredSession']) + expect(h.createWorktree).not.toHaveBeenCalled() + expect(result.worktreeId).toBe('wt-7') + }) + + it('reuses a running terminal without creating or asking', async () => { + const h = harness({}) + const result = await h.run({ + agent: 'claude', + target: { kind: 'existing', worktree: 'wt-7' }, + reuseTerminal: { handle: 'term_live' } + }) + expect(h.calls).toEqual([]) + expect(result.outcome).toEqual({ kind: 'terminal', handle: 'term_live' }) + expect(result.receipt).toMatchObject({ mode: 'terminal', reason: 'reused_terminal' }) + }) +}) + +describe('an agent with no structured session', () => { + it('stays a terminal without asking the host', async () => { + const h = harness({}) + const result = await h.run({ agent: 'grok', target: { kind: 'existing', worktree: 'wt-7' } }) + expect(h.calls).toEqual(['createTerminalAgent']) + expect(result.receipt).toMatchObject({ reason: 'agent_without_structured_session' }) + }) +}) + +describe('the prompt receipt', () => { + it('reports a requested prompt as undelivered rather than omitting it', async () => { + const h = harness({}) + const result = await h.run({ + ...CREATE_INTENT, + prompt: { text: 'do the thing', delivery: 'draft' } + }) + expect(result.prompt).toEqual({ delivery: 'draft', delivered: false }) + }) + + it('omits the receipt when no prompt was requested', async () => { + const h = harness({}) + expect((await h.run(CREATE_INTENT)).prompt).toBeUndefined() + }) +}) diff --git a/src/main/agent-launch/agent-launch-executor.ts b/src/main/agent-launch/agent-launch-executor.ts new file mode 100644 index 00000000000..3f02aaafb36 --- /dev/null +++ b/src/main/agent-launch/agent-launch-executor.ts @@ -0,0 +1,253 @@ +/** + * The one place an agent is actually started — for the surfaces moved onto it, which today is + * `agent.launch` alone. Orchestration dispatch, mobile create, CLI create and the desktop agent + * tab each still start agents their own way; moving them here is later stack work. + * + * The mode decision is duplicated rather than shared: `agent-launch-mode` is a surface-neutral + * second copy of orchestration's `orchestration-worker-start-mode`, which is unchanged and still + * the one orchestration uses, with nothing enforcing agreement between them. That cutover is later + * stack work too. What this module adds is the *sequencing*, and the sequencing is where the bug + * was: + * + * create the worktree agent-first -> its startup terminal IS the agent + * -> the structured branch below it is unreachable + * + * so every new-worktree launch was a PTY no matter what the user's default said. The order here is + * the inverse, and it is the whole point of the module: when the preference is structured the + * worktree is created with NO startup agent, the executing host is then asked whether it can host + * a session for the workspace that now exists, and only then is a surface created. A refusal + * becomes a terminal agent in the worktree just created, never a failed launch. + * + * The host verdict cannot be hoisted above creation: `agentSession.createSupport` can only answer + * for a workspace it can resolve. That is why the decision is in two halves rather than one. + * + * What genuinely differs per surface is only how a surface is *built* — an orchestration worker's + * session takes a dispatch hold and a mailbox that a plain launch must not take — so that is + * injected as a factory instead of branched on here. + */ + +import type { + AgentLaunchIntent, + AgentLaunchResult, + AgentLaunchTarget +} from '../../shared/agent-launch-intent' +import { withoutReservedAgentCreateFields } from '../../shared/agent-launch-intent' +import type { TuiAgent } from '../../shared/tui-agent' +import type { OrcaRuntimeService } from '../runtime/orca-runtime' +import { isDefinitiveAgentSessionCreateRefusal } from '../../shared/agent-session-definitive-refusal' +import { + decideAgentLaunchMode, + readAgentLaunchModeSettings, + resolveAgentLaunchModeOnHost, + type AgentLaunchModeReceipt, + type AgentLaunchModeVocabulary, + DEFAULT_LAUNCH_VOCABULARY +} from './agent-launch-mode' + +/** How a surface is built once the executor has decided which one. Injected because an + * orchestration worker's session carries a dispatch hold and a mailbox a plain launch must not + * take, while the decision and ordering above it are identical. */ +export type AgentLaunchSurfaceFactory = { + createStructuredSession(args: { + worktreeId: string + agent: 'claude' | 'codex' + options?: Readonly> + }): Promise<{ sessionId: string; handle: string }> + createTerminalAgent(args: { + worktreeId: string + agent: TuiAgent + options?: Readonly> + }): Promise<{ handle: string; warning?: string }> +} + +/** A structured create refusal that proves no session was committed, so the launch may downgrade. */ +export class AgentLaunchStructuredSessionRefusedError extends Error { + readonly code: string + + constructor(code: string, message: string) { + super(message) + this.name = 'AgentLaunchStructuredSessionRefusedError' + this.code = code + } +} + +/** Creating the workspace, when the intent asks for one. Injected so orchestration keeps recording + * its own worktree stages and residual-resource effects around the same call. */ +export type AgentLaunchWorkspaceFactory = { + createWorktree(args: { + create: Readonly> + /** Set only when the settled mode is a terminal agent: agent-first creation sequences the + * agent's startup command behind the setup runner, which is how a PTY launch gets its + * wait-for-setup gate for free. A structured launch has no startup command to sequence and + * must await that gate explicitly instead. */ + startupAgent: TuiAgent | undefined + }): Promise<{ worktreeId: string; startupTerminalHandle: string | undefined }> +} + +export type AgentLaunchExecution = { + runtime: Pick + intent: AgentLaunchIntent + surfaces: AgentLaunchSurfaceFactory + workspaces?: AgentLaunchWorkspaceFactory + vocabulary?: AgentLaunchModeVocabulary + /** Attributes a throw to the step that was running, the way a dispatch's own stages do. */ + onStage?: (stage: 'worktree_create' | 'mode_settle' | 'surface_create') => void +} + +export async function executeAgentLaunch( + execution: AgentLaunchExecution +): Promise { + const { intent, runtime } = execution + const vocabulary = execution.vocabulary ?? DEFAULT_LAUNCH_VOCABULARY + const settings = readAgentLaunchModeSettings(runtime) + const preflight = decideAgentLaunchMode({ + placement: { + agent: intent.agent, + ...(intent.reuseTerminal ? { terminal: intent.reuseTerminal.handle } : {}) + }, + settings, + vocabulary + }) + + // A reused terminal already downgraded in the pre-flight; there is nothing to create. + if (intent.reuseTerminal) { + return { + outcome: { kind: 'terminal', handle: intent.reuseTerminal.handle }, + worktreeId: existingWorktreeId(intent.target), + receipt: preflight, + ...promptReceipt(intent) + } + } + + const placed = await resolveWorkspace(execution, preflight) + // Agent-first creation already produced the agent, so the pre-flight verdict is final. + if (placed.startupTerminalHandle) { + return { + outcome: { kind: 'terminal', handle: placed.startupTerminalHandle }, + worktreeId: placed.worktreeId, + receipt: preflight, + ...promptReceipt(intent) + } + } + + execution.onStage?.('mode_settle') + let settled = await resolveAgentLaunchModeOnHost( + runtime, + preflight, + placed.worktreeId, + intent.agent, + vocabulary + ) + + execution.onStage?.('surface_create') + let outcome: AgentLaunchResult['outcome'] + try { + outcome = await createSurface(execution, placed.worktreeId, settled) + } catch (error) { + // The structured create path distinguishes a definitive pre-commit refusal from an unknown + // outcome. Only the former is safe to replace with a terminal in the same workspace; retrying + // after an unknown attach outcome could create two agents. + if ( + settled.mode !== 'structured' || + !(error instanceof AgentLaunchStructuredSessionRefusedError) || + !isDefinitiveAgentSessionCreateRefusal(error.code) + ) { + throw error + } + settled = downgradeAgentLaunchModeForStructuredRefusal(settled, vocabulary) + outcome = await execution.surfaces + .createTerminalAgent({ + worktreeId: placed.worktreeId, + agent: intent.agent, + ...(intent.sessionOptions ? { options: intent.sessionOptions } : {}) + }) + .then((terminal) => ({ + kind: 'terminal' as const, + handle: terminal.handle, + ...(terminal.warning ? { warning: terminal.warning } : {}) + })) + } + return { + outcome, + worktreeId: placed.worktreeId, + receipt: settled, + ...promptReceipt(intent) + } +} + +function downgradeAgentLaunchModeForStructuredRefusal( + receipt: AgentLaunchModeReceipt, + vocabulary: AgentLaunchModeVocabulary +): AgentLaunchModeReceipt { + return { + mode: 'terminal', + preferred: receipt.preferred, + reason: 'structured_unsupported_on_host', + detail: `Your default is a structured chat session, but the host refused to create one here; started ${vocabulary.terminal} instead.` + } +} + +async function resolveWorkspace( + execution: AgentLaunchExecution, + preflight: AgentLaunchModeReceipt +): Promise<{ worktreeId: string; startupTerminalHandle: string | undefined }> { + const { intent } = execution + if (intent.target.kind === 'existing') { + return { worktreeId: intent.target.worktree, startupTerminalHandle: undefined } + } + const workspaces = execution.workspaces + if (!workspaces) { + throw new Error('agent_launch_workspace_factory_required') + } + execution.onStage?.('worktree_create') + return workspaces.createWorktree({ + // A caller migrating from `worktree.create` passes its existing params; a stale `startupAgent` + // in there would re-create the agent-first path this executor exists to replace. + create: withoutReservedAgentCreateFields(intent.target.create), + startupAgent: preflight.mode === 'structured' ? undefined : intent.agent + }) +} + +async function createSurface( + execution: AgentLaunchExecution, + worktreeId: string, + settled: AgentLaunchModeReceipt +): Promise { + const { intent, surfaces } = execution + if (settled.mode === 'structured' && isStructuredProvider(intent.agent)) { + const session = await surfaces.createStructuredSession({ + worktreeId, + agent: intent.agent, + ...(intent.sessionOptions ? { options: intent.sessionOptions } : {}) + }) + return { kind: 'structured', sessionId: session.sessionId, handle: session.handle } + } + const terminal = await surfaces.createTerminalAgent({ + worktreeId, + agent: intent.agent, + ...(intent.sessionOptions ? { options: intent.sessionOptions } : {}) + }) + return { + kind: 'terminal', + handle: terminal.handle, + ...(terminal.warning ? { warning: terminal.warning } : {}) + } +} + +function isStructuredProvider(agent: TuiAgent): agent is 'claude' | 'codex' { + return agent === 'claude' || agent === 'codex' +} + +function existingWorktreeId(target: AgentLaunchTarget): string { + return target.kind === 'existing' ? target.worktree : '' +} + +/** Prompt delivery is the caller's, not the executor's: a PTY paste is observed by whoever owns + * the pane, and a structured first turn is sent through the session. The executor reports the + * requested delivery back undelivered so a caller cannot mistake silence for delivery. */ +function promptReceipt(intent: AgentLaunchIntent): Pick { + if (!intent.prompt) { + return {} + } + return { prompt: { delivery: intent.prompt.delivery, delivered: false } } +} diff --git a/src/main/claude/claude-structured-acquisition-launch.ts b/src/main/claude/claude-structured-acquisition-launch.ts new file mode 100644 index 00000000000..5e2f4de9b70 --- /dev/null +++ b/src/main/claude/claude-structured-acquisition-launch.ts @@ -0,0 +1,83 @@ +import { + AgentSessionAcquisitionExitUnprovenError, + AgentSessionPreSpawnError, + type StructuredAgentSessionAcquireInput +} from '../native-chat/agent-session-wire/structured-agent-session-adapter' +import { withAgentSessionCreatePhase } from '../observability/agent-session-instrumentation' +import type { ClaudeRewindAttempt } from './claude-structured-rewind' +import type { ClaudeStructuredLaunch } from './claude-structured-launch-resolution' +import { + cancelClaudeAcquisitionAttempt, + type ClaudeAcquisitionAttempt, + type ClaudeAcquisitionRegistry, + type ClaudeAcquireCallbacks, + type ClaudeSession, + type ClaudeSessionExit, + type ClaudeStructuredSessionAdapterDeps +} from './claude-structured-session-state' +import { + claudeAcquisitionCleanupError, + closeClaudePublishedSessionForDeps +} from './claude-structured-session-close' + +export async function resolveClaudeAcquisitionLaunch(args: { + input: StructuredAgentSessionAcquireInput + deps: ClaudeStructuredSessionAdapterDeps + sessions: Map + acquisitions: ClaudeAcquisitionRegistry + exits: Map + callbacks: ClaudeAcquireCallbacks + previous: ClaudeAcquisitionAttempt | undefined + attempt: ClaudeAcquisitionAttempt + rewind: ClaudeRewindAttempt +}): Promise { + const { input, deps, sessions, acquisitions, exits, callbacks, previous, attempt, rewind } = args + const sessionId = input.identity.sessionId + return withAgentSessionCreatePhase('auth_settle', input.recordPhase, async () => { + if (previous && !(await cancelClaudeAcquisitionAttempt(previous))) { + acquisitions.restoreIfCurrent(sessionId, attempt, previous) + throw new AgentSessionAcquisitionExitUnprovenError( + new Error(`claude acquisition for session ${sessionId} could not be stopped`) + ) + } + acquisitions.assertCurrent(sessionId, attempt) + let resumeSession = sessions.get(sessionId) + if (!(await closeClaudePublishedSessionForDeps(sessions, sessionId, deps))) { + throw new AgentSessionAcquisitionExitUnprovenError( + new Error(`claude session ${sessionId} could not be stopped`) + ) + } + const retainedExit = exits.get(sessionId) + if (retainedExit) { + const firstProof = retainedExit.closePromise ? await retainedExit.closePromise : false + const proven = firstProof || (await retainedExit.connection.close().catch(() => false)) + if (!proven) { + throw claudeAcquisitionCleanupError(retainedExit.connection, retainedExit.error) + } + // The superseded child must settle before its durable resume identity is reused. + await callbacks.settleExit(sessionId, retainedExit) + resumeSession ??= retainedExit.session + } + acquisitions.assertCurrent(sessionId, attempt) + const launchIdentity = resumeSession + ? { + ...input.identity, + providerHandle: { + kind: 'claude' as const, + sessionId: resumeSession.providerSessionId, + leafUuid: resumeSession.leafUuid + } + } + : input.identity + const launch = await deps + .resolveLaunch({ identity: launchIdentity }) + .catch((error: unknown) => { + throw error instanceof AgentSessionPreSpawnError + ? error + : new AgentSessionPreSpawnError(error) + }) + rewind.applyLaunch(launch, deps) + acquisitions.assertCurrent(sessionId, attempt) + return launch + }) +} diff --git a/src/main/claude/claude-structured-session-acquisition.ts b/src/main/claude/claude-structured-session-acquisition.ts index 8870a0e1daa..eb7bc9b7251 100644 --- a/src/main/claude/claude-structured-session-acquisition.ts +++ b/src/main/claude/claude-structured-session-acquisition.ts @@ -1,6 +1,5 @@ import { ClaudeRewindAttempt, proveClaudeRewindRecovery } from './claude-structured-rewind' import { - AgentSessionAcquisitionExitUnprovenError, AgentSessionPreSpawnError, type AgentSessionAcquisition, type StructuredAgentSessionAcquireInput @@ -37,7 +36,6 @@ import { } from './claude-structured-session-acquisition-options' import { createClaudeSessionPublication } from './claude-structured-session-publication' import { - cancelClaudeAcquisitionAttempt, mintClaudeAcquisitionGeneration, type ClaudeAcquisitionRegistry, type ClaudeSession, @@ -45,12 +43,10 @@ import { type ClaudeStructuredSessionAdapterDeps, type ClaudeAcquireCallbacks } from './claude-structured-session-state' -import { - claudeAcquisitionCleanupError, - closeClaudePublishedSessionForDeps, - resolveClaudeAcquisitionError -} from './claude-structured-session-close' +import { resolveClaudeAcquisitionError } from './claude-structured-session-close' import { readClaudeTranscriptEntryUuid } from './claude-tui-exit' +import { withAgentSessionCreatePhase } from '../observability/agent-session-instrumentation' +import { resolveClaudeAcquisitionLaunch } from './claude-structured-acquisition-launch' export const CLAUDE_STRUCTURED_INIT_TIMEOUT_MS = 10_000 @@ -148,96 +144,68 @@ export async function acquireClaudeSession({ }) try { - if (previous && !(await cancelClaudeAcquisitionAttempt(previous))) { - acquisitions.restoreIfCurrent(sessionId, attempt, previous) - throw new AgentSessionAcquisitionExitUnprovenError( - new Error(`claude acquisition for session ${sessionId} could not be stopped`) - ) - } - acquisitions.assertCurrent(sessionId, attempt) - let resumeSession = sessions.get(sessionId) - if (!(await closeClaudePublishedSessionForDeps(sessions, sessionId, deps))) { - throw new AgentSessionAcquisitionExitUnprovenError( - new Error(`claude session ${sessionId} could not be stopped`) - ) - } - // A first-hand exit that has not yet proved its full tree still owns a cleanup - // obligation; never let a new acquisition hide that evidence by omission. - const retainedExit = exits.get(sessionId) - if (retainedExit) { - const firstProof = retainedExit.closePromise ? await retainedExit.closePromise : false - const proven = firstProof || (await retainedExit.connection.close().catch(() => false)) - if (!proven) { - throw claudeAcquisitionCleanupError(retainedExit.connection, retainedExit.error) - } - // The old child is superseded by this acquisition. Settle its lifecycle - // before discarding the retained proof so its cursor and callbacks are - // cleaned up exactly once. - await callbacks.settleExit(sessionId, retainedExit) - resumeSession ??= retainedExit.session - } - acquisitions.assertCurrent(sessionId, attempt) - // Both close paths persist their final leaf, so launch validates that durable head. - const launchIdentity = resumeSession - ? { - ...input.identity, - providerHandle: { - kind: 'claude' as const, - sessionId: resumeSession.providerSessionId, - leafUuid: resumeSession.leafUuid - } - } - : input.identity - const launch = await deps - .resolveLaunch({ identity: launchIdentity }) - .catch((error: unknown) => { - throw error instanceof AgentSessionPreSpawnError - ? error - : new AgentSessionPreSpawnError(error) - }) - rewind.applyLaunch(launch, deps) + const launch = await resolveClaudeAcquisitionLaunch({ + input, + deps, + sessions, + acquisitions, + exits, + callbacks, + previous, + attempt, + rewind + }) expectedProviderSessionId = launch.providerSessionId observedLeafUuid = launch.resumeLeafUuid - acquisitions.assertCurrent(sessionId, attempt) const open = deps.openConnection ?? openClaudeStreamJsonConnection - const connection = await open( - { - pathToClaudeCodeExecutable: launch.pathToClaudeCodeExecutable, - options: launch.options, - cwd: launch.cwd, - env: { - ...launch.env, - [CLAUDE_SPAWN_TOKEN_ENV]: input.spawnToken, - // Compared against what the child would otherwise inherit, so the record's - // account home still wins over a diverging overlay without a needless pin. - // (`process` is shadowed by a local later in this function, so it is not named here.) - ...claudeConfigDirEnvPatch(launch.claudeConfigDir, launch.env ? { env: launch.env } : {}) - } - }, - { - onMessage, - canUseTool, - onUserDialog, - onFault: (error) => { - if (!attempt.published) { - initDeadline.reject(error) + const connection = await withAgentSessionCreatePhase('spawn', input.recordPhase, () => + open( + { + pathToClaudeCodeExecutable: launch.pathToClaudeCodeExecutable, + options: launch.options, + cwd: launch.cwd, + env: { + ...launch.env, + [CLAUDE_SPAWN_TOKEN_ENV]: input.spawnToken, + // Compared against what the child would otherwise inherit, so the record's + // account home still wins over a diverging overlay without a needless pin. + // (`process` is shadowed by a local later in this function, so it is not named here.) + ...claudeConfigDirEnvPatch( + launch.claudeConfigDir, + launch.env ? { env: launch.env } : {} + ) } }, - onExit: (error) => { - if (!attempt.published) { - initDeadline.reject(error) + { + onMessage, + canUseTool, + onUserDialog, + onFault: (error) => { + if (!attempt.published) { + initDeadline.reject(error) + } + }, + onExit: (error) => { + if (!attempt.published) { + initDeadline.reject(error) + } + callbacks.handleExit(sessionId, attempt, error) } - callbacks.handleExit(sessionId, attempt, error) } - } + ) ) attempt.connection = connection acquisitions.assertCurrent(sessionId, attempt) initDeadline.start() - const [initialization, init] = await Promise.all([ - requestClaudeInitialization(connection, sessionId, initTimeoutMs), - initDeadline.promise - ]) + const [initialization, init] = await withAgentSessionCreatePhase( + 'init', + input.recordPhase, + () => + Promise.all([ + requestClaudeInitialization(connection, sessionId, initTimeoutMs), + initDeadline.promise + ]) + ) const models = readClaudeModels(initialization) callbacks.deliver(attempt, sessionId, () => callbacks.emit(liveSession, input.events, { type: 'options', sessionId, models }) @@ -274,36 +242,43 @@ export async function acquireClaudeSession({ if (connection.closed) { throw new Error(`claude stream-json for session ${sessionId} exited while being acquired`) } - const publication = createClaudeSessionPublication({ - connection, - init, - initialization, - claudeConfigDir: launch.claudeConfigDir, - leafUuid: observedLeafUuid, - fence: input.fence, - effort: readClaudeSettingsEffort(settings), - ...claudeStructuredSessionPublicationOptions(acquisitionOptions), - resumed: launch.resumed, - prompts, - translator, - events: input.events, - process, - acquisitionGeneration: mintClaudeAcquisitionGeneration(deps), - options: acquisitionOptions.options, - capabilities: readClaudeCapabilities(init, initialization), - ...(deps.mintLinkId ? { linkId: deps.mintLinkId() } : {}), - observedAt: deps.now?.() ?? Date.now() - }) + const publication = await withAgentSessionCreatePhase('publish', input.recordPhase, async () => + createClaudeSessionPublication({ + connection, + init, + initialization, + claudeConfigDir: launch.claudeConfigDir, + leafUuid: observedLeafUuid, + fence: input.fence, + effort: readClaudeSettingsEffort(settings), + ...claudeStructuredSessionPublicationOptions(acquisitionOptions), + resumed: launch.resumed, + prompts, + translator, + events: input.events, + process, + acquisitionGeneration: mintClaudeAcquisitionGeneration(deps), + options: acquisitionOptions.options, + capabilities: readClaudeCapabilities(init, initialization), + ...(deps.mintLinkId ? { linkId: deps.mintLinkId() } : {}), + observedAt: deps.now?.() ?? Date.now() + }) + ) + const acquired: AgentSessionAcquisition = publication.acquisition liveSession = publication.session - await restoreClaudeStructuredSessionOptions(liveSession, deps.requestTimeoutMs) + await withAgentSessionCreatePhase('restore_options', input.recordPhase, () => + restoreClaudeStructuredSessionOptions(liveSession!, deps.requestTimeoutMs) + ) acquisitions.assertCurrent(sessionId, attempt) acquisitions.deleteIfCurrent(sessionId, attempt) - sessions.set(sessionId, liveSession) - attempt.published = true - for (const event of attempt.buffered.splice(0)) { - event() - } - return publication.acquisition + await withAgentSessionCreatePhase('publish', input.recordPhase, async () => { + sessions.set(sessionId, liveSession!) + attempt.published = true + for (const event of attempt.buffered.splice(0)) { + event() + } + }) + return acquired } catch (error) { initDeadline.clear() const acquisitionError = await resolveClaudeAcquisitionError({ diff --git a/src/main/claude/claude-structured-session-close.test.ts b/src/main/claude/claude-structured-session-close.test.ts index 0de5049a71c..46bda78cacd 100644 --- a/src/main/claude/claude-structured-session-close.test.ts +++ b/src/main/claude/claude-structured-session-close.test.ts @@ -11,8 +11,42 @@ import { identityFor } from './claude-structured-session-test-support' import type { AgentSessionBackgroundTaskState } from '../../shared/agent-session-wire' +import { AgentSessionAcquisitionRootExitObservedError } from '../native-chat/agent-session-wire/structured-agent-session-adapter' +import { ClaudePromptRegistry } from './claude-structured-prompt-replies' +import { closeClaudeSession } from './claude-structured-session-close' +import { ClaudeAcquisitionRegistry } from './claude-structured-session-state' describe('Claude published session close lifecycle', () => { + it('reports a proven root exit when published-session close cannot prove descendants', async () => { + const claude = fakeClaude() + const adapter = adapterFor(claude) + await adapter.acquire({ identity: identityFor(), fence: 7, spawnToken: 'spawn-9' }) + const connection = claude.connections[0]! + connection.exitVerdict = { root: 'exited', tree: 'unverifiable' } + connection.close = vi.fn<() => Promise>().mockResolvedValue(false) + + await expect(adapter.closeSession('session-1')).rejects.toBeInstanceOf( + AgentSessionAcquisitionRootExitObservedError + ) + }) + + it('reports the same root-exit verdict while cancelling acquisition', async () => { + const claude = fakeClaude({ + unprovenCloseVerdict: { root: 'exited', tree: 'unverifiable' } + }) + const acquisitions = new ClaudeAcquisitionRegistry() + const { attempt } = acquisitions.start('session-1', new ClaudePromptRegistry()) + attempt.connection = await claude.openConnection({ + pathToClaudeCodeExecutable: 'claude', + options: {}, + cwd: '/work/repo' + }) + + await expect( + closeClaudeSession({ sessionId: 'session-1', sessions: new Map(), acquisitions }) + ).rejects.toBeInstanceOf(AgentSessionAcquisitionRootExitObservedError) + }) + it('ends the session even when the durable handle write rejects', async () => { const claude = fakeClaude() const events: ClaudeStructuredSessionEvent[] = [] diff --git a/src/main/claude/claude-structured-session-close.ts b/src/main/claude/claude-structured-session-close.ts index 52097f7ee1e..431d6e38ab8 100644 --- a/src/main/claude/claude-structured-session-close.ts +++ b/src/main/claude/claude-structured-session-close.ts @@ -98,6 +98,14 @@ async function finalizeClaudePublishedSession( prompt.settle(null) } if ((await session.connection.close()) !== true) { + const cleanupError = claudeAcquisitionCleanupError( + session.connection, + new Error('provider close unproven') + ) + // Why: the owner can release proven root-exit/processless sessions; genuinely unknown exits retry. + if (!(cleanupError instanceof AgentSessionAcquisitionExitUnprovenError)) { + throw cleanupError + } return false } if (session.backgroundTasks.clear()) { @@ -263,6 +271,14 @@ export async function closeClaudeSession(input: { }): Promise { const attempt = input.acquisitions.get(input.sessionId) if (!(await cancelClaudeAcquisitionAttempt(attempt))) { + const cleanupError = claudeAcquisitionCleanupError( + attempt?.connection, + new Error('acquisition cancel unproven') + ) + // Why: cancellation must preserve the same actionable verdict as published-session close. + if (!(cleanupError instanceof AgentSessionAcquisitionExitUnprovenError)) { + throw cleanupError + } return false } if (attempt) { diff --git a/src/main/git/canonical-repo-key.ts b/src/main/git/canonical-repo-key.ts index 1b06423bdc9..76b2d1c3e4e 100644 --- a/src/main/git/canonical-repo-key.ts +++ b/src/main/git/canonical-repo-key.ts @@ -1,3 +1,4 @@ +import type { LocalGitExecOptions } from './repo-default-base-ref' import { toWslExecutionSpace } from '../../shared/wsl-paths' import { gitExecFileAsync } from './runner' import { resolveRevParsePath } from './worktree-path-comparison' @@ -10,7 +11,7 @@ import { resolveRevParsePath } from './worktree-path-comparison' * same repo" means across every worktree that points at it. */ -export type CanonicalRepoKeyOptions = { wslDistro?: string } +export type CanonicalRepoKeyOptions = LocalGitExecOptions const CACHE_MAX = 512 const cache = new Map() diff --git a/src/main/git/command-runner/git-exec-admission-lifetime.test.ts b/src/main/git/command-runner/git-exec-admission-lifetime.test.ts index e603bb3398d..3b4893b35ce 100644 --- a/src/main/git/command-runner/git-exec-admission-lifetime.test.ts +++ b/src/main/git/command-runner/git-exec-admission-lifetime.test.ts @@ -49,6 +49,7 @@ vi.mock('../../../shared/git-fetch-head-lock', async (importOriginal) => { import { gitExecFileAsync, gitExecFileAsyncBuffer } from './git-exec-file' import { execFileCapture } from './exec-file-capture' import { + acquireGitAdmission, GitAdmissionScheduler, _gitAdmissionSnapshotForTests, _resetGitAdmissionForTests @@ -66,6 +67,10 @@ function mockChild(pid: number | undefined = 1234): ChildProcess { return child as unknown as ChildProcess } +async function settleAdmissionGrant(): Promise { + await vi.advanceTimersByTimeAsync(0) +} + describe('git exec admission lifetime', () => { beforeEach(() => { vi.useFakeTimers() @@ -80,12 +85,36 @@ describe('git exec admission lifetime', () => { _resetGitAdmissionForTests() }) + it('keeps the SSH policy probe queued beyond its execution budget until caller cancellation', async () => { + _resetGitAdmissionForTests(new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 0 })) + const holding = acquireGitAdmission({ args: ['status'], cwd: '/repo' }) + await settleAdmissionGrant() + const blocker = await holding + const controller = new AbortController() + const pending = gitExecFileAsync(['fetch', 'origin'], { + cwd: '/repo', + env: { ...process.env, GIT_SSH_COMMAND: '' }, + useConfiguredSshCommandForNetwork: true, + signal: controller.signal + }) + const rejection = expect(pending).rejects.toMatchObject({ name: 'AbortError' }) + await settleAdmissionGrant() + await vi.advanceTimersByTimeAsync(10_000) + expect(_gitAdmissionSnapshotForTests().queued).toBe(1) + expect(execFileMock).not.toHaveBeenCalled() + controller.abort() + await rejection + blocker.release() + expect(_gitAdmissionSnapshotForTests().queued).toBe(0) + }) + it('retains the string-exec permit after timeout settlement until close', async () => { const child = mockChild() execFileMock.mockReturnValue(child) const pending = gitExecFileAsync(['status'], { cwd: '/repo', timeout: 10 }) const rejection = expect(pending).rejects.toThrow('timed out') - await vi.waitFor(() => expect(execFileMock).toHaveBeenCalledOnce()) + await settleAdmissionGrant() + expect(execFileMock).toHaveBeenCalledOnce() await vi.advanceTimersByTimeAsync(10) await rejection @@ -188,7 +217,8 @@ describe('git exec admission lifetime', () => { timeout: 10 }) const rejection = expect(pending).rejects.toThrow('timed out') - await vi.waitFor(() => expect(spawnMock).toHaveBeenCalledOnce()) + await settleAdmissionGrant() + expect(spawnMock).toHaveBeenCalledOnce() await vi.advanceTimersByTimeAsync(2010) expect(_gitAdmissionSnapshotForTests().budgets.general?.baseUsed).toBe(1) @@ -201,6 +231,69 @@ describe('git exec admission lifetime', () => { expect(_gitAdmissionSnapshotForTests().budgets.general?.baseUsed).toBe(0) }) + it.each([false, true])( + 'waits beyond the execution timeout before spawning (buffer: %s)', + async (buffer) => { + _resetGitAdmissionForTests(new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 0 })) + const holding = acquireGitAdmission({ args: ['status'], cwd: '/repo' }) + await settleAdmissionGrant() + const blocker = await holding + const child = mockChild() + let callback: ExecCallback | undefined + execFileMock.mockImplementation((_command, _args, _options, received: ExecCallback) => { + callback = received + return child + }) + const pending = buffer + ? gitExecFileAsyncBuffer(['status'], { cwd: '/repo', timeout: 50 }) + : gitExecFileAsync(['status'], { cwd: '/repo', timeout: 50 }) + await settleAdmissionGrant() + await vi.advanceTimersByTimeAsync(500) + expect(execFileMock).not.toHaveBeenCalled() + expect(_gitAdmissionSnapshotForTests().queued).toBe(1) + blocker.release() + await settleAdmissionGrant() + expect(execFileMock).toHaveBeenCalledOnce() + await vi.advanceTimersByTimeAsync(49) + callback?.(null, buffer ? Buffer.from('ok') : 'ok', buffer ? Buffer.alloc(0) : '') + child.emit('close', 0, null) + expect((await pending).stdout.toString()).toBe('ok') + expect(_gitAdmissionSnapshotForTests().queued).toBe(0) + expect(_gitAdmissionSnapshotForTests().budgets.general?.baseUsed).toBe(0) + } + ) + + it('still reports a caller abort of a queued command as an abort', async () => { + vi.useRealTimers() + _resetGitAdmissionForTests(new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 0 })) + const blocker = mockChild() + let finishBlocker: ExecCallback | undefined + execFileMock.mockImplementation( + (_command: string, _args: string[], _options: unknown, callback: ExecCallback) => { + finishBlocker = callback + return blocker + } + ) + const holding = gitExecFileAsync(['status'], { cwd: '/repo' }) + await vi.waitFor(() => expect(finishBlocker).toBeTypeOf('function')) + + const controller = new AbortController() + const queued = gitExecFileAsync(['status'], { + cwd: '/repo', + timeout: 60_000, + signal: controller.signal + }) + await vi.waitFor(() => expect(_gitAdmissionSnapshotForTests().queued).toBe(1)) + controller.abort() + + await expect(queued).rejects.toMatchObject({ name: 'AbortError' }) + expect(execFileMock).toHaveBeenCalledOnce() + + finishBlocker?.(null, '', '') + blocker.emit('close', 0, null) + await expect(holding).resolves.toEqual({ stdout: '', stderr: '' }) + }) + it('serializes FETCH_HEAD callers before they enter admission', async () => { _resetGitAdmissionForTests(new GitAdmissionScheduler({ networkCap: 1, networkHeadroom: 1 })) const children = new Map() diff --git a/src/main/git/command-runner/git-operation-executor.test.ts b/src/main/git/command-runner/git-operation-executor.test.ts new file mode 100644 index 00000000000..f3f48ea7e47 --- /dev/null +++ b/src/main/git/command-runner/git-operation-executor.test.ts @@ -0,0 +1,74 @@ +import { afterEach, describe, expect, it } from 'vitest' +import { resolveGitAdmissionTier } from './git-operation-executor' +import { + acquireGitAdmission, + GitAdmissionScheduler, + _resetGitAdmissionForTests, + _gitAdmissionSnapshotForTests +} from './git-subprocess-admission' +import { worktreeCreateGit, worktreePreparationGit } from '../worktree-create-git-executor' + +afterEach(() => _resetGitAdmissionForTests()) + +describe('Git operation execution policy', () => { + it('isolates concurrent callers and restores the create policy after nested work', async () => { + const entered = Promise.withResolvers() + const finish = Promise.withResolvers() + const create = worktreeCreateGit.run(async () => { + expect(resolveGitAdmissionTier()).toBe('interactive') + await worktreePreparationGit.run(async () => { + await Promise.resolve() + expect(resolveGitAdmissionTier()).toBe('status') + }) + entered.resolve() + await finish.promise + expect(resolveGitAdmissionTier()).toBe('interactive') + expect(resolveGitAdmissionTier('background')).toBe('background') + }) + await entered.promise + expect(resolveGitAdmissionTier()).toBe('status') + finish.resolve() + await create + expect(resolveGitAdmissionTier()).toBe('status') + }) + + it.each([false, true])( + 'expires inherited policy after completion (failure: %s)', + async (fail) => { + const finishDetached = Promise.withResolvers() + let detached: Promise | undefined + const create = worktreeCreateGit.run(async () => { + detached = finishDetached.promise.then(() => resolveGitAdmissionTier()) + if (fail) { + throw new Error('create failed') + } + }) + await (fail ? expect(create).rejects.toThrow('create failed') : create) + finishDetached.resolve() + await expect(detached).resolves.toBe('status') + } + ) + + it('admits nested commands without priority options while preparation work stays queued', async () => { + _resetGitAdmissionForTests(new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 1 })) + const blocker = await acquireGitAdmission({ args: ['status'], cwd: '/repo' }) + const preparation = worktreePreparationGit.run(() => + acquireGitAdmission({ args: ['status'], cwd: '/repo' }) + ) + try { + await worktreeCreateGit.run(async () => { + const grant = await acquireGitAdmission({ args: ['rev-parse', 'HEAD'], cwd: '/repo' }) + expect(_gitAdmissionSnapshotForTests()).toMatchObject({ + queued: 1, + budgets: { general: { baseUsed: 1, headroomUsed: 1 } } + }) + grant.release() + }) + } finally { + blocker.release() + const grant = await preparation + grant.release() + } + expect(_gitAdmissionSnapshotForTests().queued).toBe(0) + }) +}) diff --git a/src/main/git/command-runner/git-operation-executor.ts b/src/main/git/command-runner/git-operation-executor.ts new file mode 100644 index 00000000000..b32fe644728 --- /dev/null +++ b/src/main/git/command-runner/git-operation-executor.ts @@ -0,0 +1,26 @@ +import { AsyncLocalStorage } from 'node:async_hooks' +import type { GitAdmissionTier } from './git-exec-options' + +const operations = new AsyncLocalStorage<{ tier: GitAdmissionTier; active: boolean }>() + +/** Async context keeps concurrent operations isolated without forwarding a tier through routing options. */ +export function createGitOperationExecutor(tier: GitAdmissionTier) { + return { + async run(operation: () => Promise): Promise { + const scope = { tier, active: true } + return operations.run(scope, async () => { + try { + return await operation() + } finally { + // Timers and detached work must not retain a completed create's priority. + scope.active = false + } + }) + } + } +} + +export function resolveGitAdmissionTier(tier?: GitAdmissionTier): GitAdmissionTier { + const scope = operations.getStore() + return tier ?? (scope?.active ? scope.tier : undefined) ?? 'status' +} diff --git a/src/main/git/command-runner/git-stream-admission-lifetime.test.ts b/src/main/git/command-runner/git-stream-admission-lifetime.test.ts index b4694fc7075..f46189a9ab4 100644 --- a/src/main/git/command-runner/git-stream-admission-lifetime.test.ts +++ b/src/main/git/command-runner/git-stream-admission-lifetime.test.ts @@ -14,6 +14,7 @@ vi.mock('./spawned-command-tree-kill', () => ({ import { gitStreamStdout } from './git-stream-stdout' import { + acquireGitAdmission, GitAdmissionScheduler, _gitAdmissionSnapshotForTests, _resetGitAdmissionForTests @@ -36,7 +37,10 @@ describe('git stream admission lifetime', () => { _resetGitAdmissionForTests(new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 1 })) }) - afterEach(() => _resetGitAdmissionForTests()) + afterEach(() => { + vi.useRealTimers() + _resetGitAdmissionForTests() + }) it('retains the permit after maxBuffer settlement until close', async () => { const child = mockChild() @@ -57,6 +61,27 @@ describe('git stream admission lifetime', () => { expect(_gitAdmissionSnapshotForTests().budgets.general?.baseUsed).toBe(0) }) + it('waits beyond the execution timeout before starting a stream', async () => { + vi.useFakeTimers() + _resetGitAdmissionForTests(new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 0 })) + const holding = acquireGitAdmission({ args: ['status'], cwd: '/repo' }) + await vi.advanceTimersByTimeAsync(0) + const blocker = await holding + const child = mockChild() + gitSpawnMock.mockReturnValue(child) + const pending = gitStreamStdout(['status'], { cwd: '/repo', timeoutMs: 50, onStdout: () => {} }) + await vi.advanceTimersByTimeAsync(500) + expect(gitSpawnMock).not.toHaveBeenCalled() + expect(_gitAdmissionSnapshotForTests().queued).toBe(1) + blocker.release() + await vi.advanceTimersByTimeAsync(0) + expect(gitSpawnMock).toHaveBeenCalledOnce() + await vi.advanceTimersByTimeAsync(49) + child.emit('close', 0, null) + await expect(pending).resolves.toEqual({ stoppedEarly: false }) + expect(_gitAdmissionSnapshotForTests().budgets.general?.baseUsed).toBe(0) + }) + it('retains the permit after abort settlement until close', async () => { const child = mockChild() const controller = new AbortController() diff --git a/src/main/git/command-runner/git-subprocess-admission.ts b/src/main/git/command-runner/git-subprocess-admission.ts index b23cbda170b..b5b744ea97c 100644 --- a/src/main/git/command-runner/git-subprocess-admission.ts +++ b/src/main/git/command-runner/git-subprocess-admission.ts @@ -14,6 +14,7 @@ import { type GitAdmissionGrant, type GitAdmissionRequest } from './git-admission-state' +import { resolveGitAdmissionTier } from './git-operation-executor' export type { GitAdmissionEvent, @@ -31,10 +32,6 @@ export { ROUTE_HEADROOM } from './git-admission-state' -function commandClass(args: readonly string[]): AdmissionClass { - return classifyGitCommand(args) === 'network' ? 'network' : 'general' -} - function routeKey(request: GitAdmissionRequest): string | null { const distro = request.wslDistro?.trim().toLowerCase() return distro ? `wsl:${distro}` : uncRouteKey(request.cwd) @@ -113,7 +110,7 @@ export class GitAdmissionScheduler { route: string | null budgetKeys: readonly string[] } { - const admissionClass = commandClass(request.args) + const admissionClass = classifyGitCommand(request.args) === 'network' ? 'network' : 'general' const route = routeKey(request) const keys: string[] = [admissionClass] if (route) { @@ -313,7 +310,7 @@ export function acquireGitAdmission(request: GitAdmissionRequest): Promise {} }) } - return scheduler.acquire(request) + return scheduler.acquire({ ...request, tier: resolveGitAdmissionTier(request.tier) }) } export function _resetGitAdmissionForTests(replacement = new GitAdmissionScheduler()): void { diff --git a/src/main/git/repo-default-base-ref.ts b/src/main/git/repo-default-base-ref.ts index 59adaeed512..c43cd14c72a 100644 --- a/src/main/git/repo-default-base-ref.ts +++ b/src/main/git/repo-default-base-ref.ts @@ -1,12 +1,15 @@ +import type { GitAdmissionTier } from '../../shared/rpc-contract/git-admission-tier-params' import { gitExecFileAsync, gitExecFileSync } from './runner' export type LocalGitExecOptions = { wslDistro?: string + admissionTier?: GitAdmissionTier } export type LocalDefaultBaseRefGitOptions = { cwd: string wslDistro?: string + admissionTier?: GitAdmissionTier } export const DEFAULT_BASE_REF_PROBE_TIMEOUT_MS = 15_000 @@ -14,8 +17,12 @@ export const DEFAULT_BASE_REF_PROBE_TIMEOUT_MS = 15_000 export function gitExecOptions( cwd: string, options: LocalGitExecOptions = {} -): { cwd: string; wslDistro?: string } { - return options.wslDistro ? { cwd, wslDistro: options.wslDistro } : { cwd } +): LocalDefaultBaseRefGitOptions { + return { + cwd, + ...(options.wslDistro ? { wslDistro: options.wslDistro } : {}), + ...(options.admissionTier ? { admissionTier: options.admissionTier } : {}) + } } export const DEFAULT_BASE_REF_PROBES: readonly { ref: string; returnAs: string }[] = [ diff --git a/src/main/git/worktree-base-divergence.test.ts b/src/main/git/worktree-base-divergence.test.ts index 88eec6a6b11..fa03db0e654 100644 --- a/src/main/git/worktree-base-divergence.test.ts +++ b/src/main/git/worktree-base-divergence.test.ts @@ -5,13 +5,21 @@ const mocks = vi.hoisted(() => ({ gitExecFileAsync: vi.fn() })) vi.mock('./runner', () => ({ gitExecFileAsync: mocks.gitExecFileAsync })) import { GIT_READ_TIMEOUT_MS } from './command-runner/git-command-timeout' +import { GitAdmissionScheduler } from './command-runner/git-subprocess-admission' +import type { GitAdmissionTier } from './command-runner/git-exec-options' import { WSL_GIT_READ_ENVIRONMENT_WAIT_MS } from './wsl-git-read-environment' import { measureRetargetDivergence, RETARGET_DIVERGENCE_BUDGET_MS } from './worktree-base-divergence' -type ExecOptions = { cwd: string; timeout?: number; wslDistro?: string; signal?: AbortSignal } +type ExecOptions = { + cwd: string + timeout?: number + wslDistro?: string + signal?: AbortSignal + admissionTier?: GitAdmissionTier +} function callOptions(): ExecOptions[] { return mocks.gitExecFileAsync.mock.calls.map((call) => call[1] as ExecOptions) @@ -36,6 +44,35 @@ beforeEach(() => { }) describe('measureRetargetDivergence deadlines', () => { + it('finishes through interactive headroom while general capacity is occupied', async () => { + const scheduler = new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 1 }) + const blocker = await scheduler.acquire({ args: ['status'], cwd: '/repo' }) + mocks.gitExecFileAsync.mockImplementation(async (args: string[], options: ExecOptions) => { + const grant = await scheduler.acquire({ + args, + cwd: options.cwd, + signal: options.signal, + tier: options.admissionTier + }) + try { + return { stdout: args[0] === 'merge-base' ? 'abc123\n' : '1\n' } + } finally { + grant.release() + } + }) + try { + await expect( + measureRetargetDivergence('/repo', 'refs/heads/main', 'refs/remotes/origin/main', { + admissionTier: 'interactive', + budgetMsForTest: 200 + }) + ).resolves.toBe('within') + expect(subcommands()).toEqual(['rev-list', 'rev-list', 'merge-base']) + } finally { + blocker.release() + } + }) + it('puts every probe under one shared budget, not a budget each', async () => { answerProbes('3\n') diff --git a/src/main/git/worktree-base-divergence.ts b/src/main/git/worktree-base-divergence.ts index c7c924c2f24..d8e254a277b 100644 --- a/src/main/git/worktree-base-divergence.ts +++ b/src/main/git/worktree-base-divergence.ts @@ -1,8 +1,10 @@ import { WSL_GIT_READ_ENVIRONMENT_WAIT_MS } from './wsl-git-read-environment' import { gitExecFileAsync } from './runner' +import type { GitAdmissionTier } from './command-runner/git-exec-options' export type RetargetDivergenceOptions = { wslDistro?: string + admissionTier?: GitAdmissionTier /** The create's own cancellation signal. Without it a cancelled create leaves these probes * running until the budget expires. */ signal?: AbortSignal @@ -61,7 +63,13 @@ function probeOptions( repoPath: string, options: RetargetDivergenceOptions, signal: AbortSignal -): { cwd: string; wslDistro?: string; signal: AbortSignal; timeout: number } { +): { + cwd: string + wslDistro?: string + admissionTier?: GitAdmissionTier + signal: AbortSignal + timeout: number +} { // Built field by field rather than spread: the caller's bag carries a test-only key that must // never reach git's exec options. // Both bounds: the signal covers the pre-spawn waits (admission queue, WSL environment) that a @@ -69,6 +77,7 @@ function probeOptions( return { cwd: repoPath, ...(options.wslDistro ? { wslDistro: options.wslDistro } : {}), + ...(options.admissionTier ? { admissionTier: options.admissionTier } : {}), signal, timeout: RETARGET_DIVERGENCE_BUDGET_MS } diff --git a/src/main/git/worktree-base-ref-probe.ts b/src/main/git/worktree-base-ref-probe.ts index 87c761ebbcc..50e0e74f13a 100644 --- a/src/main/git/worktree-base-ref-probe.ts +++ b/src/main/git/worktree-base-ref-probe.ts @@ -1,3 +1,4 @@ +import type { GitAdmissionTier } from '../../shared/rpc-contract/git-admission-tier-params' import { gitExecFileAsync } from './runner' import { isShowRefNoMatchError } from './exact-ref-probe' import { hasCommitObjectViaGitExec } from './commit-object-ref' @@ -6,6 +7,7 @@ import { resolveWorktreeAddBaseRef } from '../../shared/worktree/base-ref' type GitExecOptions = { wslDistro?: string + admissionTier?: GitAdmissionTier } /** diff --git a/src/main/git/worktree-create-admission-tier.test.ts b/src/main/git/worktree-create-admission-tier.test.ts new file mode 100644 index 00000000000..f84311f14f6 --- /dev/null +++ b/src/main/git/worktree-create-admission-tier.test.ts @@ -0,0 +1,70 @@ +import { beforeEach, describe, expect, it, vi } from 'vitest' + +type GitExec = ( + args: string[], + options: Record +) => Promise<{ stdout: string; stderr: string }> + +const gitExecFileAsyncMock = vi.hoisted(() => vi.fn()) + +vi.mock('./runner', () => ({ gitExecFileAsync: gitExecFileAsyncMock })) + +import { addWorktree } from './worktree-add' +import { listWorktreesSharedStrict } from './worktree-scan-cache' +import { finalizePreparedWorktree } from './worktree-create-preparation' + +const HEAD = 'a'.repeat(40) + +/** Options every call to `git` carried, keyed by the subcommand the args name. */ +function optionsForCommand(match: string): Record[] { + return gitExecFileAsyncMock.mock.calls + .filter((call) => call[0].join(' ').includes(match)) + .map((call) => call[1]) +} + +describe('worktree create admission tier', () => { + beforeEach(() => { + gitExecFileAsyncMock.mockReset().mockResolvedValue({ stdout: HEAD, stderr: '' }) + }) + + it('runs the create add at the tier the caller asked for', async () => { + await addWorktree('/repo', '/repo-wt', 'feature', 'main', false, false, { + admissionTier: 'interactive' + }) + + const addOptions = optionsForCommand('worktree add') + expect(addOptions).toHaveLength(1) + expect(addOptions[0]).toMatchObject({ + cwd: '/repo', + admissionTier: 'interactive' + }) + }) + + it('runs the post-add listing at the tier the caller asked for', async () => { + await listWorktreesSharedStrict('/repo', { admissionTier: 'interactive' }) + + const listOptions = optionsForCommand('worktree list') + expect(listOptions.length).toBeGreaterThan(0) + for (const options of listOptions) { + expect(options).toMatchObject({ admissionTier: 'interactive' }) + } + }) + + it('runs the prepared-checkout finalize at the tier the caller asked for', async () => { + await finalizePreparedWorktree('/repo', '/prepared', '/repo-wt', 'feature', 'main', false, { + admissionTier: 'interactive' + }) + + for (const match of ['worktree move', 'checkout --no-track', 'worktree unlock']) { + const options = optionsForCommand(match) + expect(options, match).toHaveLength(1) + expect(options[0], match).toMatchObject({ admissionTier: 'interactive' }) + } + }) + + it('leaves a command with no tier at the scheduler default', async () => { + await addWorktree('/repo', '/repo-wt', 'feature', 'main') + + expect(optionsForCommand('worktree add')[0]).not.toHaveProperty('admissionTier') + }) +}) diff --git a/src/main/git/worktree-create-git-executor-real-git.test.ts b/src/main/git/worktree-create-git-executor-real-git.test.ts new file mode 100644 index 00000000000..4aa5322e7eb --- /dev/null +++ b/src/main/git/worktree-create-git-executor-real-git.test.ts @@ -0,0 +1,102 @@ +import { mkdtemp, readFile, rm, writeFile } from 'node:fs/promises' +import { tmpdir } from 'node:os' +import { join } from 'node:path' +import { afterEach, expect, it } from 'vitest' +import { gitExecFileAsync } from './runner' +import { addWorktree, listWorktrees } from './worktree' +import { finalizePreparedWorktree } from './worktree-create-preparation' +import { worktreeCreateGit } from './worktree-create-git-executor' +import { + _resetPreparationPoolForTests, + listPreparations, + startPreparation, + takePreparation +} from '../worktree-create-preparation-pool' +import { + acquireGitAdmission, + GitAdmissionScheduler, + _resetGitAdmissionForTests, + type GitAdmissionEvent +} from './command-runner/git-subprocess-admission' + +const roots: string[] = [] +afterEach(async () => { + _resetGitAdmissionForTests() + await _resetPreparationPoolForTests() + await Promise.all(roots.splice(0).map((root) => rm(root, { recursive: true, force: true }))) +}) + +it('creates cold and prepared worktrees with real Git while status capacity is occupied', async () => { + const root = await mkdtemp(join(tmpdir(), 'orca-create-policy-')) + roots.push(root) + const repo = join(root, 'repo') + await gitExecFileAsync(['init', '--quiet', repo], { cwd: root }) + await gitExecFileAsync(['symbolic-ref', 'HEAD', 'refs/heads/main'], { cwd: repo }) + await writeFile(join(repo, 'file.txt'), 'workspace content\n') + await gitExecFileAsync(['add', '.'], { cwd: repo }) + await gitExecFileAsync( + ['-c', 'user.name=Test', '-c', 'user.email=test@example.com', 'commit', '-qm', 'fixture'], + { cwd: repo } + ) + + const events: GitAdmissionEvent[] = [] + _resetGitAdmissionForTests( + new GitAdmissionScheduler({ + generalCap: 1, + generalHeadroom: 1, + onAdmissionEvent: (event) => { + if (event.phase === 'grant') { + events.push(event) + } + } + }) + ) + await worktreeCreateGit.run(() => + startPreparation({ + repoPath: repo, + workspaceRoot: root, + baseBranch: 'main', + canonicalBase: 'refs/heads/main', + options: {} + }) + ) + expect(events.length).toBeGreaterThan(0) + expect(events.every((event) => event.tier === 'status')).toBe(true) + const [prepared] = listPreparations() + expect(prepared).toBeDefined() + takePreparation(prepared) + + const blocker = await acquireGitAdmission({ args: ['status'], cwd: repo }) + events.length = 0 + try { + await worktreeCreateGit.run(async () => { + await gitExecFileAsync(['fetch', repo, 'main'], { + cwd: repo, + useConfiguredSshCommandForNetwork: true, + env: { ...process.env, GIT_SSH_COMMAND: '' } + }) + await addWorktree(repo, join(root, 'cold'), 'cold', 'main') + await finalizePreparedWorktree( + repo, + prepared.preparedPath, + join(root, 'warm'), + 'warm', + 'main' + ) + expect(await listWorktrees(repo)).toHaveLength(3) + }) + expect(events.some((event) => event.args.includes('core.sshCommand'))).toBe(true) + expect(events.some((event) => event.args.includes('fetch'))).toBe(true) + expect(events.every((event) => event.tier === 'interactive')).toBe(true) + expect( + events + .filter((event) => event.admissionClass === 'general') + .every((event) => event.slotKind === 'headroom') + ).toBe(true) + for (const name of ['cold', 'warm']) { + expect(await readFile(join(root, name, 'file.txt'), 'utf8')).toBe('workspace content\n') + } + } finally { + blocker.release() + } +}) diff --git a/src/main/git/worktree-create-git-executor.ts b/src/main/git/worktree-create-git-executor.ts new file mode 100644 index 00000000000..481fcdeed30 --- /dev/null +++ b/src/main/git/worktree-create-git-executor.ts @@ -0,0 +1,5 @@ +import { createGitOperationExecutor } from './command-runner/git-operation-executor' + +export const worktreeCreateGit = createGitOperationExecutor('interactive') + +export const worktreePreparationGit = createGitOperationExecutor('status') diff --git a/src/main/git/worktree-create-preparation.ts b/src/main/git/worktree-create-preparation.ts index 0f27f045287..28330e64e4f 100644 --- a/src/main/git/worktree-create-preparation.ts +++ b/src/main/git/worktree-create-preparation.ts @@ -1,6 +1,7 @@ import { windowsLongPathGitArgs } from '../../shared/windows-long-path-git-args' import { resolveWorktreeAddBaseRef } from '../../shared/worktree/base-ref' import type { AddWorktreeOptions, AddWorktreeResult, GitWorktreeExecOptions } from './worktree' +import { gitExecOptions, type GitExecOptionsForWorktree } from './worktree-operation-options' import { configurePushAutoSetupRemote, notifyPreparedWorktreeMutation, @@ -15,22 +16,10 @@ import { gitExecFileAsync } from './runner' import { runWithGitReadCacheInvalidation } from './status' import { invalidateWslLinkedWorktreeGitRouting } from './wsl-linked-worktree-git-routing' -function gitExecOptions( - cwd: string, - options: GitWorktreeExecOptions -): { cwd: string; wslDistro?: string; signal?: AbortSignal; timeout?: number } { - return { - cwd, - ...(options.wslDistro ? { wslDistro: options.wslDistro } : {}), - ...(options.signal ? { signal: options.signal } : {}), - ...(options.timeout ? { timeout: options.timeout } : {}) - } -} - function gitCleanupOptions( cwd: string, options: GitWorktreeExecOptions -): { cwd: string; wslDistro?: string; timeout?: number } { +): GitExecOptionsForWorktree { // Why: cancellation must not strand a partially moved worktree; cleanup is bounded separately. return gitExecOptions(cwd, { ...options, signal: undefined }) } diff --git a/src/main/git/worktree-operation-options.ts b/src/main/git/worktree-operation-options.ts index 6f956c6c422..4bf3d9e9451 100644 --- a/src/main/git/worktree-operation-options.ts +++ b/src/main/git/worktree-operation-options.ts @@ -4,6 +4,7 @@ import type { } from '../../shared/worktree/base-ref-drift-types' import { readGitCommandFailureText } from '../../shared/git-command-failure-text' import type { RemoveWorktreeResult } from '../../shared/worktree/create-types' +import type { GitAdmissionTier } from '../../shared/rpc-contract/git-admission-tier-params' import type { GitWorktreeInfo } from '../../shared/worktree/types' export type AddWorktreeResult = { @@ -20,6 +21,7 @@ export type GitWorktreeExecOptions = { signal?: AbortSignal timeout?: number includeCreatePreparations?: boolean + admissionTier?: GitAdmissionTier } export type WorktreeRemovalPreflightOptions = GitWorktreeExecOptions & { @@ -78,15 +80,24 @@ export function resolveWorktreeAddTimeoutMs(env: NodeJS.ProcessEnv = process.env return resolved } +export type GitExecOptionsForWorktree = { + cwd: string + wslDistro?: string + signal?: AbortSignal + timeout?: number + admissionTier?: GitAdmissionTier +} + export function gitExecOptions( cwd: string, options: GitWorktreeExecOptions = {} -): { cwd: string; wslDistro?: string; signal?: AbortSignal; timeout?: number } { +): GitExecOptionsForWorktree { return { cwd, ...(options.wslDistro ? { wslDistro: options.wslDistro } : {}), ...(options.signal ? { signal: options.signal } : {}), - ...(options.timeout ? { timeout: options.timeout } : {}) + ...(options.timeout ? { timeout: options.timeout } : {}), + ...(options.admissionTier ? { admissionTier: options.admissionTier } : {}) } } diff --git a/src/main/git/worktree-path-comparison.ts b/src/main/git/worktree-path-comparison.ts index 96d423c3caf..2bc65098c3f 100644 --- a/src/main/git/worktree-path-comparison.ts +++ b/src/main/git/worktree-path-comparison.ts @@ -1,19 +1,68 @@ import { posix, win32 } from 'node:path' +import { foldWslUncPathCaseInsensitiveParts } from '../../shared/wsl-paths' import type { GitWorktreeExecOptions } from './worktree-operation-options' import { translateWslOutputPaths } from './runner' -/** Normalize a worktree path for cross-platform comparison/keying: resolved, and case-folded on Windows syntax. */ +/** + * Normalize a worktree path for cross-platform comparison/keying: resolved, and case-folded on + * Windows syntax. + * + * Why the path's own syntax outranks `platform`: whose filesystem a path names is a property of the + * path, not of the desktop reading it, and folding a case-sensitive filesystem merges two real + * checkouts into one row — enough for `removeWorktree` to pick the twin and delete its branch. + * + * Two syntaxes name a case-sensitive filesystem. A POSIX-absolute path is one. The other is the WSL + * UNC alias, which is the shape that actually reaches removal: `listWorktreesStrict` runs every + * listed path through `translateWorktreePath`, so git-in-the-distro's `/home/alice/Feature` arrives + * as `\\wsl.localhost\Ubuntu\home\alice\Feature` and a plain `toLowerCase` folded the ext4 tail. + * `foldWslUncPathCaseInsensitiveParts` already draws that line — Windows folds the share, the distro + * and a drvfs `/mnt/` tail, and nothing else — and `git-fetch-head-lock` already relies on + * it. `isSameCommonDirPath` and `ipc/worktree-path-comparison` carry local copies of the POSIX half; + * this is both halves at the source. + */ export function canonicalWorktreePath(pathValue: string, platform = process.platform): string { + if (looksLikePosixAbsolutePath(pathValue)) { + return posix.normalize(posix.resolve(pathValue)) + } + const wslKey = wslUncComparisonKey(pathValue) + if (wslKey) { + return wslKey + } return platform === 'win32' || looksLikeWindowsPath(pathValue) ? win32.normalize(win32.resolve(pathValue)).toLowerCase() : posix.normalize(posix.resolve(pathValue)) } +/** + * The comparison key for a WSL UNC path, or null when it is not one. + * + * Normalized through `win32` first so `..`/`.` segments and slash style collapse, then folded only + * where Windows really folds. The fold is unconditional on platform: a `\\wsl.localhost\...` string + * names the same distro filesystem whichever desktop is reading it. + */ +function wslUncComparisonKey(pathValue: string): string | null { + const folded = foldWslUncPathCaseInsensitiveParts(pathValue) + if (!folded) { + return null + } + return foldWslUncPathCaseInsensitiveParts(win32.normalize(pathValue)) ?? folded +} + export function areWorktreePathsEqual( leftPath: string, rightPath: string, platform = process.platform ): boolean { + const leftIsPosix = looksLikePosixAbsolutePath(leftPath) + if (leftIsPosix || looksLikePosixAbsolutePath(rightPath)) { + // Why not fall through: `win32.resolve` gives a POSIX path a drive root, manufacturing an + // equality with a Windows path that names a different filesystem. + return ( + leftIsPosix && + looksLikePosixAbsolutePath(rightPath) && + canonicalWorktreePath(leftPath, platform) === canonicalWorktreePath(rightPath, platform) + ) + } if (platform === 'win32' || looksLikeWindowsPath(leftPath) || looksLikeWindowsPath(rightPath)) { return canonicalWorktreePath(leftPath, 'win32') === canonicalWorktreePath(rightPath, 'win32') } @@ -24,6 +73,11 @@ function looksLikeWindowsPath(pathValue: string): boolean { return /^[A-Za-z]:[\\/]/.test(pathValue) || pathValue.startsWith('\\\\') } +// One leading slash only: `//server/share` and WSL UNC aliases are Windows roots, not POSIX paths. +function looksLikePosixAbsolutePath(pathValue: string): boolean { + return pathValue.startsWith('/') && !pathValue.startsWith('//') +} + export function resolveRevParsePath(repoPath: string, value: string): string { if (posix.isAbsolute(value) || win32.isAbsolute(value)) { return value diff --git a/src/main/git/worktree-posix-path-case-sensitivity.test.ts b/src/main/git/worktree-posix-path-case-sensitivity.test.ts new file mode 100644 index 00000000000..b63d701d222 --- /dev/null +++ b/src/main/git/worktree-posix-path-case-sensitivity.test.ts @@ -0,0 +1,194 @@ +/** + * A case-sensitive filesystem stays case-sensitive whichever desktop is reading it. + * `git/worktree-path-comparison` decided case-folding from `process.platform`, so on Windows both + * spellings of a WSL checkout — the Linux one and the `\\wsl.localhost\...` alias the listing + * actually produces — folded, and two distinct checkouts read as one row. + * + * The removal suite mocks `translateWslOutputPaths` to identity. That mock is what hid this: in + * production `listWorktreesStrict` always runs the listing through it, so the paths that reach the + * comparison are UNC, never Linux. The end-to-end case below therefore drives the real translator. + */ +import type * as FsPromises from 'node:fs/promises' +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' +import type * as WslPathTranslation from './command-runner/wsl-path-translation' + +const { + gitExecFileAsyncMock, + gitExecFileSyncMock, + statMock, + readFileMock, + resolveGitDirMock, + moveWorktreeDirectoryToTrashMock, + restoreWorktreeDirectoryFromTrashMock, + scheduleWorktreeTrashDeletionMock +} = vi.hoisted(() => ({ + gitExecFileAsyncMock: vi.fn(), + gitExecFileSyncMock: vi.fn(), + statMock: vi.fn(), + readFileMock: vi.fn(), + resolveGitDirMock: vi.fn(), + moveWorktreeDirectoryToTrashMock: vi.fn(), + restoreWorktreeDirectoryFromTrashMock: vi.fn(), + scheduleWorktreeTrashDeletionMock: vi.fn() +})) + +vi.mock('../worktree-trash', () => ({ + moveWorktreeDirectoryToTrash: moveWorktreeDirectoryToTrashMock, + restoreWorktreeDirectoryFromTrash: restoreWorktreeDirectoryFromTrashMock, + scheduleWorktreeTrashDeletion: scheduleWorktreeTrashDeletionMock +})) + +// Why the real translator: an identity mock removes the Linux -> UNC rewrite that production +// always applies, which is the only reason the Linux spelling would ever reach the comparison. +vi.mock('./runner', async () => { + const translation = await vi.importActual( + './command-runner/wsl-path-translation' + ) + return { + gitExecFileAsync: gitExecFileAsyncMock, + gitExecFileSync: gitExecFileSyncMock, + translateWslOutputPaths: translation.translateWslOutputPaths + } +}) + +vi.mock('./status', () => ({ + resolveGitDir: resolveGitDirMock, + runWithGitReadCacheInvalidation: (run: () => Promise) => run() +})) + +vi.mock('fs/promises', async () => { + const actual = await vi.importActual('fs/promises') + return { ...actual, stat: statMock, readFile: readFileMock } +}) + +import { + createGitCallReader, + createGitCommandMocker, + resetWorktreeRemovalState +} from './remove-worktree-test-harness' +import { areWorktreePathsEqual, canonicalWorktreePath } from './worktree-path-comparison' +import { removeWorktree } from './worktree' + +const mockGitCommands = createGitCommandMocker(gitExecFileAsyncMock) +const getGitCalls = createGitCallReader(gitExecFileAsyncMock) + +const UNC = '\\\\wsl.localhost\\Ubuntu\\home\\alice\\ws' + +describe('worktree path comparison across path syntaxes', () => { + it('keeps two WSL UNC worktrees that differ only in case distinct', () => { + expect(areWorktreePathsEqual(`${UNC}\\Feature`, `${UNC}\\feature`, 'win32')).toBe(false) + expect(canonicalWorktreePath(`${UNC}\\Feature`, 'win32')).not.toBe( + canonicalWorktreePath(`${UNC}\\feature`, 'win32') + ) + }) + + it('keeps two POSIX worktrees that differ only in case distinct on a Windows desktop', () => { + expect(areWorktreePathsEqual('/home/alice/ws/Feature', '/home/alice/ws/feature', 'win32')).toBe( + false + ) + }) + + it('still folds the share alias, the distro name and the slash style, which Windows folds', () => { + expect( + areWorktreePathsEqual( + '\\\\wsl.localhost\\Ubuntu\\home\\alice\\wt', + '//WSL$/ubuntu/home/alice/wt', + 'win32' + ) + ).toBe(true) + }) + + it('still folds a drvfs tail, which really is a Windows volume', () => { + expect( + areWorktreePathsEqual( + '\\\\wsl$\\Ubuntu\\mnt\\C\\Users\\Jin', + '\\\\wsl.localhost\\Ubuntu\\mnt\\c\\users\\jin', + 'win32' + ) + ).toBe(true) + }) + + it('does not fold a distro directory that merely looks like the drvfs mount', () => { + expect( + areWorktreePathsEqual( + '\\\\wsl$\\Ubuntu\\MNT\\c\\Repo', + '\\\\wsl$\\Ubuntu\\MNT\\c\\repo', + 'win32' + ) + ).toBe(false) + }) + + it('collapses dot segments in both case-sensitive syntaxes', () => { + expect(areWorktreePathsEqual(`${UNC}\\.\\feature`, `${UNC}\\x\\..\\feature`, 'win32')).toBe(true) + expect( + areWorktreePathsEqual('/home/alice/ws/./feature', '/home/alice/ws/x/../feature', 'win32') + ).toBe(true) + }) + + it('still folds Windows drive paths by case and slash style', () => { + expect(areWorktreePathsEqual('C:/Users/Bob/wt', 'c:\\Users\\bob\\wt', 'win32')).toBe(true) + expect(areWorktreePathsEqual('C:/Users/Bob/wt', 'c:\\Users\\bob\\wt', 'darwin')).toBe(true) + }) + + it('never equates paths written in different syntaxes', () => { + expect(areWorktreePathsEqual('/home/alice/wt', `${UNC}\\..\\wt`, 'win32')).toBe(false) + expect(areWorktreePathsEqual('/Users/bob/wt', 'C:\\Users\\bob\\wt', 'win32')).toBe(false) + expect(areWorktreePathsEqual(`${UNC}\\wt`, 'C:\\ws\\wt', 'win32')).toBe(false) + }) +}) + +describe('removeWorktree branch selection on a Windows desktop', () => { + const originalPlatform = Object.getOwnPropertyDescriptor(process, 'platform')! + + beforeEach(() => { + Object.defineProperty(process, 'platform', { configurable: true, value: 'win32' }) + gitExecFileAsyncMock.mockReset() + gitExecFileSyncMock.mockReset() + statMock.mockReset() + statMock.mockRejectedValue(Object.assign(new Error('ENOENT'), { code: 'ENOENT' })) + readFileMock.mockReset() + readFileMock.mockRejectedValue(Object.assign(new Error('ENOENT'), { code: 'ENOENT' })) + resolveGitDirMock.mockReset() + resetWorktreeRemovalState({ + moveWorktreeDirectoryToTrashMock, + restoreWorktreeDirectoryFromTrashMock, + scheduleWorktreeTrashDeletionMock + }) + }) + + afterEach(() => { + Object.defineProperty(process, 'platform', originalPlatform) + }) + + it('deletes the branch of the requested WSL worktree, not its case twin', async () => { + // Git-in-the-distro answers in Linux paths; the real translator rewrites them to UNC on the way + // out, so this is the exact listing the comparison sees on a Windows desktop. + const listing = `worktree /home/alice/repo +HEAD aaa111 +branch refs/heads/main + +worktree /home/alice/ws/Feature +HEAD bbb222 +branch refs/heads/Feature + +worktree /home/alice/ws/feature +HEAD ccc333 +branch refs/heads/feature +` + mockGitCommands({ + 'git worktree list --porcelain -z': { stdout: listing }, + 'git worktree list --porcelain': { stdout: listing } + }) + + await removeWorktree( + '\\\\wsl.localhost\\Ubuntu\\home\\alice\\repo', + `${UNC}\\feature`, + true, + { wslDistro: 'Ubuntu' } + ) + + const calls = getGitCalls() + expect(calls).toContain('git branch -d -- feature') + expect(calls).not.toContain('git branch -d -- Feature') + }) +}) diff --git a/src/main/git/worktree-scan-cache-sharing.test.ts b/src/main/git/worktree-scan-cache-sharing.test.ts index 2a687420cd8..c42bec7e730 100644 --- a/src/main/git/worktree-scan-cache-sharing.test.ts +++ b/src/main/git/worktree-scan-cache-sharing.test.ts @@ -1,3 +1,4 @@ +import { worktreeCreateGit } from './worktree-create-git-executor' // Worktree scan sharing: in-flight coalescing and mutation-generation retirement. import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' @@ -120,6 +121,28 @@ describe('listWorktrees in-flight sharing', () => { expect(gitExecFileAsyncMock).toHaveBeenCalledTimes(1) }) + // The create's listing is promoted to `interactive` precisely to skip the queue a status scan + // is already sitting in; joining that scan would hand it the wait back. + it('does not let an interactive listing join a scan queued at another tier', async () => { + const resolvers: ((value: { stdout: string }) => void)[] = [] + gitExecFileAsyncMock.mockImplementation( + () => + new Promise((resolve) => { + resolvers.push(resolve) + }) + ) + + const statusScan = listWorktreeGraph('/repo', { admissionTier: 'status' }) + const interactiveScan = worktreeCreateGit.run(() => listWorktreeGraph('/repo')) + expect(resolvers).toHaveLength(2) + + for (const resolve of resolvers) { + resolve({ stdout: 'worktree /repo\nHEAD abc123\nbranch refs/heads/main\n' }) + } + await Promise.all([statusScan, interactiveScan]) + expect(gitExecFileAsyncMock).toHaveBeenCalledTimes(2) + }) + // Order must not matter: whichever runs first owns the listing and the other joins it. it('runs one git listing when the annotated scan starts first', async () => { const resolvers: ((value: { stdout: string }) => void)[] = [] diff --git a/src/main/git/worktree-scan-cache.ts b/src/main/git/worktree-scan-cache.ts index a35f0a4f275..8027eafeddb 100644 --- a/src/main/git/worktree-scan-cache.ts +++ b/src/main/git/worktree-scan-cache.ts @@ -7,6 +7,7 @@ import { } from './worktree-listing' import type { GitWorktreeExecOptions } from './worktree-operation-options' import { WORKTREE_LIST_TIMEOUT_MS } from './worktree-operation-options' +import { resolveGitAdmissionTier } from './command-runner/git-operation-executor' // Why: share concurrent `git worktree list` scans, which are expensive on Windows. const inFlightWorktreeScans = new Map>() @@ -76,7 +77,8 @@ function shareWorktreeScan( const timeout = options.timeout ?? WORKTREE_LIST_TIMEOUT_MS // Why: callers with different deadlines cannot safely share which timeout wins the scan. // Why `kind`: a strict joiner must never receive a softened `[]` from a lenient scan. - const key = `${repoPath}\0${options.wslDistro ?? ''}\0${timeout}\0${options.includeCreatePreparations === true}\0${generation}\0${kind}` + // Why the tier: an interactive listing joining a queued status scan inherits its wait. + const key = `${repoPath}\0${options.wslDistro ?? ''}\0${timeout}\0${options.includeCreatePreparations === true}\0${generation}\0${kind}\0${resolveGitAdmissionTier(options.admissionTier)}` const inFlight = inFlightWorktreeScans.get(key) if (inFlight) { return inFlight diff --git a/src/main/ipc/pty/pty-spawn-shell-override-parity.test.ts b/src/main/ipc/pty/pty-spawn-shell-override-parity.test.ts new file mode 100644 index 00000000000..67bee9ca700 --- /dev/null +++ b/src/main/ipc/pty/pty-spawn-shell-override-parity.test.ts @@ -0,0 +1,26 @@ +import { readFileSync } from 'node:fs' +import { join } from 'node:path' +import { describe, expect, it } from 'vitest' + +/** + * The two spawn preflights are twins: one serves renderer/IPC spawns, the other serves runtime + * spawns (`terminal.create` from the CLI, headless serve, and paired remote environments). They + * had drifted — the runtime twin passed a literal `undefined` for the caller's shell, so on a + * Windows host a runtime-created terminal could only ever be the host's default shell. A caller + * asking for cmd or PowerShell had to send it as `command`, which the provider TYPES into that + * default shell: the pty stayed the default shell with the requested one running inside it, and + * leaving that child dropped the caller's handle back onto a prompt it never asked for. + * + * Source-level because the functional seam is a whole spawn pipeline; what actually regressed is + * one twin silently not reading a field the other reads. + */ +const PREFLIGHTS = ['ipc', 'runtime'] as const + +describe.each(PREFLIGHTS)('%s pty spawn preflight', (lane) => { + const source = readFileSync(join(__dirname, lane, 'spawn-preflight.ts'), 'utf8') + + it("resolves Windows terminal runtime options from the caller's requested shell", () => { + expect(source).toContain('requestedShellOverride: args.shellOverride') + expect(source).not.toContain('requestedShellOverride: undefined') + }) +}) diff --git a/src/main/ipc/pty/runtime/spawn-preflight-requested-shell.test.ts b/src/main/ipc/pty/runtime/spawn-preflight-requested-shell.test.ts new file mode 100644 index 00000000000..46f16081efa --- /dev/null +++ b/src/main/ipc/pty/runtime/spawn-preflight-requested-shell.test.ts @@ -0,0 +1,83 @@ +import { afterEach, describe, expect, it } from 'vitest' +import type { BrowserWindow } from 'electron' +import { getDefaultSettings } from '../../../../shared/constants' +import { finishPtyShutdown } from '../provider/liveness' +import { prepareRuntimePtySpawn } from './spawn-preflight' +import { buildRuntimePtySpawnOptions } from './spawn-options' +import { createRuntimePtySpawnState, type RuntimePtySpawnArgs } from './spawn-state' +import type { PtyRuntimeControllerDeps } from './controller-deps' + +const HOST_DEFAULT_SHELL = 'powershell.exe' +const hostPlatform = process.platform + +function makeDeps(): PtyRuntimeControllerDeps { + const noCodexResumeLaunch: PtyRuntimeControllerDeps['noCodexResumeLaunch'] = (command) => ({ + codexResumeHome: null, + command, + notifyResumeUnavailable: false, + droppedResumeArgv: false, + providerSession: null + }) + return { + store: undefined, + getSettings: () => ({ + ...getDefaultSettings('/tmp'), + terminalWindowsShell: HOST_DEFAULT_SHELL + }), + adoptStablePane: async () => null, + getLocalPtyStartupPromise: () => undefined, + getLocalPtyProviderStartupPromise: () => undefined, + prepareCodexResumeHome: () => null, + resolveCodexResumeLaunch: async (command) => noCodexResumeLaunch(command), + noCodexResumeLaunch, + reconcileSharedRuntimeResumeHome: async (resumeHome) => resumeHome.codexHomePath, + stripSequencedStartupResumeArgv: (env) => env, + assertFolderWorkspacePtyPathUsable: () => undefined, + resolvePtySpawnStartupCwd: (_worktreeId, cwd) => cwd, + requestSerializedBuffer: async () => null, + shutdownProviderAndDetectExit: async () => false, + rememberSyntheticKillExit: () => {}, + rememberRetiredRejectedPty: () => {}, + sendPtyExitToRenderer: () => {}, + sendPtySpawnedToRenderer: () => {}, + finishPtyShutdown, + trustedTerminalHandleEnv: new Set(), + retiredRejectedPtyIds: new Map(), + reversibleStopOwnersByPtyId: new Map(), + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: only `operations.ts` (write/clearBuffer) reads `mainWindow`; the spawn preflight and option build never touch it, and a real BrowserWindow cannot exist in vitest. + mainWindow: {} as BrowserWindow + } +} + +/** Runs the preflight and option build the way `spawnPtyFromRuntimeController` sequences them. */ +async function resolveSpawnShell(shellOverride: string | undefined): Promise { + const args: RuntimePtySpawnArgs = { cols: 120, rows: 40, shellOverride } + const ctx = createRuntimePtySpawnState(makeDeps(), args) + await prepareRuntimePtySpawn(ctx) + await buildRuntimePtySpawnOptions(ctx) + ctx.finishTerminalInstall() + return ctx.spawnOptions.shellOverride +} + +/** + * Behavioural twin of `pty-spawn-shell-override-parity.test.ts`: a local Windows runtime spawn + * (`terminal create --shell`, headless serve) must hand the caller's shell to the provider, not + * the host default with the request typed into it. + */ +describe('runtime pty spawn preflight: requested shell on a local Windows host', () => { + afterEach(() => { + Object.defineProperty(process, 'platform', { configurable: true, value: hostPlatform }) + }) + + it('spawns the requested shell as the pty', async () => { + Object.defineProperty(process, 'platform', { configurable: true, value: 'win32' }) + + await expect(resolveSpawnShell('cmd.exe')).resolves.toBe('cmd.exe') + }) + + it('keeps the host default shell when nothing was requested', async () => { + Object.defineProperty(process, 'platform', { configurable: true, value: 'win32' }) + + await expect(resolveSpawnShell(undefined)).resolves.toBe(HOST_DEFAULT_SHELL) + }) +}) diff --git a/src/main/ipc/pty/runtime/spawn-preflight.ts b/src/main/ipc/pty/runtime/spawn-preflight.ts index 43fd2778119..aa743b259d0 100644 --- a/src/main/ipc/pty/runtime/spawn-preflight.ts +++ b/src/main/ipc/pty/runtime/spawn-preflight.ts @@ -72,10 +72,15 @@ export async function prepareRuntimePtySpawn( throw new Error(CLAUDE_AUTH_SWITCH_IN_PROGRESS_MESSAGE) } // Why: runtime-created terminals carry no renderer-computed projectRuntime; resolve from worktreeId to honor the project's Windows runtime. + // `args.shellOverride` is the per-request pick (`terminal create --shell`), read here the way + // the renderer twin (ipc/spawn-preflight.ts) reads a tab's override. Without it a runtime create + // could only ever get the host default shell, so a caller asking for cmd/PowerShell got the + // default shell with the request typed into it. Still Windows-only: the override names a + // Windows shell, and spawn-options applies it under the same platform gate. ctx.terminalRuntimeOptions = process.platform === 'win32' && !args.connectionId ? resolveLocalWindowsTerminalRuntimeOptions({ - requestedShellOverride: undefined, + requestedShellOverride: args.shellOverride, settings: ctx.deps.getSettings?.(), projectRuntime: resolveLocalProjectRuntimeForWorktreeId(ctx.deps.store, args.worktreeId), fallbackHostShell: process.env.COMSPEC || 'powershell.exe' diff --git a/src/main/ipc/pty/runtime/spawn-state.ts b/src/main/ipc/pty/runtime/spawn-state.ts index 81878fa029b..2884dff5685 100644 --- a/src/main/ipc/pty/runtime/spawn-state.ts +++ b/src/main/ipc/pty/runtime/spawn-state.ts @@ -102,6 +102,7 @@ export type RuntimePtySpawnArgs = { tabId?: string leafId?: string sessionId?: string + shellOverride?: string isNewSession?: boolean persistHostSessionBinding?: boolean expectedSourceBinding?: PtyBindingSourceExpectation diff --git a/src/main/ipc/worktree-remote.ts b/src/main/ipc/worktree-remote.ts index c64710b804c..beff64afc65 100644 --- a/src/main/ipc/worktree-remote.ts +++ b/src/main/ipc/worktree-remote.ts @@ -1,12 +1,14 @@ /* eslint-disable max-lines */ // Why: worktree create helpers (local + remote) split out of worktrees.ts; the cohesive create flow runs this file just over the per-file line limit. +import { worktreeCreateGit } from '../git/worktree-create-git-executor' import { getRepoHostedReviewExecutionHostId } from '../source-control/hosted-review-execution-host' import type { BrowserWindow } from 'electron' import { posix, win32 } from 'node:path' import { existsSync } from 'node:fs' import { randomUUID } from 'node:crypto' import type { Store } from '../persistence' +import type { GitAdmissionTier } from '../../shared/rpc-contract/git-admission-tier-params' import type { GlobalSettings } from '../../shared/global-settings-types' import type { Repo } from '../../shared/repo-types' import type { SetupAgentStartupPolicy } from '../../shared/orca-yaml-hook-types' @@ -30,7 +32,10 @@ import type { import { getPRForBranch } from '../github/client' import { listWorktrees, addWorktree, addSparseWorktree } from '../git/worktree' import type { AddWorktreeOptions, AddWorktreeResult } from '../git/worktree' -import { consumePreparedWorktreeCreate } from '../worktree-create-preparation' +import { + consumePreparedWorktreeCreate, + type PreparationRearmHolder +} from '../worktree-create-preparation' import { getBranchConflictKind, resolveDefaultBaseRefViaExec, @@ -1260,7 +1265,7 @@ export async function configureCreatedWorktreePushTarget( worktreePath: string, branchName: string, target: GitPushTarget, - gitOptions: { wslDistro?: string } = {} + gitOptions: { wslDistro?: string; admissionTier?: GitAdmissionTier } = {} ): Promise { return configureCreatedWorktreePushTargetWithExec( (args, cwd) => gitExecFileAsync(args, { cwd, ...gitOptions }), @@ -2298,12 +2303,31 @@ export async function createRemoteWorktree( } } -export async function createLocalWorktree( +export function createLocalWorktree( args: CreateWorktreeArgsWithSystemProvenance, repo: Repo, store: Store, mainWindow: BrowserWindow, runtime?: OrcaRuntimeService +): Promise { + // Why a holder fired in `finally`: consuming a prepared checkout leaves the pool one short, so a + // create that fails after that point — include copy, push target, terminal startup — must still + // arm the replacement. Fires exactly once, after startup on the success path. + const rearm: PreparationRearmHolder = { fire: () => {} } + return worktreeCreateGit + .run(() => performLocalWorktreeCreate(args, repo, store, mainWindow, rearm, runtime)) + .finally(() => { + rearm.fire() + }) +} + +async function performLocalWorktreeCreate( + args: CreateWorktreeArgsWithSystemProvenance, + repo: Repo, + store: Store, + mainWindow: BrowserWindow, + rearm: PreparationRearmHolder, + runtime?: OrcaRuntimeService ): Promise { const timing = createWorktreeCreateTimingRecorder() const settings = store.getSettings() @@ -2318,12 +2342,10 @@ export async function createLocalWorktree( const localWorktreeGitOptionArgs: [] | [{ wslDistro?: string }] = hasLocalWorktreeGitOptions ? [localWorktreeGitOptions] : [] - const addProjectGitOptions = (options?: AddWorktreeOptions): AddWorktreeOptions | undefined => { - if (!hasLocalWorktreeGitOptions) { - return options - } - return { ...options, ...localWorktreeGitOptions } - } + const addProjectGitOptions = (options?: AddWorktreeOptions): AddWorktreeOptions => ({ + ...options, + ...localWorktreeGitOptions + }) const requestedName = args.name const sanitizedName = sanitizeWorktreeName(args.name) @@ -2425,7 +2447,7 @@ export async function createLocalWorktree( ) } } - } else if (!(await hasLocalWorktreeBaseRef(repo.path, baseBranch, localWorktreeGitOptions))) { + } else if (!(await hasLocalWorktreeBaseRef(repo.path, baseBranch, localGitExecOptions))) { // Why: non-remote-prefix bases (plain main/master/local) keep the legacy best-effort fetch; verified PR SHA bases already have the object. legacyFetchPromise = runtime .fetchRemoteWithCache(repo.path, 'origin', ...localWorktreeGitOptionArgs) @@ -2434,7 +2456,7 @@ export async function createLocalWorktree( emitCreateWorktreeProgress(mainWindow, 'fetching', args.creationId) } } else { - if (!(await hasLocalWorktreeBaseRef(repo.path, baseBranch, localWorktreeGitOptions))) { + if (!(await hasLocalWorktreeBaseRef(repo.path, baseBranch, localGitExecOptions))) { legacyFetchPromise = gitExecFileAsync(['fetch', 'origin'], { ...localGitExecOptions, timeout: CREATE_BASE_FALLBACK_FETCH_TIMEOUT_MS @@ -2699,9 +2721,11 @@ export async function createLocalWorktree( ...remoteTrackingBaseOption, ...(suggestLocalBaseRefUpdate ? { suggestLocalBaseRefUpdate } : {}) } - const preparedWorktreeOptions = suggestLocalBaseRefUpdate - ? addProjectGitOptions({ ...remoteTrackingBaseOption, suggestLocalBaseRefUpdate }) - : addProjectGitOptions(remoteTrackingBaseOption) + const preparedWorktreeOptions = addProjectGitOptions( + suggestLocalBaseRefUpdate + ? { ...remoteTrackingBaseOption, suggestLocalBaseRefUpdate } + : remoteTrackingBaseOption + ) let addResult: AddWorktreeResult try { addResult = @@ -2714,7 +2738,7 @@ export async function createLocalWorktree( branch: branchName, baseBranch, refreshLocalBaseRef: settings.refreshLocalBaseRefOnWorktreeCreate, - ...(preparedWorktreeOptions ? { options: preparedWorktreeOptions } : {}) + options: preparedWorktreeOptions }) timing.recordPreparedCheckout( prepared.status === 'hit' @@ -2722,6 +2746,9 @@ export async function createLocalWorktree( : { status: 'miss', reason: prepared.reason } ) if (prepared.status === 'hit') { + // Why deferred: re-arming is a full `reset --hard`; started here it would hold a + // general admission slot for the rest of this create's own git. + rearm.fire = prepared.rearm return prepared.result } } else { @@ -2753,25 +2780,15 @@ export async function createLocalWorktree( addProjectGitOptions({ ...remoteTrackingBaseOption, suggestLocalBaseRefUpdate }) ) } - const sparseOptions = addProjectGitOptions(remoteTrackingBaseOption) - return sparseOptions - ? addSparseWorktree( - repo.path, - worktreePath, - branchName, - sparseDirectories, - baseBranch, - settings.refreshLocalBaseRefOnWorktreeCreate, - sparseOptions - ) - : addSparseWorktree( - repo.path, - worktreePath, - branchName, - sparseDirectories, - baseBranch, - settings.refreshLocalBaseRefOnWorktreeCreate - ) + return addSparseWorktree( + repo.path, + worktreePath, + branchName, + sparseDirectories, + baseBranch, + settings.refreshLocalBaseRefOnWorktreeCreate, + addProjectGitOptions(remoteTrackingBaseOption) + ) } if (checkoutExistingBranch) { @@ -2796,24 +2813,15 @@ export async function createLocalWorktree( addProjectGitOptions({ ...remoteTrackingBaseOption, suggestLocalBaseRefUpdate }) ) } - const worktreeOptions = addProjectGitOptions(remoteTrackingBaseOption) - return worktreeOptions - ? addWorktree( - repo.path, - worktreePath, - branchName, - baseBranch, - settings.refreshLocalBaseRefOnWorktreeCreate, - false, - worktreeOptions - ) - : addWorktree( - repo.path, - worktreePath, - branchName, - baseBranch, - settings.refreshLocalBaseRefOnWorktreeCreate - ) + return addWorktree( + repo.path, + worktreePath, + branchName, + baseBranch, + settings.refreshLocalBaseRefOnWorktreeCreate, + false, + addProjectGitOptions(remoteTrackingBaseOption) + ) })) ?? {} } catch (error) { if (shouldRetireGeneratedName && failedWorktreeCreationNeedsRetirement(error)) { @@ -2845,12 +2853,7 @@ export async function createLocalWorktree( worktrees: gitWorktrees, listingComplete } = await timing.time('list_created_worktree', async () => - resolveCreatedWorktree( - repo.path, - worktreePath, - branchName, - hasLocalWorktreeGitOptions ? localWorktreeGitOptions : undefined - ) + resolveCreatedWorktree(repo.path, worktreePath, branchName, localWorktreeGitOptions) ) const worktreeId = `${repo.id}::${created.path}` diff --git a/src/main/ipc/worktrees-existing-branch-checkout.test.ts b/src/main/ipc/worktrees-existing-branch-checkout.test.ts index e455e176cf5..cfc9e735b21 100644 --- a/src/main/ipc/worktrees-existing-branch-checkout.test.ts +++ b/src/main/ipc/worktrees-existing-branch-checkout.test.ts @@ -295,7 +295,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/feature-something-2', 'feature/something-2', 'origin/main', - false + false, + false, + {} ) }) @@ -338,7 +340,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/fix-title', 'feature/fix', 'abc123', - false + false, + false, + {} ) expect(gitExecFileAsyncMock).toHaveBeenCalledWith( ['branch', '--set-upstream-to', 'origin/feature/fix', 'feature/fix'], @@ -431,7 +435,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/bitbucket-title', 'feature/bitbucket', 'abc123', - false + false, + false, + {} ) expect(store.setWorktreeMeta).toHaveBeenCalledWith( 'repo-1::/workspace/bitbucket-title', @@ -485,7 +491,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/bitbucket-title-2', 'feature/bitbucket-2', 'abc123', - false + false, + false, + {} ) expect(store.setWorktreeMeta).toHaveBeenCalledWith( 'repo-1::/workspace/bitbucket-title-2', @@ -520,7 +528,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/fix-title-2', 'feature/fix-2', 'abc123', - false + false, + false, + {} ) }) @@ -552,7 +562,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/fix-title-2', 'feature/fix-2', 'abc123', - false + false, + false, + {} ) }) @@ -594,7 +606,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/fix-title-2', 'feature/fix-2', 'abc123', - false + false, + false, + {} ) }) @@ -628,7 +642,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/fix-title-2', 'feature/fix-2', 'abc123', - false + false, + false, + {} ) }) @@ -721,7 +737,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/fix-title-2', 'feature/fix-2', 'abc123', - false + false, + false, + {} ) }) @@ -763,7 +781,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/improve-dashboard-3', 'improve-dashboard-3', 'origin/main', - false + false, + false, + {} ) expect(result).toMatchObject({ worktree: expect.objectContaining({ diff --git a/src/main/ipc/worktrees-local-base-ref-resolution.test.ts b/src/main/ipc/worktrees-local-base-ref-resolution.test.ts index 130816d901c..099fe5f64d2 100644 --- a/src/main/ipc/worktrees-local-base-ref-resolution.test.ts +++ b/src/main/ipc/worktrees-local-base-ref-resolution.test.ts @@ -1,3 +1,4 @@ +import { resolveGitAdmissionTier } from '../git/command-runner/git-operation-executor' import { beforeEach, describe, expect, it, vi } from 'vitest' import type { CreateWorktreeResult } from '../../shared/worktree/create-types' import { @@ -112,7 +113,10 @@ describe('registerWorktreeHandlers', () => { }) runtimeStub.resolveRemoteTrackingBase.mockResolvedValue(remoteBase) runtimeStub.hasRemoteTrackingRef.mockResolvedValue(true) - runtimeStub.getOrStartRemoteTrackingBaseRefresh.mockReturnValue(pendingFetch) + runtimeStub.getOrStartRemoteTrackingBaseRefresh.mockImplementation(() => { + expect(resolveGitAdmissionTier()).toBe('interactive') + return pendingFetch + }) listWorktreesMock.mockResolvedValue([ { path: '/workspace/improve-dashboard', @@ -270,7 +274,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/improve-dashboard', 'improve-dashboard', 'develop', - false + false, + false, + {} ) }) @@ -331,7 +337,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/slash-local-base', 'slash-local-base', 'team/feature', - false + false, + false, + {} ) }) @@ -383,7 +391,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/offline-local-main', 'offline-local-main', 'main', - false + false, + false, + {} ) }) diff --git a/src/main/ipc/worktrees-local-create-flow.test.ts b/src/main/ipc/worktrees-local-create-flow.test.ts index fc57c6969b6..72da89bb962 100644 --- a/src/main/ipc/worktrees-local-create-flow.test.ts +++ b/src/main/ipc/worktrees-local-create-flow.test.ts @@ -234,6 +234,8 @@ describe('registerWorktreeHandlers', () => { baseBranch: sha }) + // The warm-up is speculative, so it stays at the default tier; only the create the user is + // waiting on is promoted. expect(gitExecFileAsyncMock).toHaveBeenCalledWith( ['rev-parse', '--verify', '--quiet', `${sha}^{commit}`], { cwd: '/workspace/repo' } @@ -272,7 +274,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/pr-title', 'feature/fix', sha, - false + false, + false, + {} ) }) @@ -354,7 +358,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/improve-dashboard-2', 'improve-dashboard-2', 'origin/main', - false + false, + false, + {} ) expect(result).toMatchObject({ worktree: expect.objectContaining({ @@ -385,7 +391,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/rocket', 'rocket', 'origin/main', - false + false, + false, + {} ) expect(store.setWorktreeMeta).toHaveBeenCalledWith( 'repo-1::/workspace/rocket', @@ -435,7 +443,9 @@ describe('registerWorktreeHandlers', () => { '../worktrees/feature', 'feature', 'origin/main', - false + false, + false, + {} ) expect(store.setWorktreeMeta).toHaveBeenCalledWith( 'repo-1::../worktrees/feature', @@ -551,7 +561,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/feature-something', 'feature/something', 'origin/main', - false + false, + false, + {} ) expect(resolveLocalGitUsernameMock).not.toHaveBeenCalled() expect(result).toMatchObject({ diff --git a/src/main/ipc/worktrees-setup-launch-sparse-checkout.test.ts b/src/main/ipc/worktrees-setup-launch-sparse-checkout.test.ts index 725f2df8c1f..cbf4c904096 100644 --- a/src/main/ipc/worktrees-setup-launch-sparse-checkout.test.ts +++ b/src/main/ipc/worktrees-setup-launch-sparse-checkout.test.ts @@ -140,7 +140,9 @@ describe('registerWorktreeHandlers', () => { '/workspace/improve-dashboard', 'improve-dashboard', 'origin/main', - false + false, + false, + {} ) }) @@ -221,7 +223,8 @@ describe('registerWorktreeHandlers', () => { 'improve-dashboard', ['packages/web', 'apps/api'], 'origin/main', - false + false, + {} ) expect(store.setWorktreeMeta).toHaveBeenCalledWith( 'repo-1::/workspace/improve-dashboard', diff --git a/src/main/ipc/worktrees-windows.test.ts b/src/main/ipc/worktrees-windows.test.ts index 7a54200d9f8..fb69743c288 100644 --- a/src/main/ipc/worktrees-windows.test.ts +++ b/src/main/ipc/worktrees-windows.test.ts @@ -337,7 +337,9 @@ describe('registerWorktreeHandlers – Windows path handling', () => { 'C:\\workspaces\\improve-dashboard', 'improve-dashboard', 'origin/main', - false + false, + false, + {} ) expect(resolveLocalGitUsernameMock).not.toHaveBeenCalled() // A name the user typed is never retired — the pool holds ordinary words people choose. @@ -403,7 +405,9 @@ describe('registerWorktreeHandlers – Windows path handling', () => { 'C:\\workspaces\\nautilus', 'nautilus', 'origin/main', - false + false, + false, + {} ) expect(store.addRetiredWorktreeName).not.toHaveBeenCalled() }) @@ -437,7 +441,9 @@ describe('registerWorktreeHandlers – Windows path handling', () => { 'C:\\workspaces\\improve-dashboard', 'octocat/improve-dashboard', 'origin/main', - false + false, + false, + {} ) }) diff --git a/src/main/ipc/worktrees-wsl-runtime-routing.test.ts b/src/main/ipc/worktrees-wsl-runtime-routing.test.ts index 8c936764291..1708a561c23 100644 --- a/src/main/ipc/worktrees-wsl-runtime-routing.test.ts +++ b/src/main/ipc/worktrees-wsl-runtime-routing.test.ts @@ -211,7 +211,9 @@ describe('registerWorktreeHandlers', () => { 'origin/main', { wslDistro: 'Ubuntu' } ) - expect(listWorktreesMock).toHaveBeenCalledWith('/workspace/repo', { wslDistro: 'Ubuntu' }) + expect(listWorktreesMock).toHaveBeenCalledWith('/workspace/repo', { + wslDistro: 'Ubuntu' + }) expectEveryGitCallRoutedTo('Ubuntu') }) diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition-options.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition-options.test.ts index 18849ea1202..78bf7cf2808 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition-options.test.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition-options.test.ts @@ -16,6 +16,7 @@ import { type AgentSessionAttachParams } from './structured-agent-session-attach' import { performAttach } from './structured-agent-session-attach-flow' +import type { AgentSessionCreatePhaseRecorder } from '../../observability/agent-session-instrumentation' const NOW = 1_800_000_000_000 const SESSION = 'legacy-session' @@ -221,6 +222,7 @@ describe('structured session acquisition options', () => { }) const sessionAdapter = adapter({ origin: 'created' }) const options = { model: 'gpt-5.6-sol', effort: 'medium', fastMode: 'false' } + const recordPhase = vi.fn() const created = await performAttach({ store, @@ -235,11 +237,14 @@ describe('structured session acquisition options', () => { callerKey: 'client-1', params: attachParams(CREATE_OPERATION, null, options), now: () => NOW, + recordPhase, onAttached: () => {} }) expect(created).toMatchObject({ ok: true }) - expect(sessionAdapter.acquire).toHaveBeenCalledWith(expect.objectContaining({ options })) + expect(sessionAdapter.acquire).toHaveBeenCalledWith( + expect.objectContaining({ options, recordPhase }) + ) expect(store.getRecord(SESSION)?.options).toEqual(options) }) diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition.ts index ad6cd2433e4..87c63454b24 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-acquisition.ts @@ -9,6 +9,7 @@ import { import { journalIdentityFor } from './structured-agent-session-attach' import type { AttachFlowInput } from './structured-agent-session-attach-flow' import { readNativeSessionOptions } from './structured-agent-session-option-restoration' +import { withAgentSessionCreatePhase } from '../../observability/agent-session-instrumentation' /** A reservation with no process behind it is only a promise to spawn; the * adapter makes it real and the store then grants the writer. */ @@ -43,14 +44,17 @@ export async function acquireOwner( // Retries must recover the original reservation, not mint a second child. spawnToken, ...(record.options ? { options: record.options } : {}), - ...(input.eventSink ? { events: input.eventSink } : {}) - }) - const options = await readNativeSessionOptions({ - adapter: input.adapter, - sessionId: record.sessionId, - fence, - ...(record.options ? { priorOptions: record.options } : {}) + ...(input.eventSink ? { events: input.eventSink } : {}), + ...(input.recordPhase ? { recordPhase: input.recordPhase } : {}) }) + const options = await withAgentSessionCreatePhase('restore_options', input.recordPhase, () => + readNativeSessionOptions({ + adapter: input.adapter, + sessionId: record.sessionId, + fence, + ...(record.options ? { priorOptions: record.options } : {}) + }) + ) if (record.lease.ownerProcess === null) { await input.store.commitProcessIdentity({ sessionId: record.sessionId, diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts index 81ef7f79062..e5daa9991d9 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts @@ -30,6 +30,7 @@ import type { } from '../../../shared/agent-session-wire' import type { ProviderHistoryWindow } from '../agent-session-journal/journal-submission-reconciler' import type { StructuredAgentSessionEventSink } from './structured-agent-session-event-sink' +import type { AgentSessionCreatePhaseRecorder } from '../../observability/agent-session-instrumentation' export class AgentSessionAcquisitionRefusal extends Error { constructor( @@ -139,6 +140,7 @@ export type StructuredAgentSessionAcquireInput = { options?: Readonly> /** Provider events may begin before acquisition returns. */ events?: StructuredAgentSessionEventSink + recordPhase?: AgentSessionCreatePhaseRecorder } export type StructuredAgentSessionSetOptionInput = { diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-attach-flow.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-attach-flow.ts index e9ed9367c66..3abfd42b8aa 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-attach-flow.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-attach-flow.ts @@ -38,6 +38,10 @@ import { importAdoptedTranscript, prepareAdoptedTranscript } from './structured-agent-session-adopted-import' +import { + withAgentSessionCreatePhase, + type AgentSessionCreatePhaseRecorder +} from '../../observability/agent-session-instrumentation' import type { ProviderHistoryWindow } from '../agent-session-journal/journal-submission-reconciler' export type AttachFlowInput = { @@ -49,6 +53,7 @@ export type AttachFlowInput = { callerKey: string params: AgentSessionAttachParams now: () => number + recordPhase?: AgentSessionCreatePhaseRecorder /** Publishes the journal before clients can send against the new owner. `acquiredOwner` is * true only when this attach spawned the provider child, so a re-attach to a live one is not * mistaken for a cold acquire. */ @@ -102,15 +107,17 @@ export async function performAttach( return preparedTranscript } try { - const reserved = await store.reserveOwner( - reserveRequestFor({ - sessionId, - params, - authority: input.authority, - callerKey: input.callerKey, - fingerprint: admitted.fingerprint, - now: input.now() - }) + const reserved = await withAgentSessionCreatePhase('reserve_owner', input.recordPhase, () => + store.reserveOwner( + reserveRequestFor({ + sessionId, + params, + authority: input.authority, + callerKey: input.callerKey, + fingerprint: admitted.fingerprint, + now: input.now() + }) + ) ) record = reserved.record replayed = reserved.disposition === 'replayed' @@ -153,7 +160,9 @@ export async function performAttach( ownerAlreadyAdmitted: agentSessionLeaseAdmitsWriter(record.lease) }) if (!agentSessionLeaseAdmitsWriter(record.lease)) { - const acquired = await acquireOwner(input, record) + const acquired = await withAgentSessionCreatePhase('acquire_owner', input.recordPhase, () => + acquireOwner(input, record) + ) record = acquired.record acquisitionGeneration = acquired.acquisitionGeneration acquiredOwner = true diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-attach-orchestration.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-attach-orchestration.ts index eec3841a08c..c85536ff679 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-attach-orchestration.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-attach-orchestration.ts @@ -28,6 +28,12 @@ import { forgetStructuredAgentSession } from './structured-agent-session-host-li import type { DeferredStructuredAgentSessionEventSink } from './structured-agent-session-event-sink' import { agentSessionJournalCloseRetries } from '../agent-session-journal/journal-close-retry' import type { AgentSessionJournal } from '../agent-session-journal/journal-store' +import { + addAgentSessionCreatePhaseAttributes, + withAgentSessionCreatePhase, + withAgentSessionSpan, + type AgentSessionCreatePhaseRecorder +} from '../../observability/agent-session-instrumentation' export function attachStructuredAgentSession( context: StructuredAgentSessionAttachContext, @@ -37,135 +43,161 @@ export function attachStructuredAgentSession( rewind?: StructuredAgentSessionAcquireInput['rewind'] ): Promise> { const sessionId = params.envelope.sessionId - const attaching = context.serialize(sessionId, async () => { - if (admitRecoveryTicket && !admitRecoveryTicket()) { - return refuseAgentSessionMutation({ - code: 'agent_session_checkpoint_stale', - message: 'The provider-exit recovery ticket is no longer current.' - }) - } - const unreconciled = await context.reconcileLeases(sessionId) - if (unreconciled) { - return refuseAgentSessionMutation(unreconciled) - } - await context.runtimeState.resolveRecovery(sessionId) - // Retries a durable provider-exit journal settlement before a new owner is reserved. Answers - // settled when the record has none pending, so every attach can ask unconditionally. - const settled = await retryPendingStructuredAgentSessionSettlement({ - deps: context.deps, - sessions: context.sessions, - sessionId, - params, - now: () => context.now() - }) - if (!settled) { - return refuseAgentSessionMutation({ - code: 'agent_session_ownership_unknown', - message: 'The provider-exit terminal journal settlement is still pending; retry attach.' - }) - } - const eventSink = context.runtimeState.eventSinkFor(sessionId) - const attached = await performAttach({ - rewind, - store: context.deps.store, - adapter: context.deps.adapter, - journalRoot: context.deps.journalRoot, - eventSink: eventSink.sink, - onAcquiring: async () => { - const barrier = await eventSink.drained() - if (!barrier.ok) { - throw barrier.error - } - eventSink.unbind() - }, - authority: { - spawnToken: () => context.deps.mintSpawnToken?.() ?? randomUUID(), - claimKeyId: context.deps.claimKeyId, - handoffOperationId: params.envelope.clientOperationId, - probe: await context.runtimeState.probeOwner(sessionId), - ...(await pinnedAgentSessionLaunchArgs(context.deps.resolveLaunchArgs, params)), - ...(await pinnedAgentSessionLaunchEnv(context.deps.resolveLaunchEnv, params)) - }, - callerKey, - params, - now: () => context.now(), - // Site 9: this closes the PRIOR map entry it drops, never the provisional - // journal — it has no reference to that one. `onAttached` owns that. - onAttachFailed: async () => { - await forgetStructuredAgentSession(context, sessionId) - eventSink.close() - context.runtimeState.discardEventSink(sessionId) - }, - onAttached: async (attached, acquisitionGeneration, acquiredOwner) => { - const fence = context.deps.store.getRecord(sessionId)?.lease.runtimeFence ?? 0 - const previous = context.sessions.get(sessionId) - const previousFence = previous?.fence - // Site 8: the provisional journal has no owner until the map takes it, - // and the barrier below throws by design. - try { - if (acquiredOwner) { - // Before the drain: the buffered events are the new child's, never a stale row's. - await settleStaleSessionStateOnAcquire({ - journal: attached.journal, - sessionId, - fence, - acquisitionGeneration - }) + const run = (recordPhase?: AgentSessionCreatePhaseRecorder) => + context.serialize(sessionId, async () => { + if (admitRecoveryTicket && !admitRecoveryTicket()) { + return refuseAgentSessionMutation({ + code: 'agent_session_checkpoint_stale', + message: 'The provider-exit recovery ticket is no longer current.' + }) + } + const unreconciled = await withAgentSessionCreatePhase('reconcile_leases', recordPhase, () => + context.reconcileLeases(sessionId) + ) + if (unreconciled) { + return refuseAgentSessionMutation(unreconciled) + } + await withAgentSessionCreatePhase('resolve_recovery', recordPhase, () => + context.runtimeState.resolveRecovery(sessionId) + ) + // Retries a durable provider-exit journal settlement before a new owner is reserved. Answers + // settled when the record has none pending, so every attach can ask unconditionally. + const settled = await withAgentSessionCreatePhase('settlement_retry', recordPhase, () => + retryPendingStructuredAgentSessionSettlement({ + deps: context.deps, + sessions: context.sessions, + sessionId, + params, + now: () => context.now() + }) + ) + if (!settled) { + return refuseAgentSessionMutation({ + code: 'agent_session_ownership_unknown', + message: 'The provider-exit terminal journal settlement is still pending; retry attach.' + }) + } + const eventSink = context.runtimeState.eventSinkFor(sessionId) + const probe = await withAgentSessionCreatePhase('probe_owner', recordPhase, () => + context.runtimeState.probeOwner(sessionId) + ) + const attached = await performAttach({ + rewind, + store: context.deps.store, + adapter: context.deps.adapter, + journalRoot: context.deps.journalRoot, + eventSink: eventSink.sink, + onAcquiring: async () => { + const barrier = await eventSink.drained() + if (!barrier.ok) { + throw barrier.error } - await bindAndDrain(eventSink, attached.journal, fence, (activity) => - context.subscribers.publish(sessionId, attached.journal, activity) - ) - } catch (error) { - await agentSessionJournalCloseRetries.closeOrRetain(attached.journal) - throw error - } - // Site 10: a `set` over a live entry would orphan its handle — and a - // close that REJECTED did not release it. The replacement is therefore - // ABORTED rather than completed over a handle nothing can reach again: - // `previous` stays indexed, so teardown still owns it and can retry. - if (previous && previous.journal !== attached.journal) { + eventSink.unbind() + }, + authority: { + spawnToken: () => context.deps.mintSpawnToken?.() ?? randomUUID(), + claimKeyId: context.deps.claimKeyId, + handoffOperationId: params.envelope.clientOperationId, + probe, + ...(await pinnedAgentSessionLaunchArgs(context.deps.resolveLaunchArgs, params)), + ...(await pinnedAgentSessionLaunchEnv(context.deps.resolveLaunchEnv, params)) + }, + callerKey, + params, + now: () => context.now(), + recordPhase, + // Site 9: this closes the PRIOR map entry it drops, never the provisional + // journal — it has no reference to that one. `onAttached` owns that. + onAttachFailed: async () => { + await forgetStructuredAgentSession(context, sessionId) + eventSink.close() + context.runtimeState.discardEventSink(sessionId) + }, + onAttached: async (attached, acquisitionGeneration, acquiredOwner) => { + const fence = context.deps.store.getRecord(sessionId)?.lease.runtimeFence ?? 0 + const previous = context.sessions.get(sessionId) + const previousFence = previous?.fence + // Site 8: the provisional journal has no owner until the map takes it, + // and the barrier below throws by design. try { - await previous.journal.close() + if (acquiredOwner) { + // Before the drain: the buffered events are the new child's, never a stale row's. + await settleStaleSessionStateOnAcquire({ + journal: attached.journal, + sessionId, + fence, + acquisitionGeneration + }) + } + await bindAndDrain(eventSink, attached.journal, fence, (activity) => + context.subscribers.publish(sessionId, attached.journal, activity) + ) } catch (error) { await agentSessionJournalCloseRetries.closeOrRetain(attached.journal) throw error } - } - context.sessions.set(sessionId, { - journal: attached.journal, - params, - fence, - hasProviderChild: true, - acquisitionGeneration: acquisitionGeneration ?? previous?.acquisitionGeneration ?? null - }) - if (!rewind) { - await recoverStructuredRewind( - context.deps.store, - sessionId, - attached.journal, + // Site 10: a `set` over a live entry would orphan its handle — and a + // close that REJECTED did not release it. The replacement is therefore + // ABORTED rather than completed over a handle nothing can reach again: + // `previous` stays indexed, so teardown still owns it and can retry. + if (previous && previous.journal !== attached.journal) { + try { + await previous.journal.close() + } catch (error) { + await agentSessionJournalCloseRetries.closeOrRetain(attached.journal) + throw error + } + } + context.sessions.set(sessionId, { + journal: attached.journal, + params, fence, - context.deps.adapter, - context.now - ) - } - await recoverInterruptedCompaction(context.deps.store, sessionId, attached.journal, fence) - if (attached.recovery) { - context.subscribers.reset(sessionId, attached.journal, attached.recovery.reset, fence) - } else if (previousFence !== undefined && previousFence !== fence) { - context.subscribers.snapshot(sessionId, attached.journal, fence) - } else { - context.subscribers.publish(sessionId, attached.journal) + hasProviderChild: true, + acquisitionGeneration: acquisitionGeneration ?? previous?.acquisitionGeneration ?? null + }) + if (!rewind) { + await recoverStructuredRewind( + context.deps.store, + sessionId, + attached.journal, + fence, + context.deps.adapter, + context.now + ) + } + await recoverInterruptedCompaction(context.deps.store, sessionId, attached.journal, fence) + if (attached.recovery) { + context.subscribers.reset(sessionId, attached.journal, attached.recovery.reset, fence) + } else if (previousFence !== undefined && previousFence !== fence) { + context.subscribers.snapshot(sessionId, attached.journal, fence) + } else { + context.subscribers.publish(sessionId, attached.journal) + } } + }) + // Why: a failed attach that left no session behind must not strand a bound sink; the runtime + // caches one per session id and would hand this same closed instance to the next attempt. + if (!attached.ok && !context.sessions.has(sessionId)) { + eventSink.close() + context.runtimeState.discardEventSink(sessionId) } + return attached }) - // Why: a failed attach that left no session behind must not strand a bound sink; the runtime - // caches one per session id and would hand this same closed instance to the next attempt. - if (!attached.ok && !context.sessions.has(sessionId)) { - eventSink.close() - context.runtimeState.discardEventSink(sessionId) - } - return attached - }) + const attaching = + params.envelope.expectedRuntimeFence === null + ? withAgentSessionSpan(async (span) => { + const startedAtMs = Date.now() + const phases: Parameters[0][] = [] + try { + return await run((timing) => phases.push(timing)) + } finally { + addAgentSessionCreatePhaseAttributes(span, { + totalDurationMs: Math.max(0, Date.now() - startedAtMs), + phases + }) + } + }) + : run() return context.tasks.trackAttach(attaching) } diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-claude-root-exit.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-claude-root-exit.test.ts new file mode 100644 index 00000000000..a7ca961d13f --- /dev/null +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-claude-root-exit.test.ts @@ -0,0 +1,140 @@ +import { mkdtemp, rm } from 'node:fs/promises' +import { tmpdir } from 'node:os' +import { join } from 'node:path' +import { afterEach, describe, expect, it, vi } from 'vitest' +import { + PROVIDER_SESSION_ID, + adapterFor, + fakeClaude, + identityFor +} from '../../claude/claude-structured-session-test-support' +import { AgentSessionRecordStore } from '../../runtime/agent-session-record-store' +import { createTrackedJournalOpener } from '../agent-session-journal/journal-store-test-open' +import type { AgentSessionAttachParams } from './structured-agent-session-attach' +import { evictHeldStructuredAgentSession } from './structured-agent-session-host-lifetime' +import { StructuredAgentSessionHostRuntimeState } from './structured-agent-session-host-runtime-state' +import type { StructuredAgentSessionHostSession } from './structured-agent-session-host-types' + +const NOW = 1_788_727_031_330 +const roots: string[] = [] +const journals = createTrackedJournalOpener() + +afterEach(async () => { + await journals.closeAll() + await Promise.all(roots.splice(0).map((root) => rm(root, { recursive: true, force: true }))) +}) + +describe('Claude root-exit eviction', () => { + it('releases a captured live claim after the provider root exits', async () => { + const root = await mkdtemp(join(tmpdir(), 'orca-claude-root-exit-')) + roots.push(root) + const store = await AgentSessionRecordStore.open({ directory: root, hostId: 'local' }) + const claude = fakeClaude({ + unprovenCloseVerdict: { root: 'exited', tree: 'unverifiable' } + }) + const adapter = adapterFor(claude) + const reservation = await store.reserveOwner({ + sessionId: 'session-1', + location: { + executionHostId: 'local', + workspaceId: 'folder-1', + workspaceKind: 'folder', + wslDistro: null + }, + provider: 'claude', + accountHome: { variable: 'CLAUDE_CONFIG_DIR', path: root }, + runtimeKind: 'native', + expectedFence: null, + spawnToken: 'spawn-1', + claimKeyId: 'key-1', + handoffOperationId: null, + probe: { outcome: 'reservation-unused' }, + operation: { + callerKey: 'test', + operationId: `${NOW}-00000000000000000000000000000001`, + fingerprint: 'create' + }, + now: NOW + }) + const fence = reservation.record.lease.runtimeFence + const acquisition = await adapter.acquire({ + identity: { ...identityFor(), hostId: 'local', workspaceId: 'folder-1' }, + fence, + spawnToken: 'spawn-1' + }) + await store.commitProcessIdentity({ + sessionId: 'session-1', + fence, + process: acquisition.process, + now: NOW + }) + await store.proveOwner({ + sessionId: 'session-1', + fence, + link: acquisition.link, + now: NOW + }) + const journal = await journals.open({ + identity: { ...identityFor(), hostId: 'local', workspaceId: 'folder-1' }, + journalDir: join(root, 'journal') + }) + const close = vi.spyOn(journal, 'close') + const params: AgentSessionAttachParams = { + envelope: { + sessionId: 'session-1', + clientOperationId: `${NOW}-00000000000000000000000000000001`, + expectedRuntimeFence: fence, + payloadFingerprint: 'create' + }, + location: { + executionHostId: 'local', + workspaceId: 'folder-1', + workspaceKind: 'folder', + wslDistro: null + }, + provider: 'claude', + agent: 'claude', + accountHome: { variable: 'CLAUDE_CONFIG_DIR', path: root }, + runtimeKind: 'native', + providerHandle: { kind: 'claude', sessionId: PROVIDER_SESSION_ID, leafUuid: null } + } + const sessions = new Map([ + [ + 'session-1', + { + journal, + params, + fence, + hasProviderChild: true, + acquisitionGeneration: acquisition.acquisitionGeneration ?? null + } + ] + ]) + const deps = { store, adapter, journalRoot: root, claimKeyId: 'key-1' } + const runtimeState = new StructuredAgentSessionHostRuntimeState(deps) + + claude.connections[0]!.handlers.onExit?.(new Error('provider exited')) + await expect( + evictHeldStructuredAgentSession( + { + deps, + runtimeState, + sessions, + now: () => NOW + 30 * 60_000, + forgetStatus: vi.fn() + }, + 'session-1' + ) + ).resolves.toBeUndefined() + + expect(store.getRecord('session-1')?.lease).toMatchObject({ + claimStatus: 'released', + ownerProcess: null, + deathEvidence: { kind: 'exit-observed' } + }) + expect(sessions.size).toBe(0) + expect(close).toHaveBeenCalledOnce() + // Why: releasing the root-owned lease does not claim unverifiable descendants stopped. + await expect(adapter.closeSession('session-1')).rejects.toThrow('provider exited') + }) +}) diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.test.ts index 90b50d3cb90..36cecd44807 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.test.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.test.ts @@ -5,6 +5,10 @@ import { STRUCTURED_AGENT_SESSION_EVICTION_STEPS, type StructuredAgentSessionEvictionContext } from './structured-agent-session-eviction' +import { + AgentSessionAcquisitionRootExitObservedError, + AgentSessionPreSpawnError +} from './structured-agent-session-adapter' import { StructuredAgentSessionHostRuntimeState } from './structured-agent-session-host-runtime-state' function context(): StructuredAgentSessionEvictionContext & { order: string[] } { @@ -141,6 +145,28 @@ describe('rows the provider emits while closing', () => { // `closeSession` returning false means the adapter could not prove the child exited and has kept // the session indexed on purpose so a retry can reach it. describe('a child that will not stop', () => { + it.each([ + new AgentSessionAcquisitionRootExitObservedError(new Error('root exited')), + new AgentSessionPreSpawnError(new Error('spawn failed')) + ])('continues eviction after an actionable provider verdict', async (error) => { + const ctx = context() + ctx.adapter.closeSession = vi.fn(async () => { + throw error + }) + + await evictStructuredAgentSession(ctx) + + expect(ctx.order).toEqual([ + 'drained', + 'settleWork', + 'unbind', + 'close', + 'discardSink', + 'releaseLease', + 'forget' + ]) + }) + it('aborts without forgetting the session, so the next close is a real retry', async () => { const ctx = context() ctx.adapter.closeSession = vi.fn(async () => false) diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.ts index 7264ca4a338..04840c18d5f 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-eviction.ts @@ -17,7 +17,11 @@ // reach it; forgetting it anyway stranded the process forever and reported success. Leaving the // session in place is what makes the next close a real retry instead of a no-op. -import type { StructuredAgentSessionAdapter } from './structured-agent-session-adapter' +import { + AgentSessionAcquisitionRootExitObservedError, + AgentSessionPreSpawnError, + type StructuredAgentSessionAdapter +} from './structured-agent-session-adapter' import type { DeferredStructuredAgentSessionEventSink } from './structured-agent-session-event-sink' export type StructuredAgentSessionEvictionContext = { @@ -59,9 +63,19 @@ export const STRUCTURED_AGENT_SESSION_EVICTION_STEPS: readonly StructuredAgentSe // An adapter with no close has nothing to stop; anything else must PROVE the exit. const stop = context.adapter.disposeSession ?? context.adapter.closeSession if (stop) { - const stopped = await stop.call(context.adapter, context.sessionId) - if (stopped !== true) { - throw new Error('provider child exit was not proven') + try { + const stopped = await stop.call(context.adapter, context.sessionId) + if (stopped !== true) { + throw new Error('provider child exit was not proven') + } + } catch (error) { + // Why: lease ownership follows the provider root; known-live descendants still throw unproven. + if ( + !(error instanceof AgentSessionAcquisitionRootExitObservedError) && + !(error instanceof AgentSessionPreSpawnError) + ) { + throw error + } } } context.onProviderChildStopped?.() diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-handoff-options.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-handoff-options.test.ts index 210defed0c5..420129792c9 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-handoff-options.test.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-handoff-options.test.ts @@ -280,12 +280,15 @@ describe('structured session handoff options', () => { }) expect(await host.requestHandoff(CALLER, handoff('to-tui'))).toMatchObject({ ok: true }) - await vi.waitFor(async () => - expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'tui' }) + // Real-timer poll: the suite's default 1000ms budget is tight under a loaded CI shard. + await vi.waitFor( + async () => expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'tui' }), + { timeout: 5000 } ) expect(await host.requestHandoff(CALLER, handoff('to-native'))).toMatchObject({ ok: true }) - await vi.waitFor(async () => - expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'native' }) + await vi.waitFor( + async () => expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'native' }), + { timeout: 5000 } ) expect(launchedOptions).toEqual([ diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-lease-renewer.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-lease-renewer.test.ts index e5b97dea189..f0540b2b225 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-lease-renewer.test.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-lease-renewer.test.ts @@ -189,8 +189,10 @@ describe('structured agent-session lease renewal', () => { renewer.start() now += 10_000 await vi.advanceTimersByTimeAsync(10_000) - await vi.waitFor(() => - expect(store.getRecord('session-renewal')?.lease.lastRenewedAt).toBe(now) + // Real-timer poll: the suite's default 1000ms budget is tight under a loaded CI shard. + await vi.waitFor( + () => expect(store.getRecord('session-renewal')?.lease.lastRenewedAt).toBe(now), + { timeout: 5000 } ) } finally { renewer.stop() diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-surface-lifetime.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-surface-lifetime.test.ts index 2538b61c84b..11b63781544 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-surface-lifetime.test.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-surface-lifetime.test.ts @@ -816,8 +816,10 @@ describe('a chat handed to a terminal and taken back', () => { openHandoffHost(transcriptPath) await attach() expect(await host.requestHandoff(CALLER, handoffRequest('to-tui'))).toMatchObject({ ok: true }) - await vi.waitFor(async () => - expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'tui' }) + // Real-timer poll: the suite's default 1000ms budget is tight under a loaded CI shard. + await vi.waitFor( + async () => expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'tui' }), + { timeout: 5000 } ) // The app restarts and cannot reach the terminal, so this generation restores the session for @@ -842,8 +844,10 @@ describe('a chat handed to a terminal and taken back', () => { expect(await host.requestHandoff(CALLER, handoffRequest('to-native'))).toMatchObject({ ok: true }) - await vi.waitFor(async () => - expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'native' }) + // Real-timer poll: the suite's default 1000ms budget is tight under a loaded CI shard. + await vi.waitFor( + async () => expect(await host.handoffStatus(SESSION)).toMatchObject({ owner: 'native' }), + { timeout: 5000 } ) expect(host['sessions'].get(SESSION)?.hasProviderChild).toBe(true) await sendPending('pending when the retaken chat closes') diff --git a/src/main/observability/agent-session-instrumentation.ts b/src/main/observability/agent-session-instrumentation.ts new file mode 100644 index 00000000000..85ecd4f0d45 --- /dev/null +++ b/src/main/observability/agent-session-instrumentation.ts @@ -0,0 +1,83 @@ +import { withSpan, type ActiveSpan } from './tracer' + +export type AgentSessionCreatePhase = + | 'reconcile_leases' + | 'resolve_recovery' + | 'settlement_retry' + | 'probe_owner' + | 'reserve_owner' + | 'acquire_owner' + | 'auth_settle' + | 'spawn' + | 'init' + | 'restore_options' + | 'publish' + +export type AgentSessionCreatePhaseTiming = { + readonly phase: AgentSessionCreatePhase + readonly startedAtMs: number + readonly durationMs: number +} + +export type AgentSessionCreatePhaseRecorder = (timing: AgentSessionCreatePhaseTiming) => void + +/** Wrap the rare user-created structured session; no sampling is needed for this event. */ +export async function withAgentSessionSpan(fn: (span: ActiveSpan) => Promise): Promise { + return withSpan('agentSession.create', fn, { attributes: { kind: 'agent-session' } }) +} + +export async function withAgentSessionCreatePhase( + phase: AgentSessionCreatePhase, + record: AgentSessionCreatePhaseRecorder | undefined, + fn: () => Promise +): Promise { + const startedAtMs = Date.now() + try { + return await fn() + } finally { + record?.({ phase, startedAtMs, durationMs: Math.max(0, Date.now() - startedAtMs) }) + } +} + +/** Records the closed create vocabulary without copying branch, path, prompt, or session content. */ +export function addAgentSessionCreatePhaseAttributes( + span: ActiveSpan, + timing: { + totalDurationMs: number + phases: readonly AgentSessionCreatePhaseTiming[] + } +): void { + span.setAttribute('agent_session.create.total_ms', Math.round(timing.totalDurationMs)) + const phaseDurations = new Map() + for (const phase of timing.phases) { + phaseDurations.set(phase.phase, (phaseDurations.get(phase.phase) ?? 0) + phase.durationMs) + } + for (const [phase, durationMs] of phaseDurations) { + span.setAttribute(`agent_session.create.phase.${phase}_ms`, Math.round(durationMs)) + } + const intervals = [...timing.phases] + .map(({ startedAtMs, durationMs }) => [startedAtMs, startedAtMs + durationMs] as const) + .sort((left, right) => left[0] - right[0]) + let coveredMs = 0 + let openedAt: number | null = null + let closesAt = 0 + for (const [start, end] of intervals) { + if (openedAt === null) { + openedAt = start + closesAt = end + } else if (start <= closesAt) { + closesAt = Math.max(closesAt, end) + } else { + coveredMs += closesAt - openedAt + openedAt = start + closesAt = end + } + } + if (openedAt !== null) { + coveredMs += closesAt - openedAt + } + span.setAttribute( + 'agent_session.create.unattributed_ms', + Math.max(0, Math.round(timing.totalDurationMs - coveredMs)) + ) +} diff --git a/src/main/observability/instrumentation.test.ts b/src/main/observability/instrumentation.test.ts index 452b5cd155c..62894c0ef9c 100644 --- a/src/main/observability/instrumentation.test.ts +++ b/src/main/observability/instrumentation.test.ts @@ -6,6 +6,10 @@ import { addWorktreeCreatePhaseAttributes, withGitSpan } from './instrumentation' +import { + addAgentSessionCreatePhaseAttributes, + withAgentSessionSpan +} from './agent-session-instrumentation' type SpanRecord = { readonly name: string @@ -249,3 +253,36 @@ describe('addWorktreeCreatePhaseAttributes', () => { expect(attributes['worktree.create.prepared_checkout']).toBeUndefined() }) }) + +describe('agentSession.create tracing', () => { + it('emits one span with the closed phase vocabulary and no user content attributes', async () => { + await withAgentSessionSpan(async (span) => { + addAgentSessionCreatePhaseAttributes(span, { + totalDurationMs: 66, + phases: [ + { phase: 'reconcile_leases', startedAtMs: 0, durationMs: 1 }, + { phase: 'resolve_recovery', startedAtMs: 1, durationMs: 2 }, + { phase: 'settlement_retry', startedAtMs: 3, durationMs: 3 }, + { phase: 'probe_owner', startedAtMs: 6, durationMs: 4 }, + { phase: 'reserve_owner', startedAtMs: 10, durationMs: 5 }, + { phase: 'acquire_owner', startedAtMs: 15, durationMs: 6 }, + { phase: 'auth_settle', startedAtMs: 21, durationMs: 7 }, + { phase: 'spawn', startedAtMs: 28, durationMs: 8 }, + { phase: 'init', startedAtMs: 36, durationMs: 9 }, + { phase: 'restore_options', startedAtMs: 45, durationMs: 10 }, + { phase: 'publish', startedAtMs: 55, durationMs: 11 } + ] + }) + }) + + const records = sink.records.filter((record) => record.name === 'agentSession.create') + expect(records).toHaveLength(1) + const attributes = records[0]!.attributes + expect(attributes['agent_session.create.phase.reconcile_leases_ms']).toBe(1) + expect(attributes['agent_session.create.phase.publish_ms']).toBe(11) + expect(attributes['agent_session.create.unattributed_ms']).toBe(0) + expect(Object.keys(attributes).some((key) => /path|branch|prompt|content/i.test(key))).toBe( + false + ) + }) +}) diff --git a/src/main/runtime/agent-session-surface-release-transition.ts b/src/main/runtime/agent-session-surface-release-transition.ts index 61da9021a5f..3d1f6d33954 100644 --- a/src/main/runtime/agent-session-surface-release-transition.ts +++ b/src/main/runtime/agent-session-surface-release-transition.ts @@ -2,8 +2,8 @@ // // Every other release in the wire needs a probe, because every other release is about a process // somebody else started and nobody watched die. This one is different: the host stopped its own -// child through the adapter and the adapter proved the exit before this runs, so the evidence is -// `exit-observed` rather than an adjudicated absence. +// lease-owning provider root through the adapter. Its observed exit is sufficient because the +// lease follows that root, even when descendants remain `unverifiable`. // // The fence still moves. A released lease at the old fence would let a mutation a client queued // against the dead generation land on the next one. diff --git a/src/main/runtime/fetch-remote-cache.test.ts b/src/main/runtime/fetch-remote-cache.test.ts index 5f0b8e249d6..b8a87ac9536 100644 --- a/src/main/runtime/fetch-remote-cache.test.ts +++ b/src/main/runtime/fetch-remote-cache.test.ts @@ -1,3 +1,5 @@ +import { worktreeCreateGit } from '../git/worktree-create-git-executor' +import { resolveGitAdmissionTier } from '../git/command-runner/git-operation-executor' import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' // Why: these tests cover the §3.3 Lifecycle rules on @@ -78,6 +80,41 @@ function mockFetchResults(results: unknown[]): void { } describe('OrcaRuntimeService.fetchRemoteWithCache', () => { + it.each([undefined, 'Ubuntu'])( + 'inherits create priority through fetch adapters on %s', + async (wslDistro) => + worktreeCreateGit.run(async () => { + gitExecFileAsyncMock.mockImplementation(async (argv: string[]) => { + expect(resolveGitAdmissionTier()).toBe('interactive') + return { + stdout: argv[0] === 'remote' ? 'origin\n' : '/priority-repo/.git\n', + stderr: '' + } + }) + const runtime = new OrcaRuntimeService() + const options = wslDistro ? { wslDistro } : {} + const base = await runtime.resolveRemoteTrackingBase( + '/priority-repo', + 'origin/main', + options + ) + expect(base).not.toBeNull() + if (!base) { + throw new Error('expected a remote base') + } + await expect(runtime.hasRemoteTrackingRef('/priority-repo', base, options)).resolves.toBe( + true + ) + await expect( + runtime.getOrStartRemoteTrackingBaseRefresh('/priority-repo', base, options) + ).resolves.toEqual({ ok: true }) + expect(fetchCallCount()).toBe(1) + for (const [, execOptions] of gitExecFileAsyncMock.mock.calls) { + expect(execOptions).toMatchObject({ cwd: '/priority-repo', ...options }) + } + }) + ) + beforeEach(() => { gitExecFileAsyncMock.mockReset() }) diff --git a/src/main/runtime/orca-runtime-create-managed-remote-worktree.ts b/src/main/runtime/orca-runtime-create-managed-remote-worktree.ts index dfe1124cf6f..5d2cea95b5e 100644 --- a/src/main/runtime/orca-runtime-create-managed-remote-worktree.ts +++ b/src/main/runtime/orca-runtime-create-managed-remote-worktree.ts @@ -1,5 +1,6 @@ // @ts-nocheck -- mechanically split from OrcaRuntimeService; behavior is covered by AST equivalence and characterization tests. import { OrcaRuntimeWithCreateManagedWorktree } from './orca-runtime-create-managed-worktree' +import type { LocalGitExecOptions } from '../git/repo-default-base-ref' import type { Repo } from '../../shared/repo-types' import type { RuntimeRemoteWorktreeCreateArgs } from './runtime-remote-worktree-create-request' import type { CreateWorktreeResult } from '../../shared/worktree/create-types' @@ -51,7 +52,7 @@ export class OrcaRuntimeWithCreateManagedRemoteWorktree extends OrcaRuntimeWithC async getCanonicalFetchKey( repoPath: string, remote: string, - gitOptions: { wslDistro?: string } = {} + gitOptions: LocalGitExecOptions = {} ): Promise { return await this.remoteFetches.getCanonicalFetchKey(repoPath, remote, gitOptions) } @@ -59,7 +60,7 @@ export class OrcaRuntimeWithCreateManagedRemoteWorktree extends OrcaRuntimeWithC async getOrStartRemoteFetch( repoPath: string, remote: string, - gitOptions: { wslDistro?: string } = {} + gitOptions: LocalGitExecOptions = {} ): Promise { return await this.remoteFetches.getOrStartRemoteFetch(repoPath, remote, gitOptions) } @@ -67,7 +68,7 @@ export class OrcaRuntimeWithCreateManagedRemoteWorktree extends OrcaRuntimeWithC async getOrStartRemoteTrackingBaseRefresh( repoPath: string, base: RemoteTrackingBase, - gitOptions: { wslDistro?: string } = {} + gitOptions: LocalGitExecOptions = {} ): Promise { return await this.remoteFetches.getOrStartRemoteTrackingBaseRefresh(repoPath, base, gitOptions) } @@ -75,7 +76,7 @@ export class OrcaRuntimeWithCreateManagedRemoteWorktree extends OrcaRuntimeWithC async fetchRemoteWithCache( repoPath: string, remote: string, - gitOptions: { wslDistro?: string } = {} + gitOptions: LocalGitExecOptions = {} ): Promise { await this.remoteFetches.fetchRemoteWithCache(repoPath, remote, gitOptions) } @@ -83,7 +84,7 @@ export class OrcaRuntimeWithCreateManagedRemoteWorktree extends OrcaRuntimeWithC async resolveRemoteTrackingBase( repoPath: string, baseBranch: string, - gitOptions: { wslDistro?: string } = {} + gitOptions: LocalGitExecOptions = {} ): Promise { return await this.remoteFetches.resolveRemoteTrackingBase(repoPath, baseBranch, gitOptions) } @@ -91,7 +92,7 @@ export class OrcaRuntimeWithCreateManagedRemoteWorktree extends OrcaRuntimeWithC async hasRemoteTrackingRef( repoPath: string, base: RemoteTrackingBase, - gitOptions: { wslDistro?: string } = {} + gitOptions: LocalGitExecOptions = {} ): Promise { return await this.remoteFetches.hasRemoteTrackingRef(repoPath, base, gitOptions) } diff --git a/src/main/runtime/orca-runtime-create-managed-worktree.ts b/src/main/runtime/orca-runtime-create-managed-worktree.ts index f17a2285b83..35968150c8e 100644 --- a/src/main/runtime/orca-runtime-create-managed-worktree.ts +++ b/src/main/runtime/orca-runtime-create-managed-worktree.ts @@ -8,6 +8,7 @@ import { resolveWorktreeCreateRoute } from '../worktree-create-execution-host-ro import { ExecutionHostNotDispatchableError } from '../providers/execution-host-provider-dispatch' import { createRuntimeFolderWorktree } from './runtime-folder-worktree-create' import { createRuntimeLocalManagedWorktree } from './runtime-local-worktree-create' +import type { PreparationRearmHolder } from '../worktree-create-preparation' import { prepareRuntimeLocalWorktreeSetup } from './runtime-local-worktree-setup' import { invalidateAuthorizedRootsCache } from '../ipc/filesystem-auth' import { startRuntimeLocalWorktreeTerminals } from './runtime-local-worktree-terminal-startup' @@ -15,6 +16,21 @@ import { startRuntimeLocalWorktreeTerminals } from './runtime-local-worktree-ter export class OrcaRuntimeWithCreateManagedWorktree extends OrcaRuntimeWithGetWorktreeTerminalProvisioningHost { async createManagedWorktree( args: RuntimeManagedWorktreeCreateArgs + ): Promise { + // Why a holder fired in `finally`: consuming a prepared checkout empties a pool slot, so a + // create that fails anywhere after that — include copy, push target, terminal startup — must + // still arm the replacement. On success it fires last, once the startup terminals are up. + const rearm: PreparationRearmHolder = { fire: () => {} } + try { + return await this.performManagedWorktreeCreate(args, rearm) + } finally { + rearm.fire() + } + } + + private async performManagedWorktreeCreate( + args: RuntimeManagedWorktreeCreateArgs, + rearm: PreparationRearmHolder ): Promise { if (!this.store) { throw new Error('runtime_unavailable') @@ -158,7 +174,8 @@ export class OrcaRuntimeWithCreateManagedWorktree extends OrcaRuntimeWithGetWork fetchRemote: (path, remote, ...options) => this.fetchRemoteWithCache(path, remote, ...options), onWorktreeMetadataPersisted: (persistedWorktree) => - this.recordCreatedWorktreeLineage(persistedWorktree, lineageResolution) + this.recordCreatedWorktreeLineage(persistedWorktree, lineageResolution), + rearm }) const settings = createSettings const { lineage, workspaceLineage, warnings: lineageWarnings } = metadataResult diff --git a/src/main/runtime/orca-runtime-create-terminal-desktop.ts b/src/main/runtime/orca-runtime-create-terminal-desktop.ts index 7e02a749447..9cd955428ee 100644 --- a/src/main/runtime/orca-runtime-create-terminal-desktop.ts +++ b/src/main/runtime/orca-runtime-create-terminal-desktop.ts @@ -18,6 +18,13 @@ export async function createDesktopTerminal( const launchOpts = workspace ? await runtime.resolveAgentTerminalCreateOptions(workspace, opts) : opts + // `resolveAgentTerminalCreateOptions` refuses an unapplicable shell, and it only runs with a + // workspace; a worktree-less create has no execution host to apply one to either. + if (!workspace && opts.shellOverride) { + throw new Error( + `--shell ${opts.shellOverride} needs a workspace, because the shell is resolved on the workspace's execution host. No terminal was created.` + ) + } const worktreeId = workspace?.id const cwd = workspace ? runtime.resolveWorkspaceTerminalStartupCwd(workspace, launchOpts.cwd) @@ -63,6 +70,7 @@ export async function createDesktopTerminal( ...(launchOpts.launchAgent ? { launchAgent: launchOpts.launchAgent } : {}), ...(launchOpts.viewMode ? { viewMode: launchOpts.viewMode } : {}), startupCommandDelivery: launchOpts.startupCommandDelivery, + ...(launchOpts.shellOverride ? { shellOverride: launchOpts.shellOverride } : {}), title: launchOpts.title, activate: presentation === 'focused', ...(presentation ? { presentation } : {}), diff --git a/src/main/runtime/orca-runtime-create-terminal.ts b/src/main/runtime/orca-runtime-create-terminal.ts index ec8a3e78941..5e7d4393a6d 100644 --- a/src/main/runtime/orca-runtime-create-terminal.ts +++ b/src/main/runtime/orca-runtime-create-terminal.ts @@ -146,6 +146,7 @@ export class OrcaRuntimeWithCreateTerminal extends OrcaRuntimeWithTerminalCreate preAllocatedHandle, tabId, leafId, + ...(launchOpts.shellOverride ? { shellOverride: launchOpts.shellOverride } : {}), ...(terminalColorQueryReplies ? { terminalColorQueryReplies } : {}), ...(launchOpts.agentSessionClaim ? { diff --git a/src/main/runtime/orca-runtime-resolve-worktree-removal-target.ts b/src/main/runtime/orca-runtime-resolve-worktree-removal-target.ts index 44f4524c782..795531bbc4a 100644 --- a/src/main/runtime/orca-runtime-resolve-worktree-removal-target.ts +++ b/src/main/runtime/orca-runtime-resolve-worktree-removal-target.ts @@ -16,6 +16,9 @@ import type { TerminalWorkspaceLaunchScope } from './runtime-legacy-worker-termi import type { TerminalCreateOptions } from './runtime-terminal-contracts' import { resolveLocalWindowsAgentStartupShell } from '../../shared/windows-terminal-shell' import { isTuiAgentEnabled } from '../../shared/tui-agent-selection' +import { terminalShellOverrideRefusal } from './terminal-shell-override-host-support' +import { resolveTerminalStartupCwd } from '../../shared/terminal-startup-cwd' +import { resolveLocalProjectRuntimeForWorktreeId } from '../local-project-runtime-resolution' import { resolveBareAgentLaunchCommand } from './runtime-agent-launch-resolution' import { buildAgentStartupPlan } from '../../shared/tui-agent-startup' import { @@ -152,6 +155,23 @@ export class OrcaRuntimeWithResolveWorktreeRemovalTarget extends OrcaRuntimeWith workspace: TerminalWorkspaceLaunchScope, opts: TerminalCreateOptions ): Promise { + // Before any early return: every create lane funnels through here, and a host that cannot + // apply the requested shell must refuse rather than spawn its default one. + const shellRefusal = terminalShellOverrideRefusal({ + shellOverride: opts.shellOverride, + connectionId: workspace.connectionId, + platform: process.platform, + projectRuntime: + opts.shellOverride && this.store + ? resolveLocalProjectRuntimeForWorktreeId(this.store, workspace.id) + : undefined, + // Same resolution as the spawn lanes below, so the refusal judges the cwd the PTY gets. + cwd: resolveTerminalStartupCwd(workspace.path, opts.cwd) ?? workspace.path, + workspacePath: workspace.path + }) + if (shellRefusal) { + throw shellRefusal + } // Why: raw shell commands like `codex exec` must remain user-authored shell. // Only unmanaged, repo-backed, bare agent launches get Settings defaults. const callerSuppliedLaunch = @@ -186,7 +206,8 @@ export class OrcaRuntimeWithResolveWorktreeRemovalTarget extends OrcaRuntimeWith const queuedShell = resolveLocalWindowsAgentStartupShell({ platform, isRemote, - terminalWindowsShell: settings.terminalWindowsShell + // A requested shell is the one this PTY will actually be, so it owns the quoting family. + terminalWindowsShell: opts.shellOverride ?? settings.terminalWindowsShell }) if (opts.startupAgent && !isTuiAgentEnabled(opts.startupAgent, settings.disabledTuiAgents)) { throw new Error(`Agent ${opts.startupAgent} is disabled. Choose an enabled agent.`) diff --git a/src/main/runtime/orca-runtime-start-tui-idle-visible-read-probe.ts b/src/main/runtime/orca-runtime-start-tui-idle-visible-read-probe.ts index adaa5fde72f..aa630277078 100644 --- a/src/main/runtime/orca-runtime-start-tui-idle-visible-read-probe.ts +++ b/src/main/runtime/orca-runtime-start-tui-idle-visible-read-probe.ts @@ -96,7 +96,10 @@ export class OrcaRuntimeWithStartTuiIdleVisibleReadProbe extends OrcaRuntimeWith : buildTerminalWaitResult(handle, 'tui-idle', leaf) } - async waitForSetupTerminalCompletion(handle: string): Promise<{ exitCode: number | null }> { + async waitForSetupTerminalCompletion( + handle: string, + signal?: AbortSignal + ): Promise<{ exitCode: number | null }> { const ptyId = this.getLivePtyForHandle(handle)?.pty.ptyId if (!ptyId) { throw new Error('terminal_handle_stale') @@ -106,9 +109,13 @@ export class OrcaRuntimeWithStartTuiIdleVisibleReadProbe extends OrcaRuntimeWith return await new Promise<{ exitCode: number | null }>((resolve, reject) => { let settled = false let unsubscribe: (() => void) | null = null + const onAbort = (): void => { + fail(signal?.reason ?? new Error('request_aborted')) + } const cleanup = (): void => { unsubscribe?.() exitAbort.abort() + signal?.removeEventListener('abort', onAbort) } const finish = (exitCode: number | null): void => { if (settled) { @@ -127,6 +134,11 @@ export class OrcaRuntimeWithStartTuiIdleVisibleReadProbe extends OrcaRuntimeWith cleanup() reject(error) } + if (signal?.aborted) { + onAbort() + return + } + signal?.addEventListener('abort', onAbort, { once: true }) const scanner = completionToken ? createSetupCompletionScanner(completionToken, finish) : null if (scanner) { diff --git a/src/main/runtime/orca-runtime-test-mocks.spec.ts b/src/main/runtime/orca-runtime-test-mocks.spec.ts index 221abb8131e..1203f069a68 100644 --- a/src/main/runtime/orca-runtime-test-mocks.spec.ts +++ b/src/main/runtime/orca-runtime-test-mocks.spec.ts @@ -288,3 +288,6 @@ export type { WorkspaceLineage, WorktreeLineage } from '../../shared/worktree/li export type { WorkspaceSessionState } from '../../shared/workspace-session-state-types' export type { Worktree } from '../../shared/worktree/types' export type { WorktreeMeta } from '../../shared/worktree/meta-types' + +export const resolveDefaultBaseRefWithLocalGit = + importedValues.exportedResolveDefaultBaseRefWithLocalGit diff --git a/src/main/runtime/orca-runtime-test-mocks/imported-values.spec.ts b/src/main/runtime/orca-runtime-test-mocks/imported-values.spec.ts index bf7e12280da..d0a0bae397f 100644 --- a/src/main/runtime/orca-runtime-test-mocks/imported-values.spec.ts +++ b/src/main/runtime/orca-runtime-test-mocks/imported-values.spec.ts @@ -48,7 +48,11 @@ import { getDefaultTabsLaunch, shouldRunSetupForCreate } from '../../effective-hook-config' -import { getBaseRefDefault, getBranchConflictKind } from '../../git/repo' +import { + getBaseRefDefault, + getBranchConflictKind, + resolveDefaultBaseRefWithLocalGit +} from '../../git/repo' import { OrchestrationDb as RuntimeOrchestrationDb } from '../orchestration/db' import { AUTHORITATIVE_TERMINAL_SNAPSHOT_TIMEOUT_MS, @@ -248,3 +252,5 @@ export const exportedVi = vi export const exportedWin32 = win32 export const exportedWorktreePathComparison = worktreePathComparison export const exportedWriteFile = writeFile + +export const exportedResolveDefaultBaseRefWithLocalGit = resolveDefaultBaseRefWithLocalGit diff --git a/src/main/runtime/orca-runtime-test-mocks/setup.spec.ts b/src/main/runtime/orca-runtime-test-mocks/setup.spec.ts index 664fc95b3ec..f85c353575e 100644 --- a/src/main/runtime/orca-runtime-test-mocks/setup.spec.ts +++ b/src/main/runtime/orca-runtime-test-mocks/setup.spec.ts @@ -555,6 +555,13 @@ vi.mock('../../git/repo', async (importOriginal) => { .mockImplementation((path: string, options?: { wslDistro?: string }) => options?.wslDistro ? actualGetBaseRefDefault(path, options) : Promise.resolve('origin/main') ), + resolveDefaultBaseRefWithLocalGit: vi + .fn() + .mockImplementation((options: { cwd: string; wslDistro?: string }) => + options.wslDistro + ? actualGetBaseRefDefault(options.cwd, options) + : Promise.resolve('origin/main') + ), getBranchConflictKind: vi.fn().mockResolvedValue(null) } }) diff --git a/src/main/runtime/orca-runtime-tests/local-worktree-creation-part-02.spec.ts b/src/main/runtime/orca-runtime-tests/local-worktree-creation-part-02.spec.ts index a12ffabcd61..195f22e7894 100644 --- a/src/main/runtime/orca-runtime-tests/local-worktree-creation-part-02.spec.ts +++ b/src/main/runtime/orca-runtime-tests/local-worktree-creation-part-02.spec.ts @@ -63,7 +63,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'feature/fix', 'abc123', - false + false, + false, + {} ) expect(gitSpy).toHaveBeenCalledWith( ['branch', '--set-upstream-to', 'origin/feature/fix', 'feature/fix'], @@ -119,7 +121,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'feature/fix', sha, - false + false, + false, + {} ) expect(result.worktree).toMatchObject({ path: createdWorktree.path, @@ -188,7 +192,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'feature/bitbucket', 'abc123', - false + false, + false, + {} ) expect(result.worktree).toMatchObject({ path: createdWorktree.path, @@ -249,7 +255,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'feature/fix-2', 'abc123', - false + false, + false, + {} ) } finally { gitSpy.mockRestore() @@ -296,7 +304,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'feature/fix-2', 'abc123', - false + false, + false, + {} ) } finally { gitSpy.mockRestore() @@ -353,7 +363,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'feature/fix-2', 'abc123', - false + false, + false, + {} ) } finally { gitSpy.mockRestore() @@ -402,7 +414,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'feature/fix-2', 'abc123', - false + false, + false, + {} ) } finally { gitSpy.mockRestore() diff --git a/src/main/runtime/orca-runtime-tests/local-worktree-creation.spec.ts b/src/main/runtime/orca-runtime-tests/local-worktree-creation.spec.ts index 3dcd2d0584c..0669ebe8279 100644 --- a/src/main/runtime/orca-runtime-tests/local-worktree-creation.spec.ts +++ b/src/main/runtime/orca-runtime-tests/local-worktree-creation.spec.ts @@ -6,7 +6,7 @@ import { computeWorktreePathMock, deleteWorktreeHistoryDirMock, ensurePathWithinWorkspaceMock, - getBaseRefDefault, + resolveDefaultBaseRefWithLocalGit, getBranchConflictKind, getPRForBranchMock, gitRunner, @@ -348,7 +348,7 @@ describe('OrcaRuntimeService', () => { suggestLocalBaseRefUpdate: true } ) - expect(getBaseRefDefault).toHaveBeenCalled() + expect(resolveDefaultBaseRefWithLocalGit).toHaveBeenCalledWith({ cwd: TEST_REPO_PATH }) } finally { getReposSpy.mockRestore() gitSpy.mockRestore() @@ -398,7 +398,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'local-branch-base', 'develop', - false + false, + false, + {} ) } finally { getReposSpy.mockRestore() @@ -452,7 +454,9 @@ describe('OrcaRuntimeService', () => { createdWorktree.path, 'slash-local-base', 'team/feature', - false + false, + false, + {} ) expect(gitSpy).not.toHaveBeenCalledWith( [ @@ -547,7 +551,9 @@ describe('OrcaRuntimeService', () => { '/tmp/workspaces/feature-something', 'feature/something', 'origin/feature/something', - false + false, + false, + {} ) expect(resolveLocalGitUsernameMock).not.toHaveBeenCalled() expect(result.worktree).toMatchObject({ diff --git a/src/main/runtime/orca-runtime-tests/ssh-worktree-lifecycle.spec.ts b/src/main/runtime/orca-runtime-tests/ssh-worktree-lifecycle.spec.ts index 56439afceaf..0d9886aade6 100644 --- a/src/main/runtime/orca-runtime-tests/ssh-worktree-lifecycle.spec.ts +++ b/src/main/runtime/orca-runtime-tests/ssh-worktree-lifecycle.spec.ts @@ -337,7 +337,9 @@ describe('OrcaRuntimeService', () => { created.path, 'folder-child', 'origin/main', - false + false, + false, + {} ) expect(result.lineage).toBeNull() expect(result.workspaceLineage).toMatchObject({ diff --git a/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness-part-06.spec.ts b/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness-part-06.spec.ts index 6d9326b37f2..1d0841b5e1c 100644 --- a/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness-part-06.spec.ts +++ b/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness-part-06.spec.ts @@ -103,6 +103,37 @@ describe('OrcaRuntimeService', () => { await expect(waiting).resolves.toEqual({ exitCode: 9 }) }) + it('cancels setup completion observation when the caller aborts', async () => { + const runtime = new OrcaRuntimeService(store) + runtime.setPtyController({ + spawn: vi.fn().mockResolvedValue({ id: 'pty-cancelled-setup' }), + write: () => true, + kill: () => true, + getForegroundProcess: async () => null + }) + runtime.attachWindow(1) + runtime.syncWindowGraph(1, { tabs: [], leaves: [] }) + const { handle } = await runtime.createTerminal(`path:${TEST_WORKTREE_PATH}`) + ;( + runtime as unknown as { setupCompletionTokenByPtyId: Map } + ).setupCompletionTokenByPtyId.set('pty-cancelled-setup', 'token-cancelled') + const unsubscribe = vi.fn() + vi.spyOn(runtime, 'subscribeToTerminalData').mockReturnValue(unsubscribe) + const controller = new AbortController() + + const waiting = runtime.waitForSetupTerminalCompletion(handle, controller.signal) + expect(runtime.subscribeToTerminalData).toHaveBeenCalledWith( + 'pty-cancelled-setup', + expect.any(Function) + ) + + const reason = new Error('cancelled') + controller.abort(reason) + + await expect(waiting).rejects.toBe(reason) + expect(unsubscribe).toHaveBeenCalledOnce() + }) + it('keeps observing after an uncertain setup terminal status', async () => { const runtime = new OrcaRuntimeService(store) runtime.setPtyController({ diff --git a/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness.spec.ts b/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness.spec.ts index bb6669da1a2..3a30c48e4b8 100644 --- a/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness.spec.ts +++ b/src/main/runtime/orca-runtime-tests/terminal-creation-and-readiness.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it, vi } from 'vitest' -import { OrcaRuntimeService, makePaneKey } from '../orca-runtime-test-mocks.spec' +import { OrcaRuntimeService, electronMocks, makePaneKey } from '../orca-runtime-test-mocks.spec' import { HEADLESS_LEAF_ID, RESTORED_AUTHORITY_TOKEN, @@ -92,6 +92,130 @@ describe('OrcaRuntimeService', () => { }) }) + it('asks the pty controller for the requested shell instead of a startup command', async () => { + const hostPlatform = Object.getOwnPropertyDescriptor(process, 'platform')! + Object.defineProperty(process, 'platform', { configurable: true, value: 'win32' }) + try { + const spawn = vi.fn().mockResolvedValue({ id: 'pty-shell' }) + const runtime = new OrcaRuntimeService(store) + runtime.setPtyController({ + spawn, + write: () => true, + kill: () => true, + getForegroundProcess: async () => null + }) + runtime.attachWindow(1) + runtime.syncWindowGraph(1, { tabs: [], leaves: [] }) + + await runtime.createTerminal(`path:${TEST_WORKTREE_PATH}`, { + shellOverride: 'cmd.exe', + title: 'win shell' + }) + + // The defect this pins: a caller asking for cmd could only pass it as `command`, which the + // provider types into whatever shell it spawned — so the pty stayed the default shell and + // leaving cmd dropped the handle back onto a prompt the caller never asked for. + expect(spawn).toHaveBeenCalledWith( + expect.objectContaining({ shellOverride: 'cmd.exe', command: undefined }) + ) + } finally { + Object.defineProperty(process, 'platform', hostPlatform) + } + }) + + it('refuses a requested shell the execution host cannot apply instead of spawning its default', async () => { + const spawn = vi.fn().mockResolvedValue({ id: 'pty-unreachable-shell' }) + const runtime = new OrcaRuntimeService(store) + runtime.setPtyController({ + spawn, + write: () => true, + kill: () => true, + getForegroundProcess: async () => null + }) + runtime.attachWindow(1) + runtime.syncWindowGraph(1, { tabs: [], leaves: [] }) + + // Host platform here is POSIX, which has no Windows shell to pick. + await expect( + runtime.createTerminal(`path:${TEST_WORKTREE_PATH}`, { shellOverride: 'cmd.exe' }) + ).rejects.toThrow(/--shell cmd\.exe names a Windows shell/) + expect(spawn).not.toHaveBeenCalled() + }) + + it('quotes the agent startup command for the requested shell, not the host default', async () => { + const hostPlatform = Object.getOwnPropertyDescriptor(process, 'platform')! + Object.defineProperty(process, 'platform', { configurable: true, value: 'win32' }) + try { + const spawn = vi.fn().mockResolvedValue({ id: 'pty-shell-quoting' }) + const runtime = new OrcaRuntimeService({ + ...store, + getSettings: () => ({ + ...store.getSettings(), + disabledTuiAgents: [], + terminalWindowsShell: 'powershell.exe', + agentCmdOverrides: {}, + agentDefaultArgs: { claude: '--dangerously-skip-permissions' }, + agentDefaultEnv: {} + }) + }) + runtime.setPtyController({ + spawn, + write: () => true, + kill: () => true, + getForegroundProcess: async () => null + }) + runtime.attachWindow(1) + runtime.syncWindowGraph(1, { tabs: [], leaves: [] }) + + await runtime.createTerminal(`path:${TEST_WORKTREE_PATH}`, { command: 'claude' }) + await runtime.createTerminal(`path:${TEST_WORKTREE_PATH}`, { + command: 'claude', + shellOverride: 'cmd.exe' + }) + + // The setting alone still quotes for PowerShell; the requested shell is the one that will + // read the command, so it owns the quoting family. PowerShell quoting typed into cmd is a + // syntax error at the prompt. + expect(spawn).toHaveBeenNthCalledWith( + 1, + expect.objectContaining({ command: "claude '--dangerously-skip-permissions'" }) + ) + expect(spawn).toHaveBeenNthCalledWith( + 2, + expect.objectContaining({ + shellOverride: 'cmd.exe', + command: 'claude "--dangerously-skip-permissions"' + }) + ) + } finally { + Object.defineProperty(process, 'platform', hostPlatform) + } + }) + + it('refuses a requested shell with no workspace instead of creating a default-shell tab', async () => { + const spawn = vi.fn().mockResolvedValue({ id: 'pty-no-workspace-shell' }) + const send = vi.fn() + const runtime = new OrcaRuntimeService(store) + runtime.setPtyController({ + spawn, + write: () => true, + kill: () => true, + getForegroundProcess: async () => null + }) + runtime.attachWindow(1) + runtime.syncWindowGraph(1, { tabs: [], leaves: [] }) + electronMocks.BrowserWindow.fromId.mockReturnValue({ + isDestroyed: () => false, + webContents: { send } + }) + + await expect( + runtime.createTerminal(undefined, { shellOverride: 'cmd.exe', rendererBacked: true }) + ).rejects.toThrow(/--shell cmd\.exe needs a workspace/) + expect(send).not.toHaveBeenCalled() + expect(spawn).not.toHaveBeenCalled() + }) + it('retires inherited launch authority when the agent command exits', async () => { const spawn = vi.fn().mockResolvedValue({ id: 'pty-authority', incarnationId: 'process-1' }) const retireAuthority = vi.fn() diff --git a/src/main/runtime/orca-runtime-tests/worktree-setup-and-startup.spec.ts b/src/main/runtime/orca-runtime-tests/worktree-setup-and-startup.spec.ts index 7ef4d5b6a72..d4e63c978c3 100644 --- a/src/main/runtime/orca-runtime-tests/worktree-setup-and-startup.spec.ts +++ b/src/main/runtime/orca-runtime-tests/worktree-setup-and-startup.spec.ts @@ -77,7 +77,9 @@ describe('OrcaRuntimeService', () => { '/tmp/workspaces/runtime-hook-test', 'runtime-hook-test', 'origin/main', - false + false, + false, + {} ) expect(result).toEqual({ worktree: expect.objectContaining({ diff --git a/src/main/runtime/rpc/methods/agent-launch-schemas.ts b/src/main/runtime/rpc/methods/agent-launch-schemas.ts new file mode 100644 index 00000000000..f71be37da3a --- /dev/null +++ b/src/main/runtime/rpc/methods/agent-launch-schemas.ts @@ -0,0 +1,51 @@ +/** + * The wire shape of `agent.launch`, mirroring `AgentLaunchIntent`. + * + * A caller states WHERE the agent lands and WHAT it should say; it never names a mode. There is + * deliberately no `structured` / `terminal` field and no startup-agent field on the create + * payload — the host decides, and `withoutReservedAgentCreateFields` strips a stale one out of a + * payload a caller migrated over from `worktree.create`. + */ + +import { z } from 'zod' +import { isTuiAgent } from '../../../../shared/tui-agent-config' +import type { TuiAgent } from '../../../../shared/tui-agent' +import { WorktreeCreate } from './worktree-create-schemas' + +const LaunchAgent = z + .unknown() + .superRefine((value, ctx) => { + if (!isTuiAgent(value)) { + ctx.addIssue({ code: z.ZodIssueCode.custom, message: 'Unknown TUI agent' }) + } + }) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the superRefine above rejects anything isTuiAgent refuses, so the transform only ever runs on a TuiAgent. + .transform((value): TuiAgent => value as TuiAgent) + +export const AgentLaunch = z.object({ + agent: LaunchAgent, + target: z.discriminatedUnion('kind', [ + z.object({ + kind: z.literal('existing'), + /** Any selector the runtime resolves, the same as every other worktree-addressed method. */ + worktree: z.string().min(1, 'Missing worktree selector') + }), + z.object({ + kind: z.literal('create-worktree'), + /** The `worktree.create` request verbatim, so a caller migrating to this method keeps its + * existing payload; the agent fields in it are stripped rather than honoured. */ + create: WorktreeCreate + }) + ]), + prompt: z + .object({ + text: z.string(), + delivery: z.enum(['submit', 'draft']) + }) + .optional(), + /** Only the seedable string options a structured create accepts; a terminal launch ignores them. */ + sessionOptions: z.record(z.string(), z.string()).optional(), + reuseTerminal: z.object({ handle: z.string().min(1, 'Missing terminal handle') }).optional() +}) + +export type AgentLaunchParams = z.infer diff --git a/src/main/runtime/rpc/methods/agent-launch-surfaces.ts b/src/main/runtime/rpc/methods/agent-launch-surfaces.ts new file mode 100644 index 00000000000..8d60944b261 --- /dev/null +++ b/src/main/runtime/rpc/methods/agent-launch-surfaces.ts @@ -0,0 +1,83 @@ +/** + * How `agent.launch` builds the surface the executor decided on. + * + * Both halves are deliberately the plain, user-facing forms: a structured session created for the + * worktree exactly as `agentSession.create` creates one, and a terminal agent created exactly as a + * new agent tab is. Orchestration's own factories are NOT reusable here — a worker's session + * carries a dispatch hold, a mailbox and a background tab that a launch the user asked for must + * not take — which is why the executor injects this rather than branching. + */ + +import { randomUUID } from 'node:crypto' +import { narrowStructuredLaunchSeedOptions } from '../../../../shared/native-chat-session-option-defaults' +import { createStructuredAgentSessionOperationId } from '../../../../shared/structured-agent-session-mutation' +import { structuredAgentSessionTabId } from '../../../../shared/structured-agent-session-projection' +import { + AgentLaunchStructuredSessionRefusedError, + type AgentLaunchSurfaceFactory +} from '../../../agent-launch/agent-launch-executor' +import { getStructuredAgentSessionHost } from '../../../native-chat/agent-session-wire/structured-agent-session-registry' +import type { StructuredAgentSessionHost } from '../../../native-chat/agent-session-wire/structured-agent-session-host' +import type { RpcContext } from '../core' +import { structuredCallerFor } from './structured-agent-session-gate' +import { createStructuredAgentSessionForWorktree } from './structured-agent-session-create' + +export function agentLaunchSurfaceFactory(context: RpcContext): AgentLaunchSurfaceFactory { + return { + createStructuredSession: async ({ worktreeId, agent, options }) => { + const sessionId = randomUUID() + const seeded = narrowStructuredLaunchSeedOptions(options) + const created = await createStructuredAgentSessionForWorktree({ + runtime: context.runtime, + ensureHost: async () => { + await context.runtime.ensureStructuredAgentSessionHost() + return requireInstalledHost() + }, + caller: structuredCallerFor(context), + envelope: { + sessionId, + clientOperationId: createStructuredAgentSessionOperationId(randomUUID), + expectedRuntimeFence: null, + // Overwritten by `prepare` with the host's own attach fingerprint. The create-intent + // conflict check it would otherwise feed guards a replayed client operation id, and this + // id was minted here rather than accepted from one. + payloadFingerprint: '' + }, + worktree: `id:${worktreeId}`, + agent, + ...(seeded ? { options: seeded } : {}), + // The user asked for this chat, so it takes the surface — unlike a dispatched worker. + activate: true + }) + if (!created.ok) { + throw new AgentLaunchStructuredSessionRefusedError( + created.refusal.code, + created.refusal.message + ) + } + return { + sessionId: created.value.sessionId, + handle: structuredAgentSessionTabId(created.value.sessionId) + } + }, + createTerminalAgent: async ({ worktreeId, agent }) => { + const terminal = await context.runtime.createTerminal(`id:${worktreeId}`, { + // The agent id is not a shell command — `cursor` is the desktop app, its CLI is + // `cursor-agent` — so the runtime builds the configured launcher. + startupAgent: agent + }) + return { + handle: terminal.handle, + ...(terminal.warning ? { warning: terminal.warning } : {}) + } + } + } +} + +function requireInstalledHost(): StructuredAgentSessionHost { + const host = getStructuredAgentSessionHost() + if (!host) { + throw new Error('structured_agent_session_unsupported') + } + return host +} diff --git a/src/main/runtime/rpc/methods/agent-launch-worktree-creation.ts b/src/main/runtime/rpc/methods/agent-launch-worktree-creation.ts new file mode 100644 index 00000000000..edf8dade6c1 --- /dev/null +++ b/src/main/runtime/rpc/methods/agent-launch-worktree-creation.ts @@ -0,0 +1,118 @@ +/** + * Creating the worktree an `agent.launch` asks for. + * + * `startupAgent` is the whole fork, and it is the same one `worker-worktree-creation` makes: a + * terminal launch creates the worktree agent-first, so the startup terminal IS the agent, while a + * structured launch creates it with no agent at all and its session is created for the worktree + * afterwards. Setup, default tabs, provenance and lineage are identical either way. + * + * The executor owns which side of that fork this call lands on; nothing here re-decides it. + */ + +import { buildCliWorkspaceProvenance } from '../../../../shared/cli-workspace-provenance' +import type { TuiAgent } from '../../../../shared/tui-agent' +import type { OrcaRuntimeService } from '../../orca-runtime' +import { + finishAutomationWorkspaceProvenanceRequest, + releaseAutomationWorkspaceProvenanceRequest, + resolveAutomationWorkspaceProvenance +} from '../../../automations/workspace-provenance' +import type { AgentLaunchWorkspaceFactory } from '../../../agent-launch/agent-launch-executor' +import type { RpcContext } from '../core' +import { resolveRpcWorkspaceCreatorProvenance } from '../workspace-creator-context' +import { buildManagedWorktreeCreateArgs } from './worktree-create-args' +import type { AgentLaunchParams } from './agent-launch-schemas' + +type WorktreeCreateParams = Extract< + AgentLaunchParams['target'], + { kind: 'create-worktree' } +>['create'] + +const STRUCTURED_SETUP_WAIT_TIMEOUT_MS = 60_000 + +export function agentLaunchWorkspaceFactory( + context: RpcContext, + agent: TuiAgent +): AgentLaunchWorkspaceFactory { + return { + createWorktree: async ({ create, startupAgent }) => { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: already validated by `AgentLaunch`; the executor only removed the reserved agent fields, so the rest of the payload is the parsed shape. + const params = create as WorktreeCreateParams + const { runtime } = context + const repo = await runtime.showRepo(params.repo) + const automationProvenance = resolveAutomationWorkspaceProvenance({ + authority: runtime, + repoSelector: params.repo, + repo, + request: params.automationProvenanceRequest + }) + // Reserved before creation so a retry can recover; a failed attempt has to release it. + try { + const result = await runtime.createManagedWorktree({ + ...buildManagedWorktreeCreateArgs( + { ...params, ...(startupAgent ? { startupAgent } : {}) }, + { + automationProvenance, + cliProvenance: buildCliWorkspaceProvenance(params.cliProvenanceRequest, { + startupAgent: agent, + createdAt: Date.now() + }), + creatorProvenance: resolveRpcWorkspaceCreatorProvenance(context) + }, + context.clientKind ? { clientKind: context.clientKind } : {} + ), + // The launch owns the agent whichever surface it settles on, so the workspace records + // it even when no startup terminal was created for it. + createdWithAgent: agent, + // Structured sessions have no startup command to sequence behind setup. Provision the + // setup terminal synchronously and attach a completion token so the launch can wait + // before creating the chat surface. + awaitTerminalProvisioning: true, + observeSetupCompletion: true + }) + if (!startupAgent) { + await waitForStructuredSetup(runtime, result.setupReceipt) + } + finishAutomationWorkspaceProvenanceRequest(params.automationProvenanceRequest) + return { + worktreeId: result.worktree.id, + startupTerminalHandle: result.startupTerminal?.handle + } + } catch (error) { + releaseAutomationWorkspaceProvenanceRequest(params.automationProvenanceRequest) + throw error + } + } + } +} + +async function waitForStructuredSetup( + runtime: Pick, + receipt: Awaited>['setupReceipt'] +): Promise { + if ( + !receipt || + receipt.startupPolicy !== 'wait-for-setup' || + receipt.state !== 'running' || + !receipt.terminalHandle + ) { + return + } + const abort = new AbortController() + let timer: ReturnType | undefined + try { + await Promise.race([ + runtime.waitForSetupTerminalCompletion(receipt.terminalHandle, abort.signal), + new Promise((resolve) => { + timer = setTimeout(() => { + abort.abort(new Error('structured_setup_wait_timeout')) + resolve() + }, STRUCTURED_SETUP_WAIT_TIMEOUT_MS) + }) + ]) + } catch { + // Setup completion is evidence, not a reason to strand a launch when the PTY disappears. + } finally { + clearTimeout(timer) + } +} diff --git a/src/main/runtime/rpc/methods/agent-launch.test.ts b/src/main/runtime/rpc/methods/agent-launch.test.ts new file mode 100644 index 00000000000..aaf99d79629 --- /dev/null +++ b/src/main/runtime/rpc/methods/agent-launch.test.ts @@ -0,0 +1,482 @@ +/** + * The RPC boundary of `agent.launch`: who may call it, what it accepts, and which runtime call + * each of its three factories makes. + * + * The last group is where the defect lived. A structured launch must reach + * `createManagedWorktree` with NO startup agent — an agent-first create makes the startup terminal + * the agent and puts the structured branch out of reach — and the old `worktree.create` contract + * must be observably untouched by any of it. + */ + +import { beforeEach, describe, expect, it, vi } from 'vitest' +import { AGENT_LAUNCH_RUNTIME_CAPABILITY } from '../../../../shared/protocol-version' +import type { RpcContext } from '../core' + +const createStructuredSession = vi.fn(async (_args: Record) => ({ + ok: true as const, + value: { sessionId: 'sess-1' } +})) + +vi.mock('./structured-agent-session-create', () => ({ + createStructuredAgentSessionForWorktree: (args: Record) => + createStructuredSession(args) +})) + +const { AGENT_LAUNCH_METHODS } = await import('./agent-launch') +const { WORKTREE_METHODS } = await import('./worktree') + +const STRUCTURED_PREFERENCE = { + experimentalNativeChat: true, + experimentalStructuredNativeChat: true, + openAgentTabsInChatByDefault: true +} + +function runtimeStub( + options: { + settings?: Record + createSupport?: { supported: boolean; reason?: 'agent' | 'remote' | 'wsl' } + setupReceipt?: { + startupPolicy: 'start-immediately' | 'wait-for-setup' + state: 'running' | 'skipped' | 'not_configured' | 'spawn_failed' + terminalHandle?: string + } + } = {} +) { + const worktreeCreateResults = new Map>() + const waitForSetupTerminalCompletion = vi.fn( + async (_handle: string, _signal?: AbortSignal): Promise<{ exitCode: number | null }> => ({ + exitCode: 0 + }) + ) + return { + getClientSettings: vi.fn(() => options.settings ?? STRUCTURED_PREFERENCE), + getStructuredAgentSessionCreateSupport: vi.fn( + async () => options.createSupport ?? { supported: true } + ), + dedupeWorktreeCreate: vi.fn( + (repo: string, key: string | undefined, run: () => Promise) => { + if (!key) { + return run() + } + const compositeKey = `${repo}\0${key}` + const existing = worktreeCreateResults.get(compositeKey) + if (existing) { + return existing + } + const result = run() + worktreeCreateResults.set(compositeKey, result) + void result.catch(() => worktreeCreateResults.delete(compositeKey)) + return result + } + ), + showRepo: vi.fn(async () => ({ id: 'repo-1' })), + createManagedWorktree: vi.fn(async (args: Record) => ({ + worktree: { id: 'wt-new' }, + startupTerminal: args.startupAgent ? { handle: 'term_agent_first' } : undefined, + ...(options.setupReceipt ? { setupReceipt: options.setupReceipt } : {}) + })), + createTerminal: vi.fn(async () => ({ handle: 'term_1' })), + showTerminal: vi.fn(async (handle: string) => ({ handle, worktreeId: 'wt-7' })), + isTerminalRunningAgent: vi.fn(async () => true), + showManagedTerminalWorkspace: vi.fn(async (selector: string) => ({ + id: selector.replace(/^id:/, '') + })), + ensureStructuredAgentSessionHost: vi.fn(async () => {}), + waitForSetupTerminalCompletion + } +} + +type RuntimeStub = ReturnType + +function methodNamed( + methods: readonly TMethod[], + name: TName +): Extract { + const found = methods.find( + (entry): entry is Extract => entry.name === name + ) + if (!found) { + throw new Error(`missing method ${name}`) + } + return found +} + +const AGENT_LAUNCH = methodNamed(AGENT_LAUNCH_METHODS, 'agent.launch') + +function parseLaunch(params: unknown) { + return AGENT_LAUNCH.params.safeParse(params) +} + +// The one call the stub cannot satisfy structurally; every method it does implement is asserted. +function rpcContext(runtime: RuntimeStub, context: Partial): RpcContext { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the stub implements only the runtime surface these methods reach, so a method it omits throws on call rather than reading a wrong value. + return { runtime, ...context } as unknown as RpcContext +} + +function createArgs(runtime: RuntimeStub): Record { + const [args] = runtime.createManagedWorktree.mock.calls[0] ?? [] + if (!args) { + throw new Error('createManagedWorktree was not called') + } + return args +} + +const CAPABLE_CLIENT: Partial = { + clientKind: 'mobile', + pairedDeviceId: 'device-1', + clientCapabilities: [AGENT_LAUNCH_RUNTIME_CAPABILITY] +} + +async function launch( + params: unknown, + runtime: RuntimeStub, + context: Partial = CAPABLE_CLIENT +) { + const parsed = parseLaunch(params) + if (!parsed.success) { + throw new Error(parsed.error.issues[0]?.message ?? 'invalid') + } + return AGENT_LAUNCH.handler(parsed.data, rpcContext(runtime, context)) +} + +const CREATE_LAUNCH = { + agent: 'claude', + target: { kind: 'create-worktree', create: { repo: 'id:repo-1', name: 'task' } } +} + +const IDEMPOTENT_CREATE_LAUNCH = { + agent: 'claude', + target: { + kind: 'create-worktree' as const, + create: { repo: 'id:repo-1', name: 'task', clientMutationId: 'launch-1' } + } +} + +beforeEach(() => { + createStructuredSession.mockClear() +}) + +describe('who may call agent.launch', () => { + it('refuses a paired client that did not negotiate the capability', async () => { + const runtime = runtimeStub() + await expect( + launch(CREATE_LAUNCH, runtime, { + clientKind: 'mobile', + pairedDeviceId: 'device-1', + clientCapabilities: [] + }) + ).rejects.toThrow('agent_launch_unsupported') + expect(runtime.createManagedWorktree).not.toHaveBeenCalled() + }) + + it('admits a client that advertises it', async () => { + const runtime = runtimeStub() + await launch(CREATE_LAUNCH, runtime) + expect(runtime.createManagedWorktree).toHaveBeenCalled() + }) + + it('admits an in-process caller, which negotiates nothing', async () => { + const runtime = runtimeStub() + await launch(CREATE_LAUNCH, runtime, {}) + expect(runtime.createManagedWorktree).toHaveBeenCalled() + }) +}) + +describe('what agent.launch accepts', () => { + it('rejects an agent Orca cannot launch', () => { + expect(parseLaunch({ ...CREATE_LAUNCH, agent: 'not-an-agent' }).success).toBe(false) + }) + + it('rejects a target that names neither an existing workspace nor a create', () => { + expect(parseLaunch({ agent: 'claude', target: { kind: 'somewhere' } }).success).toBe(false) + }) + + it('rejects an existing target with no selector', () => { + expect( + parseLaunch({ agent: 'claude', target: { kind: 'existing', worktree: '' } }).success + ).toBe(false) + }) + + it('rejects a create payload with no repo, the same as worktree.create does', () => { + expect( + parseLaunch({ agent: 'claude', target: { kind: 'create-worktree', create: { name: 'x' } } }) + .success + ).toBe(false) + }) + + it('accepts a prompt, seed options and a reused terminal', () => { + expect( + parseLaunch({ + agent: 'codex', + target: { kind: 'existing', worktree: 'id:wt-1' }, + prompt: { text: 'do the thing', delivery: 'draft' }, + sessionOptions: { model: 'gpt-5', effort: 'high' }, + reuseTerminal: { handle: 'term_live' } + }).success + ).toBe(true) + }) + + it('validates a reused terminal against the addressed workspace', async () => { + const runtime = runtimeStub() + const result = await launch( + { + agent: 'claude', + target: { kind: 'existing', worktree: 'id:wt-7' }, + reuseTerminal: { handle: 'term_live' } + }, + runtime + ) + + expect(runtime.showTerminal).toHaveBeenCalledWith('term_live') + expect(runtime.isTerminalRunningAgent).toHaveBeenCalledWith('term_live') + expect(result.outcome).toEqual({ kind: 'terminal', handle: 'term_live' }) + }) + + it('rejects a reused terminal from a different workspace before launching', async () => { + const runtime = runtimeStub() + runtime.showTerminal.mockResolvedValue({ handle: 'term_live', worktreeId: 'wt-other' }) + + await expect( + launch( + { + agent: 'claude', + target: { kind: 'existing', worktree: 'id:wt-7' }, + reuseTerminal: { handle: 'term_live' } + }, + runtime + ) + ).rejects.toThrow('agent_launch_terminal_worktree_mismatch') + expect(runtime.createManagedWorktree).not.toHaveBeenCalled() + }) + + it('rejects reusing a terminal while creating a new workspace', async () => { + const runtime = runtimeStub() + await expect( + launch({ ...CREATE_LAUNCH, reuseTerminal: { handle: 'term_live' } }, runtime) + ).rejects.toThrow('agent_launch_reuse_requires_existing_workspace') + expect(runtime.showTerminal).not.toHaveBeenCalled() + expect(runtime.createManagedWorktree).not.toHaveBeenCalled() + }) +}) + +describe('the worktree factory', () => { + it('creates a structured launch’s worktree with no startup agent', async () => { + const runtime = runtimeStub() + const result = await launch(CREATE_LAUNCH, runtime) + + const args = createArgs(runtime) + expect(args.startupAgent).toBeUndefined() + expect(args.awaitTerminalProvisioning).toBe(true) + expect(args.observeSetupCompletion).toBe(true) + // Still recorded on the workspace: the launch owns the agent whichever surface it settles on. + expect(args.createdWithAgent).toBe('claude') + expect(result.outcome.kind).toBe('structured') + }) + + it('deduplicates concurrent launches through surface creation', async () => { + const runtime = runtimeStub() + + const results = await Promise.all([ + launch(IDEMPOTENT_CREATE_LAUNCH, runtime), + launch(IDEMPOTENT_CREATE_LAUNCH, runtime) + ]) + + expect(results[0]).toEqual(results[1]) + expect(runtime.dedupeWorktreeCreate).toHaveBeenCalledTimes(2) + expect(runtime.dedupeWorktreeCreate.mock.calls).toEqual([ + ['id:repo-1', 'agent.launch:launch-1', expect.any(Function)], + ['id:repo-1', 'agent.launch:launch-1', expect.any(Function)] + ]) + expect(runtime.createManagedWorktree).toHaveBeenCalledTimes(1) + expect(createStructuredSession).toHaveBeenCalledTimes(1) + }) + + it('reuses a completed launch result for a sequential retry', async () => { + const runtime = runtimeStub() + + const first = await launch(IDEMPOTENT_CREATE_LAUNCH, runtime) + const retried = await launch(IDEMPOTENT_CREATE_LAUNCH, runtime) + + expect(retried).toEqual(first) + expect(runtime.createManagedWorktree).toHaveBeenCalledTimes(1) + expect(createStructuredSession).toHaveBeenCalledTimes(1) + }) + + it('aborts the setup wait when its bounded timeout expires', async () => { + vi.useFakeTimers() + try { + const runtime = runtimeStub({ + setupReceipt: { + startupPolicy: 'wait-for-setup', + state: 'running', + terminalHandle: 'setup-1' + } + }) + let setupSignal: AbortSignal | undefined + runtime.waitForSetupTerminalCompletion.mockImplementation( + (_handle, signal) => + new Promise<{ exitCode: number | null }>((_resolve, reject) => { + setupSignal = signal + signal?.addEventListener('abort', () => reject(signal.reason), { once: true }) + }) + ) + + const result = await (async () => { + const pending = launch(CREATE_LAUNCH, runtime) + await vi.runAllTimersAsync() + return pending + })() + + expect(result.outcome.kind).toBe('structured') + expect(setupSignal?.aborted).toBe(true) + } finally { + vi.useRealTimers() + } + }) + + it('waits for a setup-gated structured workspace before creating its session', async () => { + const runtime = runtimeStub({ + setupReceipt: { + startupPolicy: 'wait-for-setup', + state: 'running', + terminalHandle: 'setup-1' + } + }) + const order: string[] = [] + runtime.waitForSetupTerminalCompletion.mockImplementation(async () => { + order.push('setup-complete') + return { exitCode: 0 } + }) + createStructuredSession.mockImplementationOnce(async () => { + order.push('structured-create') + return { ok: true as const, value: { sessionId: 'sess-1' } } + }) + + await launch(CREATE_LAUNCH, runtime) + + expect(order).toEqual(['setup-complete', 'structured-create']) + expect(runtime.waitForSetupTerminalCompletion).toHaveBeenCalledWith( + 'setup-1', + expect.any(AbortSignal) + ) + }) + + it('keeps agent-first creation for a launch the user wants as a terminal', async () => { + const runtime = runtimeStub({ settings: {} }) + const result = await launch(CREATE_LAUNCH, runtime) + + const args = createArgs(runtime) + expect(args.startupAgent).toBe('claude') + expect(result.outcome).toEqual({ kind: 'terminal', handle: 'term_agent_first' }) + expect(runtime.getStructuredAgentSessionCreateSupport).not.toHaveBeenCalled() + }) + + it('drops a stale startupAgent a caller carried over from worktree.create', async () => { + const runtime = runtimeStub() + await launch( + { + agent: 'claude', + target: { + kind: 'create-worktree', + create: { + repo: 'id:repo-1', + name: 'task', + startupAgent: 'codex', + startupCommand: 'codex --yolo' + } + } + }, + runtime + ) + const args = createArgs(runtime) + expect(args.startupAgent).toBeUndefined() + expect(args.startup).toBeUndefined() + }) +}) + +describe('the structured session factory', () => { + it('creates the session for the worktree the launch just made, and activates it', async () => { + const runtime = runtimeStub() + const result = await launch(CREATE_LAUNCH, runtime) + + expect(createStructuredSession).toHaveBeenCalledTimes(1) + expect(createStructuredSession.mock.calls[0]?.[0]).toMatchObject({ + worktree: 'id:wt-new', + agent: 'claude', + activate: true + }) + expect(result.outcome).toEqual({ + kind: 'structured', + sessionId: 'sess-1', + handle: 'structured-agent-session-sess-1' + }) + expect(runtime.createTerminal).not.toHaveBeenCalled() + }) + + it('seeds only the options a structured create accepts', async () => { + const runtime = runtimeStub() + await launch( + { + ...CREATE_LAUNCH, + sessionOptions: { model: 'sonnet', effort: 'high', fastMode: 'yes' } + }, + runtime + ) + expect(createStructuredSession.mock.calls[0]?.[0]).toMatchObject({ + options: { model: 'sonnet', effort: 'high' } + }) + }) +}) + +describe('the terminal factory', () => { + it('starts the agent through the runtime launcher when the host refuses a session', async () => { + const runtime = runtimeStub({ createSupport: { supported: false, reason: 'wsl' } }) + const result = await launch(CREATE_LAUNCH, runtime) + + expect(runtime.createTerminal).toHaveBeenCalledWith('id:wt-new', { startupAgent: 'claude' }) + expect(createStructuredSession).not.toHaveBeenCalled() + expect(result.outcome).toEqual({ kind: 'terminal', handle: 'term_1' }) + // Never a failed launch, and never a silent downgrade. + expect(result.receipt).toMatchObject({ mode: 'terminal', reason: 'wsl_execution_runtime' }) + }) + + it('takes an existing workspace without creating one', async () => { + const runtime = runtimeStub() + const result = await launch( + { agent: 'grok', target: { kind: 'existing', worktree: 'id:wt-7' } }, + runtime + ) + + expect(runtime.createManagedWorktree).not.toHaveBeenCalled() + expect(runtime.showManagedTerminalWorkspace).toHaveBeenCalledWith('id:wt-7') + // Resolved to an id first: everything below re-prefixes it, so a raw selector reaches the + // runtime as `id:id:wt-7`. + expect(runtime.createTerminal).toHaveBeenCalledWith('id:wt-7', { startupAgent: 'grok' }) + expect(result.worktreeId).toBe('wt-7') + }) +}) + +describe('worktree.create is untouched by any of this', () => { + it('still answers a startupAgent create with a PTY agent and its handle', async () => { + const runtime = runtimeStub() + const create = methodNamed(WORKTREE_METHODS, 'worktree.create') + const parsed = create.params.safeParse({ + repo: 'id:repo-1', + name: 'task', + startupAgent: 'claude' + }) + if (!parsed.success) { + throw new Error(parsed.error.issues[0]?.message ?? 'invalid') + } + + const result = await create.handler(parsed.data, rpcContext(runtime, {})) + + expect(result).toMatchObject({ agentTerminalHandle: 'term_agent_first' }) + expect(runtime.createManagedWorktree.mock.calls[0]?.[0]).toMatchObject({ + startupAgent: 'claude' + }) + // The route is not consulted on this path, so no client's create can change surface under it. + expect(runtime.getStructuredAgentSessionCreateSupport).not.toHaveBeenCalled() + expect(createStructuredSession).not.toHaveBeenCalled() + }) +}) diff --git a/src/main/runtime/rpc/methods/agent-launch.ts b/src/main/runtime/rpc/methods/agent-launch.ts new file mode 100644 index 00000000000..54e0e8a76f6 --- /dev/null +++ b/src/main/runtime/rpc/methods/agent-launch.ts @@ -0,0 +1,116 @@ +/** + * `agent.launch` — the one method that starts an agent, whatever surface it turns out to be. + * + * It exists because the routing decision had no host-side home: `worktree.create` never consulted + * it, so any client that created a worktree with `startupAgent` got a PTY agent no matter what the + * user's default said. That is not fixable inside `worktree.create`, because its contract is + * exactly "spawn a PTY agent and hand me its `agentTerminalHandle`" — a host that quietly answered + * it with a structured session would hand every older client a response with no handle and no + * error. So `worktree.create` keeps that meaning verbatim, forever, and everything that has to + * choose a surface comes here instead, behind a negotiated capability. + * + * A caller therefore never asks for a mode, and must read `outcome.kind` rather than assume one: + * the receipt always says which surface ran and why, so a downgrade is never silent. + */ + +import { AGENT_LAUNCH_RUNTIME_CAPABILITY } from '../../../../shared/protocol-version' +import type { AgentLaunchIntent, AgentLaunchTarget } from '../../../../shared/agent-launch-intent' +import { executeAgentLaunch } from '../../../agent-launch/agent-launch-executor' +import type { OrcaRuntimeService } from '../../orca-runtime' +import { defineMethod, type RpcContext } from '../core' +import { AgentLaunch, type AgentLaunchParams } from './agent-launch-schemas' +import { agentLaunchSurfaceFactory } from './agent-launch-surfaces' +import { agentLaunchWorkspaceFactory } from './agent-launch-worktree-creation' + +/** + * Advertising `agent.launch.v1` is a client's statement that it understands EITHER outcome — a + * structured session it can open, or a terminal agent. A client that can only render one of the + * two must keep using the surface-specific methods instead. In-process callers are the same build + * as the host and negotiate nothing. + */ +export function supportsAgentLaunch( + context: Pick +): boolean { + return ( + context.clientKind === undefined || + context.clientCapabilities?.includes(AGENT_LAUNCH_RUNTIME_CAPABILITY) === true + ) +} + +/** + * A client addresses a workspace by selector, but the result's `worktreeId` is an id and every + * step below the executor re-prefixes it as `id:`. Resolving here is what keeps a + * caller's `id:wt-7` from reaching the runtime as `id:id:wt-7`; the terminal-workspace resolver is + * used rather than the git-worktree one so a folder workspace is addressable too. + */ +async function agentLaunchTarget( + params: AgentLaunchParams, + runtime: Pick +): Promise { + if (params.target.kind === 'create-worktree') { + return { kind: 'create-worktree', create: { ...params.target.create } } + } + const workspace = await runtime.showManagedTerminalWorkspace(params.target.worktree) + return { kind: 'existing', worktree: workspace.id } +} + +async function agentLaunchIntent( + params: AgentLaunchParams, + runtime: OrcaRuntimeService +): Promise { + return { + agent: params.agent, + target: await agentLaunchTarget(params, runtime), + ...(params.prompt ? { prompt: params.prompt } : {}), + ...(params.sessionOptions ? { sessionOptions: params.sessionOptions } : {}), + ...(params.reuseTerminal ? { reuseTerminal: params.reuseTerminal } : {}) + } +} + +async function validateReusedTerminal( + intent: AgentLaunchIntent, + runtime: Pick +): Promise { + if (!intent.reuseTerminal) { + return + } + if (intent.target.kind !== 'existing') { + throw new Error('agent_launch_reuse_requires_existing_workspace') + } + const terminal = await runtime.showTerminal(intent.reuseTerminal.handle) + if (terminal.worktreeId !== intent.target.worktree) { + throw new Error('agent_launch_terminal_worktree_mismatch') + } + if (!(await runtime.isTerminalRunningAgent(intent.reuseTerminal.handle))) { + throw new Error('agent_launch_terminal_not_running_agent') + } +} + +export const AGENT_LAUNCH_METHODS = [ + defineMethod({ + name: 'agent.launch', + params: AgentLaunch, + handler: async (params, context) => { + if (!supportsAgentLaunch(context)) { + throw new Error('agent_launch_unsupported') + } + const intent = await agentLaunchIntent(params, context.runtime) + await validateReusedTerminal(intent, context.runtime) + const execute = () => + executeAgentLaunch({ + runtime: context.runtime, + intent, + surfaces: agentLaunchSurfaceFactory(context), + workspaces: agentLaunchWorkspaceFactory(context, intent.agent) + }) + if (params.target.kind === 'create-worktree' && params.target.create.clientMutationId) { + return context.runtime.dedupeWorktreeCreate( + params.target.create.repo, + `agent.launch:${params.target.create.clientMutationId}`, + execute + ) + } + return execute() + } + }) +] diff --git a/src/main/runtime/rpc/methods/index.ts b/src/main/runtime/rpc/methods/index.ts index 3a53bccb9ce..3be913d7ca5 100644 --- a/src/main/runtime/rpc/methods/index.ts +++ b/src/main/runtime/rpc/methods/index.ts @@ -45,6 +45,7 @@ import { AGENT_SESSION_METHODS } from './agent-session' import { STRUCTURED_AGENT_SESSION_METHODS } from './structured-agent-session' import { ARTIFACT_METHODS } from './artifacts' import { AGENT_HOOK_METHODS } from './agent-hooks' +import { AGENT_LAUNCH_METHODS } from './agent-launch' // Why: a flat manifest keeps registration order explicit and provides one // grep-point for "what methods does the RPC server expose?" — useful when @@ -59,6 +60,7 @@ export const ALL_RPC_METHODS = [ ...WORKTREE_METHODS, ...AGENT_SESSION_METHODS, ...STRUCTURED_AGENT_SESSION_METHODS, + ...AGENT_LAUNCH_METHODS, ...TERMINAL_METHODS, ...TERMINAL_ORPHAN_METHODS, ...BROWSER_CORE_METHODS, diff --git a/src/main/runtime/rpc/methods/terminal/terminal-lifecycle-methods.ts b/src/main/runtime/rpc/methods/terminal/terminal-lifecycle-methods.ts index 891ed65a13f..2fcdc2bc92c 100644 --- a/src/main/runtime/rpc/methods/terminal/terminal-lifecycle-methods.ts +++ b/src/main/runtime/rpc/methods/terminal/terminal-lifecycle-methods.ts @@ -53,6 +53,7 @@ export const TERMINAL_LIFECYCLE_METHODS = [ (canonicalWorktreeSelector, preAllocatedHandle) => runtime.createTerminal(canonicalWorktreeSelector, { command: params.command, + ...(params.shell ? { shellOverride: params.shell } : {}), startupCommandDelivery: params.startupCommandDelivery, env: params.env, envToDelete: params.envToDelete, diff --git a/src/main/runtime/rpc/rpc-params-type-parity.ts b/src/main/runtime/rpc/rpc-params-type-parity.ts index 263a7fe38cd..ae3a5fcc76f 100644 --- a/src/main/runtime/rpc/rpc-params-type-parity.ts +++ b/src/main/runtime/rpc/rpc-params-type-parity.ts @@ -8,7 +8,11 @@ import type { ALL_RPC_METHODS } from './methods' type RegisteredMethod = (typeof ALL_RPC_METHODS)[number] // These schemas reach into src/main and have no shared catalog entry. -type UncataloguedMethod = 'emulator.install' | 'orchestration.send' | 'orchestration.taskUpdate' +type UncataloguedMethod = + | 'agent.launch' + | 'emulator.install' + | 'orchestration.send' + | 'orchestration.taskUpdate' type IsAny = 0 extends 1 & T ? true : false diff --git a/src/main/runtime/runtime-local-create-rearm-ordering.test.ts b/src/main/runtime/runtime-local-create-rearm-ordering.test.ts new file mode 100644 index 00000000000..27294c144c3 --- /dev/null +++ b/src/main/runtime/runtime-local-create-rearm-ordering.test.ts @@ -0,0 +1,133 @@ +// Re-arming the prepared-checkout pool is a full `reset --hard`. Firing it before the create's +// terminals are launched puts that checkout in front of the startup agent's first git reads. +import { beforeEach, describe, expect, it, vi } from 'vitest' + +vi.mock('electron', () => ({ + BrowserWindow: { fromId: vi.fn(() => null) }, + webContents: { fromId: vi.fn(() => null) }, + ipcMain: { on: vi.fn(), removeListener: vi.fn() }, + app: { getPath: vi.fn(() => '/tmp'), isPackaged: false } +})) + +const calls = vi.hoisted(() => ({ order: new Array() })) + +const createLocalMock = vi.hoisted(() => vi.fn()) +vi.mock('./runtime-local-worktree-create', () => ({ + createRuntimeLocalManagedWorktree: createLocalMock +})) + +const startTerminalsMock = vi.hoisted(() => vi.fn()) +vi.mock('./runtime-local-worktree-terminal-startup', () => ({ + startRuntimeLocalWorktreeTerminals: startTerminalsMock +})) + +vi.mock('./runtime-local-worktree-setup', () => ({ + prepareRuntimeLocalWorktreeSetup: vi.fn(async () => ({ + setup: undefined, + defaultTabs: undefined, + warning: undefined, + effectiveDecision: 'skip', + hookFound: false, + shouldRunSetup: false, + didStartInProcessSetupHook: false + })) +})) + +vi.mock('../ipc/filesystem-auth', () => ({ invalidateAuthorizedRootsCache: vi.fn() })) + +import { OrcaRuntimeService } from './orca-runtime' + +const repo = { id: 'repo-1', path: '/repo', displayName: 'Repo', badgeColor: 'blue', kind: 'git' } + +const worktree = { id: 'wt-1', path: '/worktrees/app', branch: 'app', repoId: repo.id } + +type RuntimeInternals = { + resolveRepoSelector: (selector: string) => Promise + resolveLineageForWorktreeCreate: (input: unknown) => Promise + recordCreatedWorktreeLineage: (created: unknown, resolution: unknown) => unknown + getLocalGitExecutionOptionArgs: (repo: unknown) => unknown[] + getHostedReviewExecutionOptions: (repo: unknown) => unknown + invalidateResolvedWorktreeCache: () => void + invalidateWorktreeScanCacheForRepo: (repoId: string) => void + notifyWorktreesChanged: (repoId: string) => void + emitWorktreeLifecycle: (event: unknown) => void +} + +function makeRuntime(): OrcaRuntimeService { + const store = { + getSettings: () => ({ disabledTuiAgents: [], workspaceDir: '/worktrees' }), + getProjectHostSetups: () => [] + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: every store method this create path reaches is supplied above. + const runtime = new OrcaRuntimeService(store as never) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the named members all exist on the service; the cast only exposes non-public ones to the spies. + const internals = runtime as unknown as RuntimeInternals + vi.spyOn(internals, 'resolveRepoSelector').mockResolvedValue(repo) + vi.spyOn(internals, 'resolveLineageForWorktreeCreate').mockResolvedValue(null) + vi.spyOn(internals, 'recordCreatedWorktreeLineage').mockReturnValue({ + lineage: null, + workspaceLineage: null, + warnings: [] + }) + vi.spyOn(internals, 'getLocalGitExecutionOptionArgs').mockReturnValue([{}]) + vi.spyOn(internals, 'getHostedReviewExecutionOptions').mockReturnValue(undefined) + vi.spyOn(internals, 'invalidateResolvedWorktreeCache').mockReturnValue(undefined) + vi.spyOn(internals, 'invalidateWorktreeScanCacheForRepo').mockReturnValue(undefined) + vi.spyOn(internals, 'notifyWorktreesChanged').mockReturnValue(undefined) + vi.spyOn(internals, 'emitWorktreeLifecycle').mockReturnValue(undefined) + return runtime +} + +describe('runtime local create prepared-pool re-arm ordering', () => { + beforeEach(() => { + calls.order = [] + createLocalMock.mockReset() + startTerminalsMock.mockReset() + createLocalMock.mockImplementation(async (args: { rearm: { fire: () => void } }) => { + args.rearm.fire = () => calls.order.push('rearm') + return { + worktree, + worktreePath: worktree.path, + includeCopyWarning: undefined, + created: { path: worktree.path, head: 'abc', branch: 'app' }, + addResult: {}, + metadataResult: { lineage: null, workspaceLineage: null, warnings: [] } + } + }) + startTerminalsMock.mockImplementation(async () => { + calls.order.push('terminals') + return { + warning: undefined, + returnedSetup: undefined, + didSpawnSetup: false, + didSpawnStartup: false, + setupTerminalHandle: undefined, + startupTerminalHandle: undefined, + startupTerminalTabId: undefined, + startupTerminalPaneKey: undefined, + startupTerminalPtyId: undefined + } + }) + }) + + it('arms the pool only after the startup terminals are launched', async () => { + const runtime = makeRuntime() + + await runtime.createManagedWorktree({ repoSelector: 'repo-1', name: 'app' }) + + expect(startTerminalsMock).toHaveBeenCalledOnce() + expect(calls.order).toEqual(['terminals', 'rearm']) + }) + + it('still arms the pool when terminal launch fails', async () => { + startTerminalsMock.mockRejectedValue(new Error('spawn failed')) + const runtime = makeRuntime() + + await expect( + runtime.createManagedWorktree({ repoSelector: 'repo-1', name: 'app' }) + ).rejects.toThrow('spawn failed') + + // The prepared checkout was consumed before the failure, so the replacement is still owed. + expect(calls.order).toEqual(['rearm']) + }) +}) diff --git a/src/main/runtime/runtime-local-git-worktree-create.ts b/src/main/runtime/runtime-local-git-worktree-create.ts index 4e4b3ebe0b5..e2b77ef2a5c 100644 --- a/src/main/runtime/runtime-local-git-worktree-create.ts +++ b/src/main/runtime/runtime-local-git-worktree-create.ts @@ -1,3 +1,4 @@ +import type { LocalGitExecOptions } from '../git/repo-default-base-ref' import type { GitPushTarget, GitWorktreeInfo } from '../../shared/worktree/types' import type { Repo } from '../../shared/repo-types' import { resolveCreatedWorktree } from '../ipc/created-worktree-reconciliation' @@ -14,7 +15,10 @@ import type { RuntimeManagedWorktreeCreateArgs } from './runtime-managed-worktre import type { RemoteFetchResult, RemoteTrackingBase } from './runtime-remote-fetch-controller' import { hasLocalWorktreeBaseRef } from '../git/worktree-base-ref-probe' import { isGeneratedWorktreeCreateName } from '../worktree-create-candidates' -import { consumePreparedWorktreeCreate } from '../worktree-create-preparation' +import { + consumePreparedWorktreeCreate, + type PreparationRearmHolder +} from '../worktree-create-preparation' import { failedWorktreeCreationNeedsRetirement, retireGeneratedWorktreeName @@ -36,29 +40,24 @@ export async function createRuntimeLocalGitWorktree(args: { worktreePath: string effectiveSanitizedName?: string checkoutExistingBranch: boolean - localWorktreeGitOptions: { wslDistro?: string } - hasLocalWorktreeGitOptions: boolean - localWorktreeGitOptionArgs: [] | [{ wslDistro?: string }] + localWorktreeGitOptions: LocalGitExecOptions resolveRemoteTrackingBase: ( repoPath: string, baseBranch: string, - ...options: [] | [{ wslDistro?: string }] + options?: LocalGitExecOptions ) => Promise hasRemoteTrackingRef: ( repoPath: string, base: RemoteTrackingBase, - ...options: [] | [{ wslDistro?: string }] + options?: LocalGitExecOptions ) => Promise refreshRemoteTrackingBase: ( repoPath: string, base: RemoteTrackingBase, - ...options: [] | [{ wslDistro?: string }] + options?: LocalGitExecOptions ) => Promise - fetchRemote: ( - repoPath: string, - remote: string, - ...options: [] | [{ wslDistro?: string }] - ) => Promise + fetchRemote: (repoPath: string, remote: string, options?: LocalGitExecOptions) => Promise + rearm: PreparationRearmHolder }): Promise<{ remoteTrackingBase: RemoteTrackingBase | null sparseDirectories: string[] @@ -69,20 +68,12 @@ export async function createRuntimeLocalGitWorktree(args: { let remoteTrackingBase = await args.resolveRemoteTrackingBase( args.repo.path, args.baseBranch, - ...args.localWorktreeGitOptionArgs + args.localWorktreeGitOptions ) if (remoteTrackingBase) { const [hadRemoteRef, hasNamedLocalBaseRef] = await Promise.all([ - args.hasRemoteTrackingRef( - args.repo.path, - remoteTrackingBase, - ...args.localWorktreeGitOptionArgs - ), - hasLocalWorktreeBaseRef( - args.repo.path, - args.baseBranch, - args.hasLocalWorktreeGitOptions ? args.localWorktreeGitOptions : {} - ) + args.hasRemoteTrackingRef(args.repo.path, remoteTrackingBase, args.localWorktreeGitOptions), + hasLocalWorktreeBaseRef(args.repo.path, args.baseBranch, args.localWorktreeGitOptions) ]) const hasLocalBase = hadRemoteRef || hasNamedLocalBaseRef if (!hadRemoteRef && hasLocalBase) { @@ -91,7 +82,7 @@ export async function createRuntimeLocalGitWorktree(args: { const refresh = await args.refreshRemoteTrackingBase( args.repo.path, remoteTrackingBase, - ...args.localWorktreeGitOptionArgs + args.localWorktreeGitOptions ) if (!refresh.ok && !hadRemoteRef) { throw new Error( @@ -103,21 +94,17 @@ export async function createRuntimeLocalGitWorktree(args: { !(await args.hasRemoteTrackingRef( args.repo.path, remoteTrackingBase, - ...args.localWorktreeGitOptionArgs + args.localWorktreeGitOptions )) ) { throw new Error(`Base ref "${args.baseBranch}" was not found after fetching.`) } } } else if ( - !(await hasLocalWorktreeBaseRef( - args.repo.path, - args.baseBranch, - args.hasLocalWorktreeGitOptions ? args.localWorktreeGitOptions : {} - )) + !(await hasLocalWorktreeBaseRef(args.repo.path, args.baseBranch, args.localWorktreeGitOptions)) ) { try { - await args.fetchRemote(args.repo.path, 'origin', ...args.localWorktreeGitOptionArgs) + await args.fetchRemote(args.repo.path, 'origin', args.localWorktreeGitOptions) } catch {} } const sparseDirectories = args.request.sparseCheckout @@ -136,46 +123,19 @@ export async function createRuntimeLocalGitWorktree(args: { !args.settings.localBaseRefSuggestionDismissed && Boolean(remoteTrackingBase) const remoteOption = remoteTrackingBase ? { remoteTrackingBase } : undefined - const baseOptions: AddWorktreeOptions | undefined = args.checkoutExistingBranch - ? { - checkoutExistingBranch: true, - ...remoteOption, - ...(suggestLocalBaseRefUpdate ? { suggestLocalBaseRefUpdate } : {}) - } - : suggestLocalBaseRefUpdate - ? { ...remoteOption, suggestLocalBaseRefUpdate } - : remoteOption - const addProjectGitOptions = (options?: AddWorktreeOptions): AddWorktreeOptions | undefined => - args.hasLocalWorktreeGitOptions ? { ...options, ...args.localWorktreeGitOptions } : options - const addOptions = addProjectGitOptions(baseOptions) - const defaultAddWorktreeOption = addProjectGitOptions() - const preparedWorktreeOptions = suggestLocalBaseRefUpdate - ? addProjectGitOptions({ ...remoteOption, suggestLocalBaseRefUpdate }) - : remoteOption - ? addProjectGitOptions(remoteOption) - : defaultAddWorktreeOption + const preparedWorktreeOptions: AddWorktreeOptions = { + ...remoteOption, + ...(suggestLocalBaseRefUpdate ? { suggestLocalBaseRefUpdate } : {}), + ...args.localWorktreeGitOptions + } + const addOptions: AddWorktreeOptions = { + ...preparedWorktreeOptions, + ...(args.checkoutExistingBranch ? { checkoutExistingBranch: true } : {}) + } const shouldRetireGeneratedName = args.request.nameWasGenerated === true && Boolean(args.effectiveSanitizedName) && isGeneratedWorktreeCreateName(args.effectiveSanitizedName!) - const addStandardWorktree = async (): Promise => - addOptions - ? ((await addWorktree( - args.repo.path, - args.worktreePath, - args.branchName, - args.baseBranch, - args.settings.refreshLocalBaseRefOnWorktreeCreate, - false, - addOptions - )) ?? {}) - : ((await addWorktree( - args.repo.path, - args.worktreePath, - args.branchName, - args.baseBranch, - args.settings.refreshLocalBaseRefOnWorktreeCreate - )) ?? {}) let addResult: AddWorktreeResult try { const preparedAttempt = @@ -187,34 +147,37 @@ export async function createRuntimeLocalGitWorktree(args: { branch: args.branchName, baseBranch: args.baseBranch, refreshLocalBaseRef: args.settings.refreshLocalBaseRefOnWorktreeCreate, - ...(preparedWorktreeOptions ? { options: preparedWorktreeOptions } : {}) + options: preparedWorktreeOptions }) : null // This path has no create-span recorder, so the miss reason is only observable on the IPC path. if (preparedAttempt?.status === 'hit') { addResult = preparedAttempt.result + // Deferred, not fired: re-arming is a full `reset --hard`, and the caller still has + // materialization probes and terminals ahead of it. + args.rearm.fire = preparedAttempt.rearm } else if (sparseDirectories.length > 0) { addResult = - (await (addOptions - ? addSparseWorktree( - args.repo.path, - args.worktreePath, - args.branchName, - sparseDirectories, - args.baseBranch, - args.settings.refreshLocalBaseRefOnWorktreeCreate, - addOptions - ) - : addSparseWorktree( - args.repo.path, - args.worktreePath, - args.branchName, - sparseDirectories, - args.baseBranch, - args.settings.refreshLocalBaseRefOnWorktreeCreate - ))) ?? {} + (await addSparseWorktree( + args.repo.path, + args.worktreePath, + args.branchName, + sparseDirectories, + args.baseBranch, + args.settings.refreshLocalBaseRefOnWorktreeCreate, + addOptions + )) ?? {} } else { - addResult = await addStandardWorktree() + addResult = + (await addWorktree( + args.repo.path, + args.worktreePath, + args.branchName, + args.baseBranch, + args.settings.refreshLocalBaseRefOnWorktreeCreate, + false, + addOptions + )) ?? {} } } catch (error) { if (shouldRetireGeneratedName && failedWorktreeCreationNeedsRetirement(error)) { @@ -251,7 +214,7 @@ export async function createRuntimeLocalGitWorktree(args: { args.repo.path, args.worktreePath, args.branchName, - args.hasLocalWorktreeGitOptions ? args.localWorktreeGitOptions : undefined + args.localWorktreeGitOptions ) return { remoteTrackingBase, diff --git a/src/main/runtime/runtime-local-worktree-create-candidate.ts b/src/main/runtime/runtime-local-worktree-create-candidate.ts index 9de955c5cd1..0ffef7162de 100644 --- a/src/main/runtime/runtime-local-worktree-create-candidate.ts +++ b/src/main/runtime/runtime-local-worktree-create-candidate.ts @@ -57,7 +57,6 @@ export async function resolveRuntimeLocalWorktreeCreateCandidate(args: { store?: RuntimeStore baseBranch: string localWorktreeGitOptions: { wslDistro?: string } - localWorktreeGitOptionArgs: [] | [{ wslDistro?: string }] hostedReviewExecutionContext?: HostedReviewExecutionOptions }): Promise { const sanitizedName = sanitizeWorktreeName(args.request.name) @@ -115,7 +114,7 @@ export async function resolveRuntimeLocalWorktreeCreateCandidate(args: { args.repo.path, branchName, args.baseBranch, - ...args.localWorktreeGitOptionArgs + args.localWorktreeGitOptions ) return checkoutExistingBranch } diff --git a/src/main/runtime/runtime-local-worktree-create.test.ts b/src/main/runtime/runtime-local-worktree-create.test.ts new file mode 100644 index 00000000000..4ad713111f5 --- /dev/null +++ b/src/main/runtime/runtime-local-worktree-create.test.ts @@ -0,0 +1,274 @@ +import { beforeEach, describe, expect, it, vi } from 'vitest' +import type { Store } from '../persistence' +import type { WorktreeMeta } from '../../shared/worktree/meta-types' +import type { RuntimeManagedWorktreeCreateArgs } from './runtime-managed-worktree-create-types' +import type { AddWorktreeOptions } from '../git/worktree' +import { + acquireGitAdmission, + GitAdmissionScheduler, + _resetGitAdmissionForTests +} from '../git/command-runner/git-subprocess-admission' +import { resolveGitAdmissionTier } from '../git/command-runner/git-operation-executor' + +const mocks = vi.hoisted(() => ({ + rearm: vi.fn(), + routing: vi.fn<() => { wslDistro?: string }>(), + defaultBase: vi.fn(), + hasBase: vi.fn(), + branchName: vi.fn(), + canCheckout: vi.fn(), + branchConflict: vi.fn(), + githubPr: vi.fn(), + consume: vi.fn(), + add: vi.fn(), + addSparse: vi.fn(), + pushTarget: vi.fn(), + listing: vi.fn(), + remoteBase: vi.fn(), + hasRemoteRef: vi.fn(), + refresh: vi.fn(), + fetch: vi.fn(), + resolveShared: vi.fn<() => Promise>(), + resolveInclude: vi.fn<() => Promise>(), + copyPaths: vi.fn<() => Promise>(), + created: { + path: '/worktrees/app', + head: 'abc123', + branch: 'app', + isBare: false, + isMainWorktree: false + } +})) + +vi.mock('../project-runtime-git-options', () => ({ + getLocalProjectGitExecOptions: () => ({ cwd: '/repo', ...mocks.routing() }), + getLocalProjectWorktreeGitOptions: mocks.routing, + getWorktreeMirrorDistro: () => undefined +})) +vi.mock('../git/repo', () => ({ + getBaseRefDefault: mocks.defaultBase, + resolveDefaultBaseRefWithLocalGit: mocks.defaultBase, + getBranchConflictKind: mocks.branchConflict +})) +vi.mock('../git/git-username', () => ({ resolveLocalGitUsername: async () => '' })) +vi.mock('../git/worktree-base-ref-probe', () => ({ hasLocalWorktreeBaseRef: mocks.hasBase })) +vi.mock('./runtime-worktree-create-git', () => ({ + resolveCreateBranchName: mocks.branchName, + canCheckoutExistingLocalBranch: mocks.canCheckout, + getLocalGitHubPrForBranch: mocks.githubPr, + getSelectedHostedReviewForBranch: vi.fn() +})) +vi.mock('./runtime-worktree-filesystem', () => ({ runtimePathExists: async () => false })) +vi.mock('../worktree-create-preparation', () => ({ consumePreparedWorktreeCreate: mocks.consume })) +vi.mock('../git/worktree', () => ({ addWorktree: mocks.add, addSparseWorktree: mocks.addSparse })) +vi.mock('../ipc/worktree-remote', () => ({ configureCreatedWorktreePushTarget: mocks.pushTarget })) +vi.mock('../ipc/created-worktree-reconciliation', () => ({ resolveCreatedWorktree: mocks.listing })) +vi.mock('../worktree-name-retirement', () => ({ + failedWorktreeCreationNeedsRetirement: vi.fn(), + retireGeneratedWorktreeName: vi.fn() +})) +vi.mock('../git/worktree-shared-directories', () => ({ + resolveWorktreeSharedDirectories: mocks.resolveShared +})) +vi.mock('../git/worktree-include-file', () => ({ + resolveWorktreeIncludePaths: mocks.resolveInclude +})) +vi.mock('../ipc/worktree-symlinks', () => ({ + createWorktreeCopiedPaths: mocks.copyPaths, + createWorktreeLinkedPaths: vi.fn(), + createWorktreeSharedPaths: vi.fn() +})) + +import { createRuntimeLocalManagedWorktree } from './runtime-local-worktree-create' +import type { PreparationRearmHolder } from '../worktree-create-preparation' + +function createWorktree( + request: Partial = {}, + rearm: PreparationRearmHolder = { fire: () => {} } +) { + const store = { + getSettings: () => ({ + workspaceDir: '/worktrees', + nestWorkspaces: false, + refreshLocalBaseRefOnWorktreeCreate: false, + branchPrefix: '' + }), + setWorktreeMeta: (_id: string, updates: Partial) => updates + } + return createRuntimeLocalManagedWorktree({ + request: { repoSelector: 'repo-1', name: 'app', baseBranch: 'main', ...request }, + repo: { id: 'repo-1', path: '/repo', displayName: 'Repo', badgeColor: '#000000', addedAt: 0 }, + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: All store methods reached by this isolated create path are supplied above. + store: store as Store, + createdWithAgent: undefined, + resolveRemoteTrackingBase: mocks.remoteBase, + hasRemoteTrackingRef: mocks.hasRemoteRef, + refreshRemoteTrackingBase: mocks.refresh, + fetchRemote: mocks.fetch, + onWorktreeMetadataPersisted: () => undefined, + rearm + }) +} + +beforeEach(() => { + vi.resetAllMocks() + mocks.routing.mockReturnValue({}) + mocks.defaultBase.mockImplementation(async () => { + expect(resolveGitAdmissionTier()).toBe('interactive') + return 'main' + }) + mocks.hasBase.mockResolvedValue(true) + mocks.branchName.mockResolvedValue('app') + mocks.canCheckout.mockResolvedValue(false) + mocks.branchConflict.mockResolvedValue(null) + mocks.githubPr.mockResolvedValue(null) + mocks.consume.mockResolvedValue({ status: 'hit', result: {}, rearm: mocks.rearm }) + mocks.add.mockResolvedValue({}) + mocks.addSparse.mockResolvedValue({}) + mocks.listing.mockImplementation(async () => { + expect(resolveGitAdmissionTier()).toBe('interactive') + return { created: mocks.created } + }) + mocks.remoteBase.mockImplementation(async () => { + expect(resolveGitAdmissionTier()).toBe('interactive') + return null + }) + mocks.hasRemoteRef.mockResolvedValue(true) + mocks.refresh.mockResolvedValue({ ok: true }) + mocks.fetch.mockResolvedValue(undefined) + mocks.resolveShared.mockResolvedValue([]) + mocks.resolveInclude.mockResolvedValue(['.env']) + mocks.copyPaths.mockResolvedValue([]) +}) + +describe('runtime prepared-worktree replenishment', () => { + it('leaves the re-arm holder armed but unfired once probes and include copies finish', async () => { + const rearm: PreparationRearmHolder = { fire: () => {} } + let finishProbe!: (paths: string[]) => void + mocks.resolveShared.mockImplementation( + () => + new Promise((resolve) => { + finishProbe = resolve + }) + ) + let finishCopy!: (paths: string[]) => void + mocks.copyPaths.mockImplementation( + () => + new Promise((resolve) => { + finishCopy = resolve + }) + ) + const creation = createWorktree({}, rearm) + await vi.waitFor(() => expect(mocks.resolveShared).toHaveBeenCalledOnce()) + expect(mocks.rearm).not.toHaveBeenCalled() + finishProbe([]) + await vi.waitFor(() => expect(mocks.copyPaths).toHaveBeenCalledOnce()) + expect(mocks.rearm).not.toHaveBeenCalled() + finishCopy([]) + await creation + // The caller launches terminals before arming, so create must not fire it itself. + expect(mocks.rearm).not.toHaveBeenCalled() + rearm.fire() + expect(mocks.rearm).toHaveBeenCalledOnce() + }) + + it('arms the holder even when materialization fails', async () => { + mocks.copyPaths.mockRejectedValue(new Error('copy failed')) + const rearm: PreparationRearmHolder = { fire: () => {} } + await expect(createWorktree({}, rearm)).rejects.toThrow('copy failed') + // The slot was consumed before the failure, so the caller's `finally` must find a real thunk. + rearm.fire() + expect(mocks.rearm).toHaveBeenCalledOnce() + }) +}) + +describe('runtime create Git priority', () => { + it.each([undefined, 'Ubuntu'])( + 'preserves interactive priority and routing on %s', + async (wslDistro) => { + const routing = wslDistro ? { wslDistro } : {} + mocks.routing.mockReturnValue(routing) + const options = routing + const target = { remoteName: 'origin', branchName: 'app' } + await createWorktree({ baseBranch: undefined, branchNameOverride: 'app', pushTarget: target }) + + expect(mocks.defaultBase).toHaveBeenCalledWith({ cwd: '/repo', ...options }) + expect(mocks.branchName).toHaveBeenCalledWith( + '/repo', + 'app', + 'app', + expect.anything(), + '', + options + ) + expect(mocks.canCheckout).toHaveBeenCalledWith('/repo', 'app', 'main', options) + expect(mocks.branchConflict).toHaveBeenCalledWith('/repo', 'app', 'main', options, undefined) + expect(mocks.githubPr).toHaveBeenCalledWith('/repo', 'app', routing) + expect(mocks.remoteBase).toHaveBeenCalledWith('/repo', 'main', options) + expect(mocks.hasBase).toHaveBeenCalledWith('/repo', 'main', options) + expect(mocks.consume).toHaveBeenCalledWith(expect.objectContaining({ options })) + expect(mocks.pushTarget).toHaveBeenCalledWith('/worktrees/app', 'app', target, options) + expect(mocks.listing).toHaveBeenCalledWith('/repo', '/worktrees/app', 'app', options) + expect(mocks.resolveShared).toHaveBeenCalledWith('/repo', options) + expect(mocks.resolveInclude).toHaveBeenCalledWith('/repo', options) + } + ) + + it('creates through interactive headroom when regular Git capacity is occupied', async () => { + mocks.consume.mockResolvedValue({ status: 'miss', reason: 'none_armed' }) + const scheduler = new GitAdmissionScheduler({ generalCap: 1, generalHeadroom: 1 }) + _resetGitAdmissionForTests(scheduler) + const blocker = await acquireGitAdmission({ args: ['status'], cwd: '/repo' }) + mocks.add.mockImplementation( + async ( + _repo: string, + _path: string, + _branch: string, + _base: string, + _refresh: boolean, + _existing: boolean, + options?: AddWorktreeOptions + ) => { + const grant = await acquireGitAdmission({ + args: ['worktree', 'add'], + cwd: '/repo', + tier: options?.admissionTier, + signal: AbortSignal.timeout(200) + }) + grant.release() + return {} + } + ) + try { + await expect(createWorktree()).resolves.toHaveProperty('worktreePath', '/worktrees/app') + expect(mocks.add).toHaveBeenCalledOnce() + } finally { + blocker.release() + _resetGitAdmissionForTests() + } + }) + + it('preserves priority for sparse creates and remote base refreshes', async () => { + const base = { + remote: 'origin', + branch: 'main', + ref: 'refs/remotes/origin/main', + base: 'origin/main' + } + mocks.remoteBase.mockResolvedValue(base) + await createWorktree({ baseBranch: 'origin/main', sparseCheckout: { directories: ['src'] } }) + const options = {} + expect(mocks.hasRemoteRef).toHaveBeenCalledWith('/repo', base, options) + expect(mocks.refresh).toHaveBeenCalledWith('/repo', base, options) + expect(mocks.addSparse).toHaveBeenCalledWith( + '/repo', + '/worktrees/app', + 'app', + ['src'], + 'origin/main', + false, + expect.objectContaining(options) + ) + expect(mocks.consume).not.toHaveBeenCalled() + }) +}) diff --git a/src/main/runtime/runtime-local-worktree-create.ts b/src/main/runtime/runtime-local-worktree-create.ts index 438107ea19f..41e7b3734fc 100644 --- a/src/main/runtime/runtime-local-worktree-create.ts +++ b/src/main/runtime/runtime-local-worktree-create.ts @@ -1,3 +1,4 @@ +import { worktreeCreateGit } from '../git/worktree-create-git-executor' import type { Repo } from '../../shared/repo-types' import type { Worktree } from '../../shared/worktree/types' import type { Store } from '../persistence' @@ -6,23 +7,21 @@ import { getLocalProjectWorktreeGitOptions, getWorktreeMirrorDistro } from '../project-runtime-git-options' -import { getBaseRefDefault, resolveDefaultBaseRefWithLocalGit } from '../git/repo' +import { resolveDefaultBaseRefWithLocalGit } from '../git/repo' +import type { LocalGitExecOptions } from '../git/repo-default-base-ref' import { resolveLocalGitUsername } from '../git/git-username' import { computeWorkspaceRoot, getWorktreePathSettings } from '../ipc/worktree-logic' import { resolveWorktreeCreateBase } from '../worktree-create-base' import type { RuntimeManagedWorktreeCreateArgs } from './runtime-managed-worktree-create-types' import type { RemoteFetchResult, RemoteTrackingBase } from './runtime-remote-fetch-controller' import type { HostedReviewExecutionOptions } from '../source-control/hosted-review-git-options' -import { hasLocalGitOptions } from './runtime-worktree-selection' import { hasLocalWorktreeBaseRef } from '../git/worktree-base-ref-probe' import { resolveRuntimeLocalWorktreeCreateCandidate } from './runtime-local-worktree-create-candidate' import { createRuntimeLocalGitWorktree } from './runtime-local-git-worktree-create' import { materializeRuntimeLocalWorktree } from './runtime-local-worktree-materialization' +import type { PreparationRearmHolder } from '../worktree-create-preparation' -type LocalGitOptions = { wslDistro?: string } -type LocalGitArgs = [] | [LocalGitOptions] - -export async function createRuntimeLocalManagedWorktree(args: { +type RuntimeLocalWorktreeCreateArgs = { request: RuntimeManagedWorktreeCreateArgs repo: Repo store: Store @@ -31,28 +30,33 @@ export async function createRuntimeLocalManagedWorktree(args: { resolveRemoteTrackingBase: ( path: string, base: string, - ...options: LocalGitArgs + options?: LocalGitExecOptions ) => Promise hasRemoteTrackingRef: ( path: string, base: RemoteTrackingBase, - ...options: LocalGitArgs + options?: LocalGitExecOptions ) => Promise refreshRemoteTrackingBase: ( path: string, base: RemoteTrackingBase, - ...options: LocalGitArgs + options?: LocalGitExecOptions ) => Promise - fetchRemote: (path: string, remote: string, ...options: LocalGitArgs) => Promise + fetchRemote: (path: string, remote: string, options?: LocalGitExecOptions) => Promise onWorktreeMetadataPersisted: (worktree: Worktree) => T -}) { + rearm: PreparationRearmHolder +} + +export function createRuntimeLocalManagedWorktree(args: RuntimeLocalWorktreeCreateArgs) { + return worktreeCreateGit.run(() => performRuntimeLocalWorktreeCreate(args)) +} + +async function performRuntimeLocalWorktreeCreate(args: RuntimeLocalWorktreeCreateArgs) { const { request, repo, store } = args const settings = store.getSettings() const pathSettings = getWorktreePathSettings(repo, settings, getWorktreeMirrorDistro(store, repo)) const gitExecOptions = getLocalProjectGitExecOptions(store, repo) const worktreeGitOptions = getLocalProjectWorktreeGitOptions(store, repo) - const hasWorktreeGitOptions = hasLocalGitOptions(worktreeGitOptions) - const worktreeGitArgs: LocalGitArgs = hasWorktreeGitOptions ? [worktreeGitOptions] : [] // Username and base resolution are independent read-only probes. Starting // both before awaiting removes one serial git/config round trip from create. const usernamePromise = @@ -62,27 +66,20 @@ export async function createRuntimeLocalManagedWorktree(args: { const baseBranchPromise = resolveWorktreeCreateBase({ requestedBaseBranch: request.baseBranch, repoWorktreeBaseRef: repo.worktreeBaseRef, - resolveDefaultBaseRef: () => - hasWorktreeGitOptions - ? resolveDefaultBaseRefWithLocalGit(gitExecOptions) - : getBaseRefDefault(repo.path), + resolveDefaultBaseRef: () => resolveDefaultBaseRefWithLocalGit(gitExecOptions), isBaseUsable: async (candidate) => { const remoteBase = await args.resolveRemoteTrackingBase( repo.path, candidate, - ...worktreeGitArgs + worktreeGitOptions ) if ( remoteBase && - (await args.hasRemoteTrackingRef(repo.path, remoteBase, ...worktreeGitArgs)) + (await args.hasRemoteTrackingRef(repo.path, remoteBase, worktreeGitOptions)) ) { return true } - return hasLocalWorktreeBaseRef( - repo.path, - candidate, - hasWorktreeGitOptions ? worktreeGitOptions : {} - ) + return hasLocalWorktreeBaseRef(repo.path, candidate, worktreeGitOptions) } }) const [username, baseBranch] = await Promise.all([usernamePromise, baseBranchPromise]) @@ -101,7 +98,6 @@ export async function createRuntimeLocalManagedWorktree(args: { store, baseBranch, localWorktreeGitOptions: worktreeGitOptions, - localWorktreeGitOptionArgs: worktreeGitArgs, hostedReviewExecutionContext: args.hostedReviewExecutionContext }) const git = await createRuntimeLocalGitWorktree({ @@ -116,12 +112,11 @@ export async function createRuntimeLocalManagedWorktree(args: { effectiveSanitizedName: candidate.effectiveSanitizedName, checkoutExistingBranch: candidate.checkoutExistingBranch, localWorktreeGitOptions: worktreeGitOptions, - hasLocalWorktreeGitOptions: hasWorktreeGitOptions, - localWorktreeGitOptionArgs: worktreeGitArgs, resolveRemoteTrackingBase: args.resolveRemoteTrackingBase, hasRemoteTrackingRef: args.hasRemoteTrackingRef, refreshRemoteTrackingBase: args.refreshRemoteTrackingBase, - fetchRemote: args.fetchRemote + fetchRemote: args.fetchRemote, + rearm: args.rearm }) const materialized = await materializeRuntimeLocalWorktree({ request, diff --git a/src/main/runtime/runtime-local-worktree-materialization.ts b/src/main/runtime/runtime-local-worktree-materialization.ts index aeb692b9c4d..1919f69b780 100644 --- a/src/main/runtime/runtime-local-worktree-materialization.ts +++ b/src/main/runtime/runtime-local-worktree-materialization.ts @@ -1,3 +1,4 @@ +import type { LocalGitExecOptions } from '../git/repo-default-base-ref' import { randomUUID } from 'node:crypto' import { getRepoExecutionHostId } from '../../shared/execution-host' import { getProjectHostSetupWorktreeMeta } from '../../shared/project-host-setup-lookup' @@ -39,7 +40,7 @@ export async function materializeRuntimeLocalWorktree(args: { displayNameKind: CreateWorktreeArgs['displayNameKind'] effectiveSanitizedName: string effectiveCreatedWithAgent?: TuiAgent - localWorktreeGitOptions: { wslDistro?: string } + localWorktreeGitOptions: LocalGitExecOptions onMetadataPersisted: (worktree: Worktree) => T }): Promise<{ worktree: Worktree; metadataResult: T; includeCopyWarning?: string }> { const { diff --git a/src/main/runtime/runtime-pty-controller-contract.ts b/src/main/runtime/runtime-pty-controller-contract.ts index 73a75af017e..161b5440116 100644 --- a/src/main/runtime/runtime-pty-controller-contract.ts +++ b/src/main/runtime/runtime-pty-controller-contract.ts @@ -58,6 +58,8 @@ export type RuntimePtyController = { tabId?: string leafId?: string sessionId?: string + /** Windows shell to spawn AS this PTY, instead of the host default. */ + shellOverride?: string isNewSession?: boolean persistHostSessionBinding?: boolean expectedSourceBinding?: PtyBindingSourceExpectation diff --git a/src/main/runtime/runtime-remote-fetch-controller.ts b/src/main/runtime/runtime-remote-fetch-controller.ts index dbcc240525b..ab0a7aa6b28 100644 --- a/src/main/runtime/runtime-remote-fetch-controller.ts +++ b/src/main/runtime/runtime-remote-fetch-controller.ts @@ -1,3 +1,4 @@ +import type { LocalGitExecOptions } from '../git/repo-default-base-ref' import { GIT_FETCH_SKIP_AUTO_MAINTENANCE_CONFIG_ARGS } from '../../shared/git-fetch-auto-maintenance' import { getCanonicalRepoKey } from '../git/canonical-repo-key' import { @@ -16,7 +17,7 @@ export type RemoteTrackingBase = { base: string } -type GitOptions = { wslDistro?: string } +type GitOptions = LocalGitExecOptions // Why: reuse recent fetches across create and drift probes without hiding remote changes for long. const FETCH_FRESHNESS_MS = 30_000 diff --git a/src/main/runtime/runtime-rpc/runtime-rpc-mobile-method-allowlist.ts b/src/main/runtime/runtime-rpc/runtime-rpc-mobile-method-allowlist.ts index e536f76260c..69cd49ccd30 100644 --- a/src/main/runtime/runtime-rpc/runtime-rpc-mobile-method-allowlist.ts +++ b/src/main/runtime/runtime-rpc/runtime-rpc-mobile-method-allowlist.ts @@ -6,6 +6,7 @@ export const MOBILE_RPC_METHOD_ALLOWLIST = new Set([ 'accounts.selectCodexForTarget', 'accounts.subscribe', 'accounts.unsubscribe', + 'agent.launch', 'aiVault.listSessions', 'aiVault.searchSessions', 'aiVault.searchStatus', diff --git a/src/main/runtime/runtime-terminal-contracts.ts b/src/main/runtime/runtime-terminal-contracts.ts index 227788af7e1..680bec98227 100644 --- a/src/main/runtime/runtime-terminal-contracts.ts +++ b/src/main/runtime/runtime-terminal-contracts.ts @@ -22,6 +22,15 @@ import type { WorkerTerminalHostScope } from './orchestration/worker-terminal-pr export type TerminalCreateOptions = { command?: string + /** + * Windows shell to spawn AS the PTY process, instead of the host default shell. + * + * Distinct from `command`, which is typed into whatever shell the host spawns: a caller asking + * for cmd or PowerShell through `command` gets it as a CHILD of the default shell, so the + * terminal's own process is still the default shell and leaving that child lands back on a + * prompt the caller never asked for. + */ + shellOverride?: string claudeAgentTeamsSourceCommand?: string cwd?: string env?: Record diff --git a/src/main/runtime/runtime-worktree-create-git.ts b/src/main/runtime/runtime-worktree-create-git.ts index ba0b1c3828d..94547f219ef 100644 --- a/src/main/runtime/runtime-worktree-create-git.ts +++ b/src/main/runtime/runtime-worktree-create-git.ts @@ -2,6 +2,7 @@ import { getRepoHostedReviewExecutionHostId } from '../source-control/hosted-rev import type { BranchPrefixStrategy } from '../../shared/ui-chrome-types' import type { Repo } from '../../shared/repo-types' import { getPRForBranch } from '../github/client' +import type { GitAdmissionTier } from '../../shared/rpc-contract/git-admission-tier-params' import { gitExecFileAsync } from '../git/runner' import { listWorktrees } from '../git/worktree' import { computeValidatedBranchName } from '../ipc/worktree-logic' @@ -20,7 +21,7 @@ export async function resolveCreateBranchName( sanitizedName: string, settings: { branchPrefix: string; branchPrefixCustom?: string }, username: string | null, - gitOptions: { wslDistro?: string } = {} + gitOptions: { wslDistro?: string; admissionTier?: GitAdmissionTier } = {} ): Promise { if (!branchNameOverride) { return computeValidatedBranchName( @@ -43,7 +44,7 @@ export async function canCheckoutExistingLocalBranch( repoPath: string, branchName: string, baseBranch: string, - gitOptions: { wslDistro?: string } = {} + gitOptions: { wslDistro?: string; admissionTier?: GitAdmissionTier } = {} ): Promise { let localHead = '' try { diff --git a/src/main/runtime/terminal-shell-override-host-support.test.ts b/src/main/runtime/terminal-shell-override-host-support.test.ts new file mode 100644 index 00000000000..bbef16c2adc --- /dev/null +++ b/src/main/runtime/terminal-shell-override-host-support.test.ts @@ -0,0 +1,204 @@ +import { describe, expect, it } from 'vitest' +import { terminalShellOverrideRefusal } from './terminal-shell-override-host-support' +import type { ProjectExecutionRuntimeResolution } from '../../shared/project-execution-runtime' + +const NO_PROJECT_RUNTIME = undefined +const WINDOWS_WORKSPACE = 'C:\\Users\\u\\app' +const WSL_WORKSPACE = '\\\\wsl$\\Ubuntu\\home\\u\\app' +const ON_WINDOWS_HOST = { cwd: WINDOWS_WORKSPACE, workspacePath: WINDOWS_WORKSPACE } + +function resolvedRuntime(kind: 'windows-host' | 'wsl'): ProjectExecutionRuntimeResolution { + return kind === 'wsl' + ? { + status: 'resolved', + runtime: { + kind: 'wsl', + hostPlatform: 'wsl', + distro: 'Ubuntu', + projectId: 'p1', + reason: 'project-override', + cacheKey: 'p1:wsl:Ubuntu' + } + } + : { + status: 'resolved', + runtime: { + kind: 'windows-host', + hostPlatform: 'win32', + projectId: 'p1', + reason: 'project-override', + cacheKey: 'p1:windows-host' + } + } +} + +describe('terminalShellOverrideRefusal', () => { + it('allows a requested shell on a local Windows execution host', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'cmd.exe', + connectionId: null, + platform: 'win32', + projectRuntime: NO_PROJECT_RUNTIME, + ...ON_WINDOWS_HOST + }) + ).toBeNull() + }) + + it('stays out of the way when no shell was requested', () => { + for (const platform of ['darwin', 'linux', 'win32'] as const) { + expect( + terminalShellOverrideRefusal({ + shellOverride: undefined, + connectionId: 'ssh-1', + platform, + projectRuntime: resolvedRuntime('wsl'), + ...ON_WINDOWS_HOST + }) + ).toBeNull() + } + }) + + // Both of these hosts would otherwise spawn their default shell and report success. + it('refuses when the spawn happens over SSH', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'cmd.exe', + connectionId: 'ssh-1', + platform: 'win32', + projectRuntime: NO_PROJECT_RUNTIME, + ...ON_WINDOWS_HOST + })?.message + ).toContain('over SSH') + }) + + it('refuses on a host that has no Windows shells to pick from', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'cmd.exe', + connectionId: null, + platform: 'darwin', + projectRuntime: NO_PROJECT_RUNTIME, + ...ON_WINDOWS_HOST + })?.message + ).toContain('darwin') + }) + + // `resolveLocalWindowsTerminalRuntimeOptions` rewrites a shell that contradicts the project's + // execution runtime, which would hand back a terminal running something else entirely — and + // would quote an agent's startup command for the shell that was asked for, not the one running. + it('refuses a WSL shell when the project runs its terminals on the Windows host', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'wsl.exe', + connectionId: null, + platform: 'win32', + projectRuntime: resolvedRuntime('windows-host'), + ...ON_WINDOWS_HOST + })?.message + ).toContain('on the Windows host') + }) + + it('refuses a Windows shell when the project runs its terminals in WSL', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'cmd.exe', + connectionId: null, + platform: 'win32', + projectRuntime: resolvedRuntime('wsl'), + ...ON_WINDOWS_HOST + })?.message + ).toContain('in WSL') + }) + + it('allows a shell that agrees with the project runtime', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'wsl.exe', + connectionId: null, + platform: 'win32', + projectRuntime: resolvedRuntime('wsl'), + ...ON_WINDOWS_HOST + }) + ).toBeNull() + expect( + terminalShellOverrideRefusal({ + shellOverride: 'powershell.exe', + connectionId: null, + platform: 'win32', + projectRuntime: resolvedRuntime('windows-host'), + ...ON_WINDOWS_HOST + }) + ).toBeNull() + }) + + // `resolveWslSessionContext` forces wsl.exe for any `\\wsl$` cwd or workspace path, which is + // the one rewrite the project-runtime check cannot see: a folder workspace has no project. + describe('WSL UNC paths', () => { + it('refuses a Windows shell for a folder workspace inside a WSL distro with no project runtime', () => { + const message = terminalShellOverrideRefusal({ + shellOverride: 'cmd.exe', + connectionId: null, + platform: 'win32', + projectRuntime: NO_PROJECT_RUNTIME, + cwd: WSL_WORKSPACE, + workspacePath: WSL_WORKSPACE + })?.message + expect(message).toContain('inside WSL') + expect(message).toContain('No terminal was created') + expect(message).toContain('--shell wsl.exe') + }) + + it('refuses when only the workspace root is in WSL, since the session path forces wsl.exe too', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'powershell.exe', + connectionId: null, + platform: 'win32', + projectRuntime: NO_PROJECT_RUNTIME, + cwd: WINDOWS_WORKSPACE, + workspacePath: WSL_WORKSPACE + })?.message + ).toContain(WSL_WORKSPACE) + }) + + it('accepts the forward-slash wsl.localhost spelling as a WSL path', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'cmd.exe', + connectionId: null, + platform: 'win32', + projectRuntime: NO_PROJECT_RUNTIME, + cwd: '//wsl.localhost/Ubuntu/home/u/app/src', + workspacePath: '//wsl.localhost/Ubuntu/home/u/app' + }) + ).not.toBeNull() + }) + + it('allows wsl.exe for a WSL path', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'wsl.exe', + connectionId: null, + platform: 'win32', + projectRuntime: NO_PROJECT_RUNTIME, + cwd: WSL_WORKSPACE, + workspacePath: WSL_WORKSPACE + }) + ).toBeNull() + }) + + it('still allows a Windows shell for a plain Windows path', () => { + expect( + terminalShellOverrideRefusal({ + shellOverride: 'cmd.exe', + connectionId: null, + platform: 'win32', + projectRuntime: NO_PROJECT_RUNTIME, + cwd: 'C:\\Users\\u\\app\\src', + workspacePath: WINDOWS_WORKSPACE + }) + ).toBeNull() + }) + }) +}) diff --git a/src/main/runtime/terminal-shell-override-host-support.ts b/src/main/runtime/terminal-shell-override-host-support.ts new file mode 100644 index 00000000000..d91b202a532 --- /dev/null +++ b/src/main/runtime/terminal-shell-override-host-support.ts @@ -0,0 +1,90 @@ +import { isWslShellName } from '../../shared/local-windows-terminal-runtime' +import type { ProjectExecutionRuntimeResolution } from '../../shared/project-execution-runtime' +import { parseWslUncPath } from '../../shared/wsl-paths' + +/** + * Whether the host about to spawn a terminal can honour a requested Windows shell. + * + * The whole point of `--shell` is that the caller stops having to guess which shell it got. A host + * that cannot apply the pick must say so: silently spawning its default shell returns a healthy + * terminal running something else, which is the exact failure `--shell` exists to remove. + */ +export function terminalShellOverrideRefusal(args: { + shellOverride: string | undefined + connectionId: string | null + platform: NodeJS.Platform + projectRuntime: ProjectExecutionRuntimeResolution | undefined + /** The cwd the PTY will spawn in, resolved the same way the spawn lanes resolve it. */ + cwd: string + workspacePath: string +}): Error | null { + if (!args.shellOverride) { + return null + } + if (args.connectionId) { + // The shell runs on the SSH host, whose platform and installed shells this runtime cannot see. + return new Error( + `This workspace runs its terminals over SSH, and Orca cannot apply --shell ${args.shellOverride} there. No terminal was created. Omit --shell, or create the terminal on the execution host itself.` + ) + } + if (args.platform !== 'win32') { + return new Error( + `--shell ${args.shellOverride} names a Windows shell, and this execution host is ${args.platform}, which spawns the user's login shell. No terminal was created; omit --shell.` + ) + } + return ( + projectRuntimeShellConflict(args.shellOverride, args.projectRuntime) ?? + wslUncPathShellConflict(args.shellOverride, args.cwd, args.workspacePath) + ) +} + +/** + * The project's execution runtime decides which MACHINE the shell runs on, so it outranks a + * per-terminal pick — and `resolveLocalWindowsTerminalRuntimeOptions` enforces that by rewriting + * the value: a WSL project forces `wsl.exe`, and a Windows-host project discards a WSL name in + * favour of the host shell. Either rewrite hands back a terminal running something the caller did + * not ask for, and it also splits the startup-command quoting from the shell that receives it + * (POSIX args typed into cmd, or cmd args typed into a WSL shell). Refusing the contradiction is + * the only answer that keeps the request and the terminal describing the same thing. + */ +function projectRuntimeShellConflict( + shellOverride: string, + projectRuntime: ProjectExecutionRuntimeResolution | undefined +): Error | null { + if (projectRuntime?.status !== 'resolved') { + return null + } + const runsInWsl = projectRuntime.runtime.kind === 'wsl' + if (runsInWsl === isWslShellName(shellOverride)) { + return null + } + return new Error( + runsInWsl + ? `This workspace's project runs its terminals in WSL, so --shell ${shellOverride} cannot be applied. No terminal was created. Use --shell wsl.exe, or change the project's execution runtime.` + : `This workspace's project runs its terminals on the Windows host, so --shell ${shellOverride} cannot be applied. No terminal was created. Change the project's execution runtime to WSL, or pass a Windows shell.` + ) +} + +/** + * A `\\wsl$\\...` path only exists inside that distro, so the providers force `wsl.exe` + * for it whatever shell was requested (`resolveWslSessionContext` keys off the cwd, then the + * workspace path behind the session). That rewrite is right for the global shell setting and + * wrong for `--shell`, which promised the caller the shell it named. This is the only check that + * still fires for a folder workspace, which has no project runtime to disagree with. + */ +function wslUncPathShellConflict( + shellOverride: string, + cwd: string, + workspacePath: string +): Error | null { + if (isWslShellName(shellOverride)) { + return null + } + const wslPath = [cwd, workspacePath].find((path) => parseWslUncPath(path) !== null) + if (wslPath === undefined) { + return null + } + return new Error( + `This terminal would run inside WSL because ${wslPath} lives in a WSL distro, so --shell ${shellOverride} cannot be applied. No terminal was created. Use --shell wsl.exe, or omit --shell.` + ) +} diff --git a/src/main/ssh/ssh-remote-orca-cli.test.ts b/src/main/ssh/ssh-remote-orca-cli.test.ts index 0b3695aec5c..276d9cad87c 100644 --- a/src/main/ssh/ssh-remote-orca-cli.test.ts +++ b/src/main/ssh/ssh-remote-orca-cli.test.ts @@ -180,6 +180,36 @@ describe('runRemoteOrcaCli', () => { } ) + // Why: `orca terminal create --shell` gates on these; without them an SSH pane was told the + // host was too old, when the accurate refusal is that SSH cannot apply the shell. + it('reports the execution host capabilities through the legacy status fallback', async () => { + const runtime = new OrcaRuntimeService() + vi.spyOn(runtime, 'getStatus').mockReturnValue({ + runtimeId: 'runtime-test', + rendererGraphEpoch: 1, + graphStatus: 'ready', + authoritativeWindowId: 1, + liveTabCount: 0, + liveLeafCount: 0, + capabilities: ['terminal.create-shell-selection.v1'] + }) + + const result = await runRemoteOrcaCli( + runtime, + { argv: ['status', '--json'], cwd: '/home/alice/repo', env: {} }, + LEGACY_FALLBACK_OPTIONS + ) + + expect(result.exitCode, result.stdout).toBe(0) + expect(JSON.parse(result.stdout)).toMatchObject({ + ok: true, + result: { + target: { kind: 'environment', environment: 'ssh' }, + runtime: { reachable: true, capabilities: ['terminal.create-shell-selection.v1'] } + } + }) + }) + it('uses the remote ORCA_TERMINAL_HANDLE as orchestration sender identity', async () => { const { runtime, db } = createRuntime() diff --git a/src/main/ssh/ssh-remote-orca-cli.ts b/src/main/ssh/ssh-remote-orca-cli.ts index dba1bc1e2d5..6f476fa0d84 100644 --- a/src/main/ssh/ssh-remote-orca-cli.ts +++ b/src/main/ssh/ssh-remote-orca-cli.ts @@ -185,7 +185,10 @@ async function dispatchRemoteCli( state: status.graphStatus === 'ready' ? 'ready' : 'graph_not_ready', reachable: true, connectionState: runtimeHostConnectionState({ hasStatusEntry: true, status }), - runtimeId: status.runtimeId + runtimeId: status.runtimeId, + // Why: `status.get` ran in-process on the execution host, so these ARE that host's + // capabilities; dropping them made `--shell` report an outdated host instead of SSH. + ...(status.capabilities ? { capabilities: status.capabilities } : {}) }, graph: { state: status.graphStatus } } diff --git a/src/main/worktree-create-preparation-pool.ts b/src/main/worktree-create-preparation-pool.ts index 8251e59a94b..7a040373c57 100644 --- a/src/main/worktree-create-preparation-pool.ts +++ b/src/main/worktree-create-preparation-pool.ts @@ -1,3 +1,4 @@ +import { worktreePreparationGit } from './git/worktree-create-git-executor' import { randomUUID } from 'node:crypto' import { mkdir } from 'node:fs/promises' import { posix, win32 } from 'node:path' @@ -83,7 +84,7 @@ async function discardEntry(entry: PreparationEntry): Promise { function discardEntryInBackground(entry: PreparationEntry): void { // Tracked, not bare `void`: the test reset must be able to settle it before dropping the registry. - trackPreparationDiscard(discardEntry(entry)) + trackPreparationDiscard(worktreePreparationGit.run(() => discardEntry(entry))) } function expireEntry(entry: PreparationEntry): void { @@ -151,7 +152,11 @@ export function takePreparation(entry: PreparationEntry): void { clearTimeout(entry.expiration) } -export function startPreparation({ +export function startPreparation(args: StartPreparationArgs): Promise { + return worktreePreparationGit.run(() => startBackgroundPreparation(args)) +} + +function startBackgroundPreparation({ repoPath, workspaceRoot, baseBranch, diff --git a/src/main/worktree-create-preparation-stale-cleanup.ts b/src/main/worktree-create-preparation-stale-cleanup.ts index 1606e62ed8f..d0f146eda98 100644 --- a/src/main/worktree-create-preparation-stale-cleanup.ts +++ b/src/main/worktree-create-preparation-stale-cleanup.ts @@ -33,6 +33,10 @@ export async function startStalePreparationCleanup( return } void retryPendingPreparationDiscards(cleanupKey) + // Why 'background': reclaiming another process's leftovers is never what a user is waiting on, and + // removing a large tree holds a general admission slot for seconds. The scan keeps the caller's + // tier — a create can await a preparation, and so transitively this scan. + const reclaimOptions: AddWorktreeOptions = { ...options, admissionTier: 'background' } const scan = listWorktreeGraph(repoPath, { ...options, includeCreatePreparations: true @@ -53,9 +57,9 @@ export async function startStalePreparationCleanup( // Preserve a branch-attached final path after a crash; only detached or // still-hidden preparations are safe to discard automatically. if (worktree.branch && pathOwnerPid === null) { - await unlockPreparedWorktree(repoPath, worktree.path, options).catch(() => {}) + await unlockPreparedWorktree(repoPath, worktree.path, reclaimOptions).catch(() => {}) } else if (pathOwnerPid === lockOwnerPid) { - await discardPreparedWorktree(repoPath, worktree.path, options).catch(() => {}) + await discardPreparedWorktree(repoPath, worktree.path, reclaimOptions).catch(() => {}) } } } diff --git a/src/main/worktree-create-preparation.test.ts b/src/main/worktree-create-preparation.test.ts index 785ed094b33..9b3291bc463 100644 --- a/src/main/worktree-create-preparation.test.ts +++ b/src/main/worktree-create-preparation.test.ts @@ -99,6 +99,36 @@ afterEach(async () => { }) describe('worktree create preparation registry', () => { + it.each([undefined, 'Ubuntu'])( + 'preserves create priority through claim probes on %s', + async (wslDistro) => { + const routing = wslDistro ? { wslDistro } : {} + mocks.getWorktreeOptions.mockReturnValue(routing) + await prepareWorktreeCreateForRepo(store, repo, 'origin/main') + expect(mocks.resolveBaseRef).toHaveBeenLastCalledWith(repo.path, 'origin/main', routing) + expect(mocks.prepareCheckout.mock.calls[0]?.[4]).not.toHaveProperty('admissionTier') + + const options = { ...routing, admissionTier: 'interactive' as const } + await expect( + consumePreparedWorktreeCreate({ + repoPath: repo.path, + workspaceRoot: '/workspace', + worktreePath: '/workspace/final', + branch: 'feature/test', + baseBranch: 'main', + options + }) + ).resolves.toMatchObject({ status: 'hit', retargeted: true }) + expect(mocks.resolveBaseRef).toHaveBeenLastCalledWith(repo.path, 'main', options) + expect(mocks.measureDivergence).toHaveBeenCalledWith( + repo.path, + 'refs/remotes/origin/main', + 'refs/heads/main', + options + ) + } + ) + it('starts the checkout only once the async workspace root resolves', async () => { let resolveRoot!: (root: string) => void mocks.computeWorkspaceRootAsync.mockReturnValue( @@ -185,7 +215,12 @@ describe('worktree create preparation registry', () => { branch: 'feature/test', baseBranch: 'main' }) - ).resolves.toEqual({ status: 'hit', retargeted: true, result: {} }) + ).resolves.toEqual({ + status: 'hit', + retargeted: true, + result: {}, + rearm: expect.any(Function) + }) // Finalize still receives the requested base, so it resets onto the requested commit. expect(mocks.finalize).toHaveBeenCalledWith( repo.path, @@ -261,7 +296,12 @@ describe('worktree create preparation registry', () => { branch: 'feature/test', baseBranch: 'refs/remotes/origin/main' }) - ).resolves.toEqual({ status: 'hit', retargeted: false, result: {} }) + ).resolves.toEqual({ + status: 'hit', + retargeted: false, + result: {}, + rearm: expect.any(Function) + }) }) it('never hands the same prepared checkout to two concurrent creates', async () => { @@ -414,7 +454,9 @@ describe('worktree create preparation registry', () => { }) try { await flushBackgroundWork() - expect(mocks.discard).toHaveBeenCalledWith(repo.path, stalePath, {}) + expect(mocks.discard).toHaveBeenCalledWith(repo.path, stalePath, { + admissionTier: 'background' + }) expect(ready).toBe(true) await prepareWorktreeCreateForRepo(store, repo, 'origin/release') expect(mocks.prepareCheckout).toHaveBeenCalledTimes(2) @@ -456,8 +498,10 @@ describe('worktree create preparation registry', () => { await prepareWorktreeCreateForRepo(store, repo, 'origin/main') - expect(mocks.unlock).toHaveBeenCalledWith(repo.path, '/workspace/final', {}) - expect(mocks.discard).not.toHaveBeenCalledWith(repo.path, '/workspace/final', {}) + expect(mocks.unlock).toHaveBeenCalledWith(repo.path, '/workspace/final', { + admissionTier: 'background' + }) + expect(mocks.discard).not.toHaveBeenCalledWith(repo.path, '/workspace/final', expect.anything()) }) it('does not classify a user branch worktree under the preparation directory as stale', async () => { @@ -516,14 +560,18 @@ describe('worktree create preparation registry', () => { expect(mocks.discard).toHaveBeenCalledTimes(1) }) + /** Mirrors a real create: consume, then run the deferred re-arm once the create has returned. */ async function consumeOnce(name: string): Promise { - await consumePreparedWorktreeCreate({ + const attempt = await consumePreparedWorktreeCreate({ repoPath: repo.path, workspaceRoot: '/workspace', worktreePath: `/workspace/${name}`, branch: `feature/${name}`, baseBranch: 'origin/main' }) + if (attempt.status === 'hit') { + attempt.rearm() + } } it('does not re-arm after an isolated create', async () => { @@ -553,10 +601,70 @@ describe('worktree create preparation registry', () => { branch: 'feature/third', baseBranch: 'origin/main' }) - ).resolves.toEqual({ status: 'hit', retargeted: false, result: {} }) + ).resolves.toEqual({ + status: 'hit', + retargeted: false, + result: {}, + rearm: expect.any(Function) + }) expect(mocks.finalize).toHaveBeenCalledTimes(3) }) + it('holds the re-arm checkout until the create runs the deferred thunk', async () => { + await prepareWorktreeCreateForRepo(store, repo, 'origin/main') + await consumeOnce('first') + await prepareWorktreeCreateForRepo(store, repo, 'origin/main') + mocks.prepareCheckout.mockClear() + + const attempt = await consumePreparedWorktreeCreate({ + repoPath: repo.path, + workspaceRoot: '/workspace', + worktreePath: '/workspace/second', + branch: 'feature/second', + baseBranch: 'origin/main' + }) + + // Drained first: an eager re-arm reaches prepareCheckout only after the pool awaits stale + // cleanup, so asserting in the same turn would pass with the deferral removed. + await flushBackgroundWork() + // The replacement checkout would otherwise hold a git admission slot for the rest of the create. + expect(mocks.prepareCheckout).not.toHaveBeenCalled() + expect(attempt.status).toBe('hit') + if (attempt.status === 'hit') { + attempt.rearm() + } + await flushBackgroundWork() + expect(mocks.prepareCheckout).toHaveBeenCalledTimes(1) + }) + + // `startPreparation` overwrites the map entry outright, so a thunk that armed over a prefetch + // would leave that prefetch's locked checkout on disk with nothing holding a reference to it. + it('skips the deferred re-arm when a prefetch armed the same key mid-create', async () => { + await prepareWorktreeCreateForRepo(store, repo, 'origin/main') + await consumeOnce('first') + await prepareWorktreeCreateForRepo(store, repo, 'origin/main') + + const attempt = await consumePreparedWorktreeCreate({ + repoPath: repo.path, + workspaceRoot: '/workspace', + worktreePath: '/workspace/second', + branch: 'feature/second', + baseBranch: 'origin/main' + }) + expect(attempt.status).toBe('hit') + + // The user reopens the composer while the create is still finishing. + await prepareWorktreeCreateForRepo(store, repo, 'origin/main') + mocks.prepareCheckout.mockClear() + + if (attempt.status === 'hit') { + attempt.rearm() + } + await flushBackgroundWork() + + expect(mocks.prepareCheckout).not.toHaveBeenCalled() + }) + it('does not re-arm when finalization failed', async () => { await prepareWorktreeCreateForRepo(store, repo, 'origin/main') await consumeOnce('first') diff --git a/src/main/worktree-create-preparation.ts b/src/main/worktree-create-preparation.ts index b13916194ca..be7ea0d5a36 100644 --- a/src/main/worktree-create-preparation.ts +++ b/src/main/worktree-create-preparation.ts @@ -1,3 +1,4 @@ +import { worktreePreparationGit } from './git/worktree-create-git-executor' import { mkdir } from 'node:fs/promises' import { posix, win32 } from 'node:path' import type { Store } from './persistence' @@ -43,8 +44,18 @@ export function hasPendingWorktreeCreatePreparations(): boolean { return hasPendingPreparations() } +/** Carries the consumed slot's pending re-arm to the create's outermost `finally`, which fires it + * once — after startup on success, and on any failure that follows the consume. */ +export type PreparationRearmHolder = { fire: () => void } + export type PreparedWorktreeCreateAttempt = - | { status: 'hit'; retargeted: boolean; result: AddWorktreeResult } + | { + status: 'hit' + retargeted: boolean + result: AddWorktreeResult + /** Run after materialization/startup completes, before returning the create result. */ + rearm: () => void + } | { status: 'miss'; reason: PreparedCheckoutMissReason } type ConsumePreparedWorktreeArgs = { @@ -62,14 +73,23 @@ function canonicalBaseRef( baseBranch: string, options: AddWorktreeOptions ): Promise { - return resolveLocalWorktreeBaseRef( - repoPath, - baseBranch, - options.wslDistro ? { wslDistro: options.wslDistro } : {} + return resolveLocalWorktreeBaseRef(repoPath, baseBranch, { + ...(options.wslDistro ? { wslDistro: options.wslDistro } : {}), + ...(options.admissionTier ? { admissionTier: options.admissionTier } : {}) + }) +} + +export function prepareWorktreeCreateForRepo( + store: Store, + repo: Repo, + baseBranch: string +): Promise { + return worktreePreparationGit.run(() => + prepareWorktreeCreateInBackground(store, repo, baseBranch) ) } -export async function prepareWorktreeCreateForRepo( +async function prepareWorktreeCreateInBackground( store: Store, repo: Repo, baseBranch: string @@ -145,6 +165,7 @@ async function claimPreparedWorktree( canonicalBase, { ...(options.wslDistro ? { wslDistro: options.wslDistro } : {}), + ...(options.admissionTier ? { admissionTier: options.admissionTier } : {}), // Why forward it: a cancelled create must stop these probes now, not at the deadline. ...(options.signal ? { signal: options.signal } : {}) } @@ -183,31 +204,43 @@ async function claimPreparedWorktree( /** Replaces a just-consumed preparation, re-armed on the base the create actually used so the * next one hits exactly — but only once the user has shown they are creating in a burst. A * replacement costs a full checkout and ~5 minutes of disk until its TTL, so arming one after an - * isolated create spends that on nobody. Never awaited: create has already returned by the time - * the replacement checkout finishes. */ -function rearmPreparation( + * isolated create spends that on nobody. + * + * Returns a thunk rather than launching: the replacement is a full `reset --hard`, which on a + * large repo holds a general admission slot for tens of seconds. Started mid-create it competes + * with the create's own git, so the caller runs it after materialization/startup completes. The burst + * bookkeeping still happens here — a prefetch that re-armed this key while we finalized would + * otherwise swallow the consume, and the next create would look isolated when it is really the + * middle of a burst. */ +function deferRearmPreparation( entry: PreparationEntry, baseBranch: string, canonicalBase: string -): void { - // Record first: a prefetch that re-armed this key while we finalized would otherwise swallow the - // consume, and the next create would look isolated when it is really the middle of a burst. +): () => void { const continuesBurst = recordPreparationConsume(entry.key) - if ( - !continuesBurst || - findPreparation(entry.repoPathKey, entry.workspaceRootKey, canonicalBase, entry.wslDistro) - ) { - return + const alreadyArmed = (): boolean => + findPreparation(entry.repoPathKey, entry.workspaceRootKey, canonicalBase, entry.wslDistro) !== + undefined + if (!continuesBurst || alreadyArmed()) { + return () => {} + } + return () => { + // Re-checked here, not only at consume time: `startPreparation` overwrites the map entry + // outright, so arming over a prefetch that landed during the create would strand its + // checkout on disk with no owner to discard it. + if (alreadyArmed()) { + return + } + void startPreparation({ + repoPath: entry.repoPath, + workspaceRoot: entry.workspaceRoot, + baseBranch, + canonicalBase, + options: entry.options + }).catch(() => { + // Why: a warm-up failure is recovered by the normal add on the next create. + }) } - void startPreparation({ - repoPath: entry.repoPath, - workspaceRoot: entry.workspaceRoot, - baseBranch, - canonicalBase, - options: entry.options - }).catch(() => { - // Why: a warm-up failure is recovered by the normal add on the next create. - }) } export async function consumePreparedWorktreeCreate( @@ -237,8 +270,8 @@ export async function consumePreparedWorktreeCreate( ) // Consuming the only prepared checkout leaves the next create cold. Re-arm for a user who is // creating in a burst; the TTL and the preparation limit still bound an unused replacement. - rearmPreparation(entry, args.baseBranch, claim.canonicalBase) - return { status: 'hit', retargeted: claim.retargeted, result } + const rearm = deferRearmPreparation(entry, args.baseBranch, claim.canonicalBase) + return { status: 'hit', retargeted: claim.retargeted, result, rearm } } catch (error) { await discardPreparedWorktree(args.repoPath, entry.preparedPath, options).catch(() => {}) console.warn( diff --git a/src/relay/agent-status-store-relay-context.test.ts b/src/relay/agent-status-store-relay-context.test.ts new file mode 100644 index 00000000000..92319a2e644 --- /dev/null +++ b/src/relay/agent-status-store-relay-context.test.ts @@ -0,0 +1,79 @@ +import { readFileSync } from 'node:fs' +import { describe, expect, it } from 'vitest' +import { createAgentChildWorkAdmission } from '../shared/agent-status-child-work-admission' +import { createAgentStatusStore } from '../shared/agent-status-store' +import { makeStructuredAgentStatusSubject } from '../shared/agent-status-subject' + +const SHARED_CORE_FILES = [ + 'agent-status-child-work.ts', + 'agent-status-child-work-codec.ts', + 'agent-status-child-work-admission.ts', + 'agent-status-child-work-admission-core.ts', + 'agent-status-child-work-admission-operations.ts', + 'agent-status-child-work-alias.ts', + 'agent-status-child-work-freshness.ts', + 'agent-status-child-work-projection.ts', + 'agent-status-store.ts', + 'agent-status-store-codec.ts', + 'agent-status-store-mutation.ts', + 'agent-status-store-contract.ts', + 'agent-status-store-fact-codec.ts', + 'agent-status-store-parent.ts', + 'agent-status-store-persistence.ts', + 'agent-status-store-state.ts', + 'agent-status-store-status-codec.ts', + 'agent-status-transport-envelope.ts' +] + +const trustedSubject = makeStructuredAgentStatusSubject( + { + executionHostId: 'ssh:relay-host-a', + wslDistro: null, + workspaceId: 'folder-workspace-a', + workspaceKind: 'folder' + }, + 'session_11111111-1111-4111-8111-111111111111' +) + +describe('agent status store relay context', () => { + it('instantiates the same shared core and completes an admission/snapshot round-trip', () => { + const authority = createAgentStatusStore({ epoch: 'relay-epoch-a', mode: 'authority' }) + expect( + authority.applyMutation({ parent: { subject: trustedSubject, firstObservedAt: 10 } }) + ).not.toBeNull() + const admission = createAgentChildWorkAdmission(authority, { + mintChildWorkId: () => 'relay-child-1' + }) + + expect( + admission.announce({ + parent: trustedSubject, + provider: 'claude', + aliases: [{ segmentId: 'segment-1', aliasKind: 'task_id', alias: 'task-1' }], + fence: { invocationId: 'invocation-1', generation: 1 }, + lifetime: 'current', + kind: 'agent', + state: 'working', + membership: 'live', + observedAt: 20, + stoppable: true, + provenance: { source: 'transport', producerId: 'relay-fixture' } + }) + ).toMatchObject({ accepted: true, childWorkId: 'relay-child-1' }) + + const replica = createAgentStatusStore({ epoch: 'replica-placeholder', mode: 'replica' }) + expect(replica.applySnapshot(authority.getSnapshot())).toBe(true) + expect(replica.getParent(trustedSubject)?.firstObservedAt).toBe(10) + expect(replica.getChildren(trustedSubject)[0]?.childWorkId).toBe('relay-child-1') + }) + + it('keeps the relay-consumed core free of main, renderer and Electron imports', () => { + for (const filename of SHARED_CORE_FILES) { + const source = readFileSync(new URL(`../shared/${filename}`, import.meta.url), 'utf8') + expect(source, filename).not.toMatch( + /from\s+['"](?:electron|\.\.\/(?:main|renderer))(?:\/|['"])/ + ) + expect(source, filename).not.toMatch(/require\(['"]electron['"]\)/) + } + }) +}) diff --git a/src/relay/pty-handler-revive.test.ts b/src/relay/pty-handler-revive.test.ts index e184cd56817..bd0dffbd1b8 100644 --- a/src/relay/pty-handler-revive.test.ts +++ b/src/relay/pty-handler-revive.test.ts @@ -518,6 +518,38 @@ describe('PtyHandler', () => { expect(JSON.parse(live).map((entry: { id: string }) => entry.id)).toEqual(['pty-21']) }) + // Why: the pid gate is the one place revive turns an observation into "this pane is + // finished". `kill(pid, 0)` answers EPERM when the process exists under another uid, and + // the same ESRCH-only rule `reapPtyProvenExited` applies has to hold here + // (docs/reference/ssh-execution-boundary.md). + it('keeps a pane whose pid refuses the probe and drops only a proven-gone one', async () => { + const state = JSON.stringify([ + { id: 'pty-30', pid: 424242, cols: 80, rows: 24, cwd: LIVE_CWD }, + { id: 'pty-31', pid: 434343, cols: 80, rows: 24, cwd: LIVE_CWD } + ]) + const killSpy = vi.spyOn(process, 'kill').mockImplementation((pid) => { + if (pid === 424242) { + throw Object.assign(new Error('kill EPERM'), { code: 'EPERM' }) + } + if (pid === 434343) { + throw Object.assign(new Error('kill ESRCH'), { code: 'ESRCH' }) + } + return true + }) + try { + await dispatcher.callRequest('pty.revive', { state }) + } finally { + killSpy.mockRestore() + } + + expect(mockPtySpawn).toHaveBeenCalledTimes(1) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: callRequest is typed unknown; pty.serialize answers with the JSON state string this file parses everywhere. + const live = (await dispatcher.callRequest('pty.serialize', { + ids: ['pty-30', 'pty-31'] + })) as string + expect(JSON.parse(live).map((entry: { id: string }) => entry.id)).toEqual(['pty-30']) + }) + describe('a Windows relay reviving a WSL pane', () => { const worktreeId = 'r::/remote/wsl-worktree' const historyFile = join( diff --git a/src/relay/pty-handler.ts b/src/relay/pty-handler.ts index 0dafb4fb40b..4a55d6b587b 100644 --- a/src/relay/pty-handler.ts +++ b/src/relay/pty-handler.ts @@ -5,7 +5,7 @@ import { existsSync } from 'node:fs' import { basename, join } from 'node:path' import { randomUUID } from 'node:crypto' import { resolveWindowsGitBashShellPath } from '../main/git-bash' -import { WINDOWS_GIT_BASH_SHELL } from '../shared/windows-terminal-shell' +import { isSupportedWindowsShellOverride } from '../shared/windows-terminal-shell' import type { RelayDispatcher, RequestContext } from './dispatcher' import { resolveDefaultShell, @@ -365,22 +365,6 @@ const ALLOWED_SIGNALS = new Set([ 'SIGUSR2' ]) -const ALLOWED_WINDOWS_SHELL_OVERRIDES = new Set([ - 'powershell.exe', - 'powershell', - 'pwsh.exe', - 'pwsh', - 'cmd.exe', - 'cmd', - 'wsl.exe', - 'wsl', - // Why: both spellings classify as a POSIX startup family, so rejecting them here made the relay - // the one host that hard-failed a setting the local and daemon PTYs accept. - 'bash.exe', - 'bash', - WINDOWS_GIT_BASH_SHELL -]) - function resolvePtyShellOverride(shellOverride: string): string { if (!shellOverride) { return '' @@ -388,8 +372,7 @@ function resolvePtyShellOverride(shellOverride: string): string { if (process.platform !== 'win32') { return '' } - const normalized = shellOverride.toLowerCase() - if (!ALLOWED_WINDOWS_SHELL_OVERRIDES.has(normalized)) { + if (!isSupportedWindowsShellOverride(shellOverride)) { throw new Error(`Unsupported Windows shell override: ${shellOverride}`) } return resolveWindowsGitBashShellPath(shellOverride) ?? shellOverride @@ -2914,10 +2897,10 @@ export class PtyHandler { if (this.ptys.has(entry.id) || this.pendingReviveIds.has(entry.id)) { continue } - // Only re-attach if the original process is still alive - try { - process.kill(entry.pid, 0) - } catch { + // Only re-attach if the host proves the original process is still there. `isProcessAlive` + // is ESRCH-only for the same reason `reapPtyProvenExited` is: a refusal this host cannot + // resolve is unverifiable, not absence (docs/reference/ssh-execution-boundary.md). + if (!Number.isInteger(entry.pid) || entry.pid <= 0 || !isProcessAlive(entry.pid)) { continue } const ownedPath = entry.worktreeId diff --git a/src/renderer/src/components/dashboard/launch-dashboard-agent.test.ts b/src/renderer/src/components/dashboard/launch-dashboard-agent.test.ts index a207244cdb9..a86e9901835 100644 --- a/src/renderer/src/components/dashboard/launch-dashboard-agent.test.ts +++ b/src/renderer/src/components/dashboard/launch-dashboard-agent.test.ts @@ -30,7 +30,9 @@ describe('launchDashboardAgent', () => { vi.clearAllMocks() mocks.getExecutionHostIdForWorktree.mockReturnValue('ssh:docs') mocks.getKnownWorktreeById.mockReturnValue({ id: 'folder:docs' }) - mocks.launchAgentInNewTab.mockReturnValue({ tabId: 'tab-1' }) + mocks.launchAgentInNewTab.mockReturnValue({ + surface: { kind: 'local-terminal', tabId: 'tab-1' } + }) }) it('activates a folder or git workspace on its execution host before launching', () => { diff --git a/src/renderer/src/components/native-chat/NativeChatDeliveryRetry.tsx b/src/renderer/src/components/native-chat/NativeChatDeliveryRetry.tsx new file mode 100644 index 00000000000..7fce2abc9ea --- /dev/null +++ b/src/renderer/src/components/native-chat/NativeChatDeliveryRetry.tsx @@ -0,0 +1,48 @@ +import { RotateCcw } from 'lucide-react' +import type { StructuredAgentSessionOutboxEntry } from '../../../../shared/structured-agent-session-outbox' +import { Button } from '@/components/ui/button' +import { translate } from '@/i18n/i18n' + +export function NativeChatDeliveryRetry({ + outbox, + blockedClientMessageId, + retry +}: { + outbox: readonly StructuredAgentSessionOutboxEntry[] + blockedClientMessageId: string | null + retry: (clientMessageId: string) => void +}): React.JSX.Element | null { + // Why: only the head can hold the queue, so Retry must never name or resend a later entry. + const head = outbox[0] + const retryable = + head && (head.state === 'unconfirmed' || head.clientMessageId === blockedClientMessageId) + ? head + : null + if (!retryable) { + return null + } + return ( +
+ + {retryable.state === 'unconfirmed' + ? translate( + 'auto.components.native.chat.NativeChatStructuredSession.1f772bb5d0', + 'Message delivery is unconfirmed.' + ) + : translate( + 'auto.components.native.chat.NativeChatStructuredSession.93ef441197', + 'Message was not sent.' + )} + + +
+ ) +} diff --git a/src/renderer/src/components/native-chat/NativeChatLaunchRetry.tsx b/src/renderer/src/components/native-chat/NativeChatLaunchRetry.tsx new file mode 100644 index 00000000000..23b52615ee9 --- /dev/null +++ b/src/renderer/src/components/native-chat/NativeChatLaunchRetry.tsx @@ -0,0 +1,35 @@ +import { RotateCcw } from 'lucide-react' +import { Button } from '@/components/ui/button' +import { translate } from '@/i18n/i18n' +import type { StructuredAgentSessionLaunchLifecycle } from '@/lib/structured-agent-session-launch' + +export function NativeChatLaunchRetry({ + lifecycle, + onRetry +}: { + lifecycle: StructuredAgentSessionLaunchLifecycle | null + onRetry: () => void +}): React.JSX.Element | null { + if (lifecycle !== 'failed' && lifecycle !== 'visibility-unknown') { + return null + } + const message = + lifecycle === 'failed' + ? translate( + 'auto.components.native.chat.NativeChatLaunchRetry.failed', + 'Chat could not be started.' + ) + : translate( + 'auto.components.native.chat.NativeChatLaunchRetry.unknown', + 'Chat connection could not be confirmed.' + ) + return ( +
+ {message} + +
+ ) +} diff --git a/src/renderer/src/components/native-chat/NativeChatMessageList.message-rail-windowing.test.tsx b/src/renderer/src/components/native-chat/NativeChatMessageList.message-rail-windowing.test.tsx new file mode 100644 index 00000000000..e2fd6f65d8c --- /dev/null +++ b/src/renderer/src/components/native-chat/NativeChatMessageList.message-rail-windowing.test.tsx @@ -0,0 +1,183 @@ +// @vitest-environment happy-dom + +import '@testing-library/jest-dom/vitest' + +import { act, cleanup, fireEvent, render, screen } from '@testing-library/react' +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' +import type { + AgentJournalItemBody, + AgentJournalRenderItem +} from '../../../../shared/agent-session-journal-types' +import { projectStructuredItemsToNativeChat } from '../../../../shared/structured-agent-session-projection' +import type { NativeChatMessage } from '../../../../shared/native-chat-types' +import { NativeChatMessageList } from './NativeChatMessageList' +import { + TRANSCRIPT_LENGTH, + list, + marker, + scrollTranscript, + session, + stubLayout, + windowState +} from './NativeChatMessageList.windowing-test-support' + +afterEach(cleanup) + +describe('revealing a diff from a turn rollup', () => { + let restoreLayout = (): void => {} + beforeEach(() => { + restoreLayout = stubLayout() + }) + afterEach(() => { + restoreLayout() + vi.restoreAllMocks() + }) + + function journalItem(itemId: string, body: AgentJournalItemBody, sequence: number) { + return { itemId, body, sequence, observedAt: sequence * 1000, revision: 1 } + } + + const patch = '@@ -1 +1 @@\n-before\n+after' + const items: AgentJournalRenderItem[] = [ + journalItem( + 'user', + { kind: 'message', role: 'user', blocks: [{ type: 'text', text: 'Edit it' }] }, + 1 + ), + journalItem( + 'diff', + { + kind: 'diff', + path: 'src/a.ts', + patch: { head: patch, truncated: false, digest: 'fixture', byteLength: patch.length } + }, + 2 + ), + ...Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => + journalItem( + `tail-${index}`, + { kind: 'message', role: 'assistant', blocks: [{ type: 'text', text: `marker-${index}` }] }, + index + 3 + ) + ) + ] + + it('lets a rail jump supersede a previously revealed diff', () => { + const withPrompts = [ + ...items.slice(0, 2), + journalItem( + 'user-2', + { kind: 'message', role: 'user', blocks: [{ type: 'text', text: 'Second prompt' }] }, + 3 + ), + journalItem( + 'user-3', + { kind: 'message', role: 'user', blocks: [{ type: 'text', text: 'Third prompt' }] }, + 4 + ), + ...items.slice(2) + ].map((item, index) => ({ ...item, sequence: index + 1 })) + const scrollTo = vi.fn() + vi.spyOn(HTMLElement.prototype, 'scrollTo').mockImplementation(scrollTo) + const { container } = render( + + ) + fireEvent.click(screen.getByRole('button', { name: /1 changed file/ })) + fireEvent.click(screen.getByRole('button', { name: /src\/a.ts/ })) + scrollTranscript(container, 6000) + expect(screen.getByText('Edited file')).toBeInTheDocument() + scrollTo.mockClear() + fireEvent.click(screen.getByRole('button', { name: 'Your messages' })) + fireEvent.click(screen.getByRole('button', { name: 'Second prompt' })) + expect(scrollTo).toHaveBeenCalledTimes(1) + expect(screen.queryByText('Edited file')).toBeNull() + + scrollTranscript(container, 0) + scrollTo.mockClear() + fireEvent.click(screen.getByRole('button', { name: /1 changed file/ })) + fireEvent.click(screen.getByRole('button', { name: /src\/a.ts/ })) + expect(scrollTo).toHaveBeenCalledTimes(1) + }) +}) + +// The rail borrows the reveal's pin to reach a row the window has left behind. +// Borrowing the pin means it also has to give it back: the request is what +// outranks a later reveal, and slots is rebuilt every render, so an effect that +// merely watched it would re-scroll forever. +describe('jumping to a message from the rail', () => { + let restoreLayout = (): void => {} + beforeEach(() => { + restoreLayout = stubLayout() + }) + afterEach(() => { + restoreLayout() + vi.useRealTimers() + vi.restoreAllMocks() + }) + + function userMarker(index: number): NativeChatMessage { + return { + id: `message-${index}`, + role: 'user', + blocks: [{ type: 'text', text: `prompt-${index}` }], + timestamp: index + 1, + source: 'transcript' + } + } + + const conversation = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => + index % 10 === 0 ? userMarker(index) : marker(index) + ) + + /** Open the hover panel through the trigger and click the first prompt. */ + function jumpToFirstPrompt(): void { + fireEvent.click(screen.getByRole('button', { name: 'Your messages' })) + act(() => { + vi.advanceTimersByTime(300) + }) + fireEvent.click(screen.getByRole('button', { name: 'prompt-0' })) + act(() => { + vi.advanceTimersByTime(300) + }) + } + + it('scrolls once for a selection, not again on every later render', () => { + vi.useFakeTimers() + const scrollTo = vi.fn() + vi.spyOn(HTMLElement.prototype, 'scrollTo').mockImplementation(scrollTo) + const { container, rerender } = render(list(conversation)) + scrollTranscript(container, 6000) + + jumpToFirstPrompt() + expect(scrollTo).toHaveBeenCalled() + + // A streaming turn re-renders constantly with the same messages. The jump is + // spent; nothing here may drag the reader back to the row they left. + scrollTo.mockClear() + rerender(list(conversation)) + rerender(list(conversation)) + expect(scrollTo).not.toHaveBeenCalled() + }) + + it('releases the pin once the jump is spent', () => { + vi.useFakeTimers() + const scrollTo = vi.fn() + vi.spyOn(HTMLElement.prototype, 'scrollTo').mockImplementation(scrollTo) + const { container } = render(list(conversation)) + scrollTranscript(container, 6000) + + jumpToFirstPrompt() + expect(scrollTo).toHaveBeenCalled() + + // The request is spent as soon as the scroll is issued, so the row it pinned + // is not held in the window afterwards. A pin still standing here would also + // still outrank a diff reveal, which shares the same slot. + expect(windowState(container).indexes).not.toContain(0) + }) +}) diff --git a/src/renderer/src/components/native-chat/NativeChatMessageList.windowing-test-support.tsx b/src/renderer/src/components/native-chat/NativeChatMessageList.windowing-test-support.tsx new file mode 100644 index 00000000000..316827b5138 --- /dev/null +++ b/src/renderer/src/components/native-chat/NativeChatMessageList.windowing-test-support.tsx @@ -0,0 +1,221 @@ +// @vitest-environment happy-dom + +import { fireEvent } from '@testing-library/react' +import { vi } from 'vitest' +import type { NativeChatMessage } from '../../../../shared/native-chat-types' +import type { NativeChatLiveSession } from './use-native-chat-live-session' +import { NativeChatMessageList } from './NativeChatMessageList' +import { + estimateNativeChatRowHeight, + nativeChatRowContentMetrics +} from './native-chat-row-height-estimate' + +const VIEWPORT_PX = 600 + +export const TRANSCRIPT_LENGTH = 200 + +/** Everything the document holds below the last row: the transcript column's + * trailing chrome and the scroll root's bottom padding. Non-zero on purpose — + * the document's bottom sits past the window's last row, which is exactly where + * a pin computed from the virtualizer's totals and one computed from the + * document disagree. */ +const BELOW_TRANSCRIPT_PX = 24 +let belowTranscriptPx = BELOW_TRANSCRIPT_PX + +/** Everything the document holds above the spacer: the scroll root's top gutter, + * and the "load earlier" block whenever there is older history to page in. This + * is the virtualizer's `scrollMargin`, and it is the larger half of the gap + * between the document's end and the end the virtualizer computes. */ +let aboveTranscriptPx = 0 + +/** Heights the stubbed layout reports per row index, when a case wants a row to + * measure as something other than its estimate. Empty means "every row at its + * estimate", which is what every non-growth case wants. */ +let measuredRowHeights: readonly number[] = [] + +export function marker(index: number): NativeChatMessage { + return { + id: `message-${index}`, + role: 'assistant', + blocks: [{ type: 'text', text: `marker-${index}` }], + timestamp: index + 1, + source: 'transcript' + } +} + +const ROW_PX = estimateNativeChatRowHeight(nativeChatRowContentMetrics(marker(0)), { + hasReceipt: false, + hasStatus: false, + hasTurnDiff: false +}) + +/** Replace a layout property on every element, and hand back the undo. */ +function overrideLayoutProperty(name: string, descriptor: PropertyDescriptor): () => void { + const original = Object.getOwnPropertyDescriptor(HTMLElement.prototype, name) + Object.defineProperty(HTMLElement.prototype, name, { configurable: true, ...descriptor }) + return () => { + if (original) { + Object.defineProperty(HTMLElement.prototype, name, original) + } else { + Reflect.deleteProperty(HTMLElement.prototype, name) + } + } +} + +/** The spacer's reserved height, which is the transcript's whole rendered height: + * windowed rows are absolutely positioned inside it, so a row growing in place + * reaches the document only through the height the window reserves for it. */ +function reservedTranscriptHeight(root: ParentNode): number { + const spacer = root.querySelector('[data-native-chat-window]') + return spacer ? Number.parseFloat(spacer.style.height) || 0 : 0 +} + +// The virtualizer measures with `offsetHeight` — not `clientHeight`, not a +// bounding rect — so that is the one thing a DOM without layout has to answer +// for windowing to engage at all. Rows report the height their own estimate +// predicted, which keeps the totals exact and independent of which rows happen +// to have been mounted long enough to be measured; `measuredRowHeights` is how a +// case says a row measures as something else. +// +// `scrollGeometry` additionally gives the scroll root a document to scroll: a +// height, a viewport, and a `scrollTop` that clamps the way a real one does. +// Off by default, because a transcript with a real document opens pinned to its +// bottom and the cases above are about where the window sits, not where it lands. +export function stubLayout({ + scrollGeometry = false, + offsetChain = false, + viewportHeight = () => VIEWPORT_PX +}: { + scrollGeometry?: boolean + /** Give the spacer an `offsetTop` and a chain to walk up to the scroll root, + * so `scrollMargin` can be something other than zero. */ + offsetChain?: boolean + viewportHeight?: () => number +} = {}): () => void { + const scrollTops = new WeakMap() + const restores = [ + overrideLayoutProperty('offsetHeight', { + get(this: HTMLElement): number { + if (this.hasAttribute('data-native-chat-scroll')) { + return viewportHeight() + } + if (this.hasAttribute('data-native-chat-window')) { + return reservedTranscriptHeight(this.parentElement ?? this) + } + const index = this.dataset.index + if (index !== undefined) { + return measuredRowHeights[Number(index)] ?? ROW_PX + } + // The transcript column: as tall as the window it wraps, plus what sits + // under it. This is the element the list observes for streamed growth. + return this.classList.contains('max-w-4xl') + ? reservedTranscriptHeight(this) + belowTranscriptPx + : 0 + } + }) + ] + if (scrollGeometry) { + restores.push( + overrideLayoutProperty('clientHeight', { + get(this: HTMLElement): number { + return this.hasAttribute('data-native-chat-scroll') ? viewportHeight() : 0 + } + }), + overrideLayoutProperty('scrollHeight', { + get(this: HTMLElement): number { + return this.hasAttribute('data-native-chat-scroll') + ? aboveTranscriptPx + reservedTranscriptHeight(this) + belowTranscriptPx + : 0 + } + }), + overrideLayoutProperty('scrollTop', { + get(this: HTMLElement): number { + return scrollTops.get(this) ?? 0 + }, + set(this: HTMLElement, value: number): void { + // A browser clamps; without this `scrollTop = scrollHeight` would park + // the view past the end and every distance-from-bottom would read 0. + const max = Math.max(0, this.scrollHeight - this.clientHeight) + scrollTops.set(this, Math.min(Math.max(0, value), max)) + } + }) + ) + } + if (offsetChain) { + restores.push( + overrideLayoutProperty('offsetTop', { + get(this: HTMLElement): number { + return this.hasAttribute('data-native-chat-window') ? aboveTranscriptPx : 0 + } + }), + // happy-dom has no `offsetParent` at all, so production's walk to the + // scroll root ends before it starts and every margin reads zero. + overrideLayoutProperty('offsetParent', { + get(this: HTMLElement): HTMLElement | null { + return this.parentElement?.closest('[data-native-chat-scroll]') ?? null + } + }) + ) + } + return () => { + for (const restore of restores.toReversed()) { + restore() + } + } +} + +export function session(messages: NativeChatMessage[]): NativeChatLiveSession { + return { + messages, + status: 'ready', + sessionId: 'session-1', + agent: 'codex', + hasMore: false, + loadingEarlier: false, + loadEarlier: vi.fn(), + readPhase: 'ready' + } +} + +export function list(messages: NativeChatMessage[]): React.JSX.Element { + return ( + + ) +} + +/** Reads the window, and refuses to pass if there is no window to read. + * + * Without this a change to the usability gate would quietly send every case + * below down the whole-transcript path, where "fewer rows than messages" is + * false but every other assertion still holds. */ +export function windowState(container: HTMLElement): { totalSize: number; indexes: number[] } { + const spacer = container.querySelector('[data-native-chat-window]') + if (!spacer) { + throw new Error('transcript is not windowed: no spacer, every row is mounted') + } + const totalSize = Number.parseFloat(spacer.style.height) + if (!(totalSize > 0)) { + throw new Error(`transcript reserved no height (${spacer.style.height})`) + } + return { + totalSize, + indexes: Array.from(container.querySelectorAll('[data-index]')) + .map((row) => Number(row.dataset.index)) + .sort((left, right) => left - right) + } +} + +/** happy-dom fires no scroll event for an assignment to `scrollTop`. */ +export function scrollTranscript(container: HTMLElement, top: number): void { + const scroller = container.querySelector('[data-native-chat-scroll]') + if (!scroller) { + throw new Error('no transcript scroll root') + } + scroller.scrollTop = top + fireEvent.scroll(scroller) +} diff --git a/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx b/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx index 0caadd20c21..c6a13c7ed83 100644 --- a/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx +++ b/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx @@ -201,125 +201,6 @@ describe('revealing a diff from a turn rollup', () => { // Pinned, not paged to: the window is still a window. expect(windowState(container).indexes.length).toBeLessThanOrEqual(mountedBefore + 2) }) - - it('lets a rail jump supersede a previously revealed diff', () => { - const withPrompts = [ - ...items.slice(0, 2), - journalItem( - 'user-2', - { kind: 'message', role: 'user', blocks: [{ type: 'text', text: 'Second prompt' }] }, - 3 - ), - journalItem( - 'user-3', - { kind: 'message', role: 'user', blocks: [{ type: 'text', text: 'Third prompt' }] }, - 4 - ), - ...items.slice(2) - ].map((item, index) => ({ ...item, sequence: index + 1 })) - const scrollTo = vi.fn() - vi.spyOn(HTMLElement.prototype, 'scrollTo').mockImplementation(scrollTo) - const { container } = render( - - ) - fireEvent.click(screen.getByRole('button', { name: /1 changed file/ })) - fireEvent.click(screen.getByRole('button', { name: /src\/a.ts/ })) - scrollTranscript(container, 6000) - expect(screen.getByText('Edited file')).toBeInTheDocument() - scrollTo.mockClear() - fireEvent.click(screen.getByRole('button', { name: 'Your messages' })) - fireEvent.click(screen.getByRole('button', { name: 'Second prompt' })) - expect(scrollTo).toHaveBeenCalledTimes(1) - expect(screen.queryByText('Edited file')).toBeNull() - - scrollTranscript(container, 0) - scrollTo.mockClear() - fireEvent.click(screen.getByRole('button', { name: /1 changed file/ })) - fireEvent.click(screen.getByRole('button', { name: /src\/a.ts/ })) - expect(scrollTo).toHaveBeenCalledTimes(1) - }) -}) - -// The rail borrows the reveal's pin to reach a row the window has left behind. -// Borrowing the pin means it also has to give it back: the request is what -// outranks a later reveal, and `slots` is rebuilt every render, so an effect that -// merely watched it would re-scroll forever. -describe('jumping to a message from the rail', () => { - let restoreLayout = (): void => {} - beforeEach(() => { - restoreLayout = stubLayout() - }) - afterEach(() => { - restoreLayout() - vi.useRealTimers() - vi.restoreAllMocks() - }) - - function userMarker(index: number): NativeChatMessage { - return { - id: `message-${index}`, - role: 'user', - blocks: [{ type: 'text', text: `prompt-${index}` }], - timestamp: index + 1, - source: 'transcript' - } - } - - const conversation = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => - index % 10 === 0 ? userMarker(index) : marker(index) - ) - - /** Open the hover panel through the trigger and click the first prompt. */ - function jumpToFirstPrompt(): void { - fireEvent.click(screen.getByRole('button', { name: 'Your messages' })) - act(() => { - vi.advanceTimersByTime(300) - }) - fireEvent.click(screen.getByRole('button', { name: 'prompt-0' })) - act(() => { - vi.advanceTimersByTime(300) - }) - } - - it('scrolls once for a selection, not again on every later render', () => { - vi.useFakeTimers() - const scrollTo = vi.fn() - vi.spyOn(HTMLElement.prototype, 'scrollTo').mockImplementation(scrollTo) - const { container, rerender } = render(list(conversation)) - scrollTranscript(container, 6000) - - jumpToFirstPrompt() - expect(scrollTo).toHaveBeenCalled() - - // A streaming turn re-renders constantly with the same messages. The jump is - // spent; nothing here may drag the reader back to the row they left. - scrollTo.mockClear() - rerender(list(conversation)) - rerender(list(conversation)) - expect(scrollTo).not.toHaveBeenCalled() - }) - - it('releases the pin once the jump is spent', () => { - vi.useFakeTimers() - const scrollTo = vi.fn() - vi.spyOn(HTMLElement.prototype, 'scrollTo').mockImplementation(scrollTo) - const { container } = render(list(conversation)) - scrollTranscript(container, 6000) - - jumpToFirstPrompt() - expect(scrollTo).toHaveBeenCalled() - - // The request is spent as soon as the scroll is issued, so the row it pinned - // is not held in the window afterwards. A pin still standing here would also - // still outrank a diff reveal, which shares the same slot. - expect(windowState(container).indexes).not.toContain(0) - }) }) describe('transcript with a hidden scroll root', () => { diff --git a/src/renderer/src/components/native-chat/NativeChatStructuredSession.launch-lifecycle.test.tsx b/src/renderer/src/components/native-chat/NativeChatStructuredSession.launch-lifecycle.test.tsx new file mode 100644 index 00000000000..1550b3316e9 --- /dev/null +++ b/src/renderer/src/components/native-chat/NativeChatStructuredSession.launch-lifecycle.test.tsx @@ -0,0 +1,109 @@ +// @vitest-environment happy-dom + +import { cleanup, fireEvent, render, screen, waitFor } from '@testing-library/react' +import { afterEach, describe, expect, it, vi } from 'vitest' + +const { mocks, moduleFactories, resetStructuredSessionMocks } = await vi.hoisted(async () => + (await import('./NativeChatStructuredSession.test-harness')).createStructuredSessionMocks() +) + +vi.mock('@/lib/structured-agent-session-launch', () => + moduleFactories.structuredAgentSessionLaunch() +) +vi.mock('@/runtime/structured-agent-session-client', () => + moduleFactories.structuredAgentSessionClient() +) +vi.mock('./use-structured-agent-session', () => moduleFactories.useStructuredAgentSession()) +vi.mock('./use-native-chat-font-scale', () => moduleFactories.useNativeChatFontScale()) +vi.mock('./use-native-chat-file-link-context', () => moduleFactories.useNativeChatFileLinkContext()) +vi.mock('./use-native-chat-file-link-click', () => moduleFactories.useNativeChatFileLinkClick()) +vi.mock('./NativeChatMessageList', () => moduleFactories.nativeChatMessageList()) +vi.mock('./NativeChatComposer', () => moduleFactories.nativeChatComposer()) +vi.mock('./NativeChatEmptyState', () => moduleFactories.nativeChatEmptyState()) +vi.mock('./NativeChatApprovalCard', () => moduleFactories.nativeChatApprovalCard()) +vi.mock('./NativeChatQuestionCard', () => moduleFactories.nativeChatQuestionCard()) + +import { NativeChatStructuredSession } from './NativeChatStructuredSession' + +function sessionView(): React.JSX.Element { + return ( + + ) +} + +describe('NativeChatStructuredSession launch lifecycle', () => { + afterEach(() => { + cleanup() + localStorage.clear() + resetStructuredSessionMocks() + }) + + it('shows the ordinary usable chat without a startup label while launch is pending', () => { + mocks.launchLifecycle = 'pending' + render(sessionView()) + + expect(screen.getByTestId('structured-composer')).toBeTruthy() + expect(mocks.controllerProps).toMatchObject({ transportEnabled: false }) + expect(screen.queryByText(/Starting (Claude|Codex) chat/i)).toBeNull() + expect(screen.queryByRole('button', { name: 'Retry' })).toBeNull() + }) + + it.each([ + ['failed', 'Chat could not be started.'], + ['visibility-unknown', 'Chat connection could not be confirmed.'] + ] as const)('offers launch Retry for %s without naming the provider', (lifecycle, message) => { + mocks.launchLifecycle = lifecycle + render(sessionView()) + + expect(screen.getByText(message)).toBeTruthy() + expect(screen.queryByText(/Starting (Claude|Codex) chat/i)).toBeNull() + fireEvent.click(screen.getByRole('button', { name: 'Retry' })) + expect(mocks.retryLaunch).toHaveBeenCalledWith('wt-1', 'session-1') + }) + + it('keeps the durable outbox parked until publication, then dispatches it once', async () => { + mocks.mode = 'outbox' + mocks.launchLifecycle = 'visibility-unknown' + mocks.call.mockResolvedValue({ + ok: true, + value: { submission: { clientMessageId: 'client-1', dispatchState: 'accepted' } } + }) + const { rerender } = render(sessionView()) + const send = mocks.composerProps?.structuredTransport?.send + if (typeof send !== 'function') { + throw new Error('Structured composer transport was not installed') + } + + expect(send('queued while launching', [])).toBe(true) + expect(mocks.call).not.toHaveBeenCalled() + fireEvent.click(screen.getByRole('button', { name: 'Retry' })) + expect(mocks.call).not.toHaveBeenCalled() + + mocks.launchLifecycle = 'published' + rerender(sessionView()) + await waitFor(() => expect(mocks.call).toHaveBeenCalledOnce()) + expect(mocks.call).toHaveBeenCalledWith( + { kind: 'local' }, + 'agentSession.send', + expect.objectContaining({ envelope: expect.objectContaining({ sessionId: 'session-1' }) }) + ) + }) + + it.each([null, 'published'] as const)( + 'enables provider transport for lifecycle %s', + (lifecycle) => { + mocks.launchLifecycle = lifecycle + render(sessionView()) + + expect(mocks.controllerProps).toMatchObject({ transportEnabled: true }) + expect(screen.queryByRole('button', { name: 'Retry' })).toBeNull() + } + ) +}) diff --git a/src/renderer/src/components/native-chat/NativeChatStructuredSession.test-harness.tsx b/src/renderer/src/components/native-chat/NativeChatStructuredSession.test-harness.tsx index 345ad5bbef2..d4d3a76b5ca 100644 --- a/src/renderer/src/components/native-chat/NativeChatStructuredSession.test-harness.tsx +++ b/src/renderer/src/components/native-chat/NativeChatStructuredSession.test-harness.tsx @@ -1,13 +1,21 @@ import { forwardRef, useImperativeHandle, useRef } from 'react' -import { vi, type Mock } from 'vitest' +import { vi } from 'vitest' import type { AgentJournalRenderItem } from '../../../../shared/agent-session-journal-types' import type { AgentSessionBackgroundTask } from '../../../../shared/agent-session-wire' import type { NativeChatApprovalCardProps } from './NativeChatApprovalCard' import type { NativeChatQuestionCardProps } from './NativeChatQuestionCard' import type { NativeChatLaunchSeed } from './native-chat-composer-types' +import type { StructuredAgentSessionLaunchLifecycle } from '@/lib/structured-agent-session-launch' +import type { + SessionOptionSetResult, + SessionOptionValue +} from '../../../../shared/native-chat-session-options' -// Why: a named spy type keeps the harness's inferred return type portable across the test files. -type StructuredSessionSpy = Mock +type StopBackgroundTaskSpy = (sessionId: string, taskId?: string) => unknown + +function nullable(): T | null { + return null +} type StructuredSessionMessageListProps = { allowFileUriLinks?: boolean @@ -28,8 +36,11 @@ const initialApprovalCardProps: NativeChatApprovalCardProps | null = null */ export function createStructuredSessionMocks() { const mocks = { - call: vi.fn() as StructuredSessionSpy, - fileLinkClick: vi.fn() as StructuredSessionSpy, + call: vi.fn<(...args: never[]) => unknown>(), + fileLinkClick: vi.fn<(...args: never[]) => unknown>(), + launchLifecycle: nullable(), + retryLaunch: vi.fn<(...args: never[]) => unknown>(), + controllerProps: nullable<{ transportEnabled?: boolean }>(), mode: 'static' as 'static' | 'outbox', status: 'ready' as 'idle' | 'loading' | 'ready' | 'error', messages: null as null | unknown[], @@ -42,10 +53,10 @@ export function createStructuredSessionMocks() { approvalCardProps: initialApprovalCardProps, questionCardProps: null as NativeChatQuestionCardProps | null, promptItems: [] as AgentJournalRenderItem[], - respond: vi.fn() as StructuredSessionSpy, - cancel: vi.fn() as StructuredSessionSpy, - handlePasteEvent: vi.fn() as StructuredSessionSpy, - pasteFromClipboard: vi.fn() as StructuredSessionSpy, + respond: vi.fn<(...args: never[]) => unknown>(), + cancel: vi.fn<(...args: never[]) => unknown>(), + handlePasteEvent: vi.fn<(...args: never[]) => unknown>(), + pasteFromClipboard: vi.fn<(...args: never[]) => unknown>(), submissions: [] as unknown[], monitoringBackgroundTasks: false, showBackgroundTasks: false, @@ -55,7 +66,7 @@ export function createStructuredSessionMocks() { supportsBackgroundTaskStopAll: true, backgroundTasks: [] as AgentSessionBackgroundTask[], settledBackgroundTasks: [] as AgentSessionBackgroundTask[], - stopBackgroundTask: vi.fn() as StructuredSessionSpy + stopBackgroundTask: vi.fn() } const moduleFactories = { @@ -69,11 +80,13 @@ export function createStructuredSessionMocks() { useStructuredAgentSession: (props: { sessionId: string target: { kind: 'local' } | { kind: 'environment'; environmentId: string } + transportEnabled?: boolean }) => { + mocks.controllerProps = props const outbox = useStructuredAgentSessionOutbox({ sessionId: props.sessionId, target: props.target, - fence: 1, + fence: props.transportEnabled === false ? null : 1, submissions: mocks.submissions as never }) return { @@ -99,7 +112,7 @@ export function createStructuredSessionMocks() { error: outbox.error, hasOlder: false, loadingOlder: false, - loadOlder: vi.fn() as StructuredSessionSpy, + loadOlder: vi.fn<() => Promise>(), prompts: mocks.promptItems, outbox: outbox.outbox, blockedClientMessageId: outbox.blockedClientMessageId, @@ -135,15 +148,21 @@ export function createStructuredSessionMocks() { ], optionSurface: { getSnapshot: () => [], - setOption: vi.fn() as StructuredSessionSpy, - invokeAction: vi.fn() as StructuredSessionSpy, + setOption: + vi.fn<(id: string, value: SessionOptionValue) => Promise>(), + invokeAction: vi.fn<(id: string) => Promise>(), subscribe: () => () => {} }, - setStructuredOption: vi.fn() as StructuredSessionSpy + setStructuredOption: + vi.fn<(id: string, value: SessionOptionValue) => Promise>() } } } }, + structuredAgentSessionLaunch: () => ({ + retryStructuredAgentSessionLaunch: mocks.retryLaunch, + useStructuredAgentSessionLaunchLifecycle: () => mocks.launchLifecycle + }), useNativeChatFontScale: () => ({ useNativeChatFontScale: () => ({ scale: 1 }) }), @@ -197,6 +216,9 @@ export function createStructuredSessionMocks() { const resetStructuredSessionMocks = (): void => { mocks.call.mockReset() + mocks.launchLifecycle = null + mocks.retryLaunch.mockReset() + mocks.controllerProps = null mocks.mode = 'static' mocks.status = 'ready' mocks.messages = null diff --git a/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx b/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx index 823f01a3fe5..94d6fb78e29 100644 --- a/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx +++ b/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx @@ -354,7 +354,7 @@ describe('NativeChatStructuredSession', () => { let finishFirst!: (value: unknown) => void let finishSecond!: (value: unknown) => void mocks.stopBackgroundTask.mockImplementation( - (_sessionId: string, taskId: string) => + (_sessionId: string, taskId?: string) => new Promise((resolve) => { if (taskId === 'task-one') { finishFirst = resolve diff --git a/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx b/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx index 3908c42fa28..acf80594d66 100644 --- a/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx +++ b/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx @@ -1,10 +1,8 @@ import { useMemo, useRef, useState } from 'react' -import { RotateCcw } from 'lucide-react' import { encodeAgentSessionQuestionAnswers } from '../../../../shared/agent-session-question-answer' import { dispatchStructuredAgentSessionComposerCommand } from '../../../../shared/structured-agent-session-composer' import { structuredAgentSessionPaneKey } from '../../../../shared/structured-agent-session-projection' import type { NativeChatLiveSession } from './use-native-chat-live-session' -import { Button } from '@/components/ui/button' import { NativeChatApprovalCard } from './NativeChatApprovalCard' import { NativeChatComposer, type NativeChatComposerHandle } from './NativeChatComposer' import { NativeChatEmptyState } from './NativeChatEmptyState' @@ -17,12 +15,14 @@ import { LinkActionPopover } from '@/components/link-actions/LinkActionPopover' import { useNativeChatLinkActions } from './use-native-chat-link-actions' import { useNativeChatFileLinkContext } from './use-native-chat-file-link-context' import { useStructuredAgentSession } from './use-structured-agent-session' -import { translate } from '@/i18n/i18n' import { useNativeChatImageRuntimeContext } from './native-chat-image-runtime-context' import { useStructuredNativeChatPaneCommands } from './use-structured-native-chat-pane-commands' import type { NativeChatStructuredViewProps } from './native-chat-view-types' import { NativeChatBackgroundTasksStatus } from './NativeChatBackgroundTasksStatus' import { useNativeChatLaunchDraftSignal } from './use-native-chat-launch-draft-adoption' +import { NativeChatLaunchRetry } from './NativeChatLaunchRetry' +import { useNativeChatProvisionalLaunch } from './use-native-chat-provisional-launch' +import { NativeChatDeliveryRetry } from './NativeChatDeliveryRetry' type StoppingBackgroundTasks = { sessionId: string @@ -41,7 +41,15 @@ function encodeQuestionAnswer(questionId: string, answer: string): string { export function NativeChatStructuredSession( props: Omit ): React.JSX.Element { - const controller = useStructuredAgentSession(props) + const fileLinkContext = useNativeChatFileLinkContext(props.tabId) + const provisionalLaunch = useNativeChatProvisionalLaunch( + fileLinkContext?.worktreeId, + props.sessionId + ) + const controller = useStructuredAgentSession({ + ...props, + transportEnabled: provisionalLaunch.transportEnabled + }) const launchDraftSignal = useNativeChatLaunchDraftSignal({ terminalTabId: props.tabId, agent: props.agent, @@ -105,7 +113,6 @@ export function NativeChatStructuredSession( ) const viewState = selectNativeChatViewState(session) const fontScale = useNativeChatFontScale(viewState.kind === 'ready') - const fileLinkContext = useNativeChatFileLinkContext(props.tabId) const imageRuntimeContext = useNativeChatImageRuntimeContext(props.tabId) const { onLinkClick, linkActionRequest, closeLinkActions } = useNativeChatLinkActions( fileLinkContext, @@ -146,17 +153,6 @@ export function NativeChatStructuredSession( } ] : []) - // Only the head of the outbox is ever dispatched, so it is the only entry a - // Retry can act on and the only one whose state can be holding the queue. - // Scanning past it named a message the user was not looking at and re-sent - // one from earlier in the session while their newest sat behind it. - const outboxHead = controller.outbox[0] ?? null - const retryableOutboxEntry = - outboxHead && - (outboxHead.state === 'unconfirmed' || - outboxHead.clientMessageId === controller.blockedClientMessageId) - ? outboxHead - : null const structuredTransport = useMemo( () => ({ send: (text: string, attachments: readonly { id: string; path: string }[]): boolean => @@ -307,33 +303,15 @@ export function NativeChatStructuredSession( onCancel={cancelPrompt} /> ) : null} - {retryableOutboxEntry ? ( -
- - {retryableOutboxEntry.state === 'unconfirmed' - ? translate( - 'auto.components.native.chat.NativeChatStructuredSession.1f772bb5d0', - 'Message delivery is unconfirmed.' - ) - : translate( - 'auto.components.native.chat.NativeChatStructuredSession.93ef441197', - 'Message was not sent.' - )} - - -
- ) : null} + + {controller.error || composerError ? (

{controller.error ?? composerError} diff --git a/src/renderer/src/components/native-chat/structured-agent-session-outbox-dispatch.ts b/src/renderer/src/components/native-chat/structured-agent-session-outbox-dispatch.ts new file mode 100644 index 00000000000..33bc3a27f62 --- /dev/null +++ b/src/renderer/src/components/native-chat/structured-agent-session-outbox-dispatch.ts @@ -0,0 +1,136 @@ +import type { + AgentSessionMutationResult, + AgentSessionSendResult +} from '../../../../shared/agent-session-wire' +import { + disposeStructuredAgentSessionSendFailure, + disposeStructuredAgentSessionSendResult, + type StructuredAgentSessionSendDisposition +} from '../../../../shared/structured-agent-session-send-disposition' +import type { RuntimeClientTarget } from '@/runtime/runtime-rpc-client' +import { callStructuredAgentSession } from '@/runtime/structured-agent-session-client' +import { + structuredAgentSessionSendRequest, + type StructuredAgentSessionOutboxEntry +} from '../../../../shared/structured-agent-session-outbox' +import { writeOutbox } from './structured-agent-session-outbox-storage' +import { + getStructuredAgentLaunchPromptDispatch, + shareStructuredAgentLaunchPromptDispatch +} from '@/lib/structured-agent-session-launch-prompt' + +type MutableRef = { current: T } + +function isDesktopDeliveryUnknown(error: unknown): boolean { + const text = error instanceof Error ? `${error.name}:${error.message}` : String(error) + return /timeout|disconnect|connection|closed|unavailable|cutover/i.test(text) +} + +export function hasInFlightLaunchDispatch( + entry: StructuredAgentSessionOutboxEntry, + fence: number | null +): boolean { + return Boolean( + entry.source === 'launch' && + getStructuredAgentLaunchPromptDispatch( + entry.sessionId, + entry.clientMessageId, + fence ?? undefined + ) + ) +} + +export function readMountedStructuredAgentSessionOutbox( + sessionId: string, + fence: number | null, + read: ( + sessionId: string, + options: { recoverDispatching: boolean } + ) => StructuredAgentSessionOutboxEntry[] +): StructuredAgentSessionOutboxEntry[] { + return read(sessionId, { recoverDispatching: false }).map((entry) => + entry.state === 'dispatching' && !hasInFlightLaunchDispatch(entry, fence) + ? { ...entry, state: 'unconfirmed' as const } + : entry + ) +} + +export function dispatchStructuredAgentSessionOutboxEntry(args: { + next: StructuredAgentSessionOutboxEntry + persisted: readonly StructuredAgentSessionOutboxEntry[] + sessionId: string + target: RuntimeClientTarget + fence: number + dispatchGeneration: number + dispatchGenerationRef: MutableRef + dispatchingRef: MutableRef + blockedIdRef: MutableRef + outboxRef: MutableRef + setOutbox: (entries: StructuredAgentSessionOutboxEntry[]) => void + setError: (error: string | null) => void + applyDisposition: (disposition: StructuredAgentSessionSendDisposition) => void + createOperationId: () => string +}): { promise: Promise; started: boolean } { + const start = async (): Promise => { + args.dispatchingRef.current = true + const staged = [ + { ...args.next, state: 'dispatching' as const, lastAttemptAt: Date.now() }, + ...args.persisted.slice(1) + ] + if (!writeOutbox(args.sessionId, staged)) { + args.dispatchingRef.current = false + args.blockedIdRef.current = args.next.clientMessageId + args.setError('Message could not be saved to the outbox') + return false + } + args.outboxRef.current = staged + args.setOutbox(staged) + try { + const result = await callStructuredAgentSession< + AgentSessionMutationResult + >(args.target, 'agentSession.send', structuredAgentSessionSendRequest(args.next, args.fence)) + if (args.dispatchGenerationRef.current !== args.dispatchGeneration) { + return false + } + args.applyDisposition( + disposeStructuredAgentSessionSendResult({ + entries: args.outboxRef.current, + entry: args.next, + blockedClientMessageId: args.blockedIdRef.current, + result, + createOperationId: args.createOperationId + }) + ) + return result.ok + ? result.value.submission.dispatchState === 'accepted' || + result.value.submission.dispatchState === 'pending' + : false + } catch (caught) { + if (args.dispatchGenerationRef.current !== args.dispatchGeneration) { + return false + } + args.applyDisposition( + disposeStructuredAgentSessionSendFailure({ + entries: args.outboxRef.current, + entry: args.next, + blockedClientMessageId: args.blockedIdRef.current, + cause: caught, + isDeliveryUnknown: isDesktopDeliveryUnknown + }) + ) + return false + } finally { + if (args.dispatchGenerationRef.current === args.dispatchGeneration) { + args.dispatchingRef.current = false + } + } + } + return args.next.source === 'launch' + ? shareStructuredAgentLaunchPromptDispatch( + args.next.sessionId, + args.next.clientMessageId, + args.fence, + start + ) + : { promise: start(), started: true } +} diff --git a/src/renderer/src/components/native-chat/structured-agent-session-outbox-storage.ts b/src/renderer/src/components/native-chat/structured-agent-session-outbox-storage.ts index b823bfe3fa2..f6eac6ee288 100644 --- a/src/renderer/src/components/native-chat/structured-agent-session-outbox-storage.ts +++ b/src/renderer/src/components/native-chat/structured-agent-session-outbox-storage.ts @@ -11,7 +11,11 @@ function storageKey(sessionId: string): string { return `${OUTBOX_PREFIX}${encodeURIComponent(sessionId)}` } -export function readOutbox(sessionId: string): StructuredAgentSessionOutboxEntry[] { +export function readOutbox( + sessionId: string, + options: { recoverDispatching?: boolean } = {} +): StructuredAgentSessionOutboxEntry[] { + const recoverDispatching = options.recoverDispatching !== false try { const value = JSON.parse(localStorage.getItem(storageKey(sessionId)) ?? '[]') return Array.isArray(value) @@ -19,7 +23,9 @@ export function readOutbox(sessionId: string): StructuredAgentSessionOutboxEntry .map((entry) => parseStructuredAgentSessionOutboxEntry(entry, sessionId)) .filter((entry): entry is StructuredAgentSessionOutboxEntry => entry !== null) .map((entry) => - entry.state === 'dispatching' ? { ...entry, state: 'unconfirmed' as const } : entry + recoverDispatching && entry.state === 'dispatching' + ? { ...entry, state: 'unconfirmed' as const } + : entry ) .sort((left, right) => left.queuedAt - right.queuedAt) : [] @@ -48,13 +54,16 @@ export function enqueueStructuredAgentSessionLaunchPrompt( sessionId: string, text: string ): StructuredAgentSessionOutboxEntry | null { - const entry = createStructuredAgentSessionOutboxEntry({ - clientMessageId: createStructuredAgentSessionOperationId(() => crypto.randomUUID()), - sessionId, - text, - attachments: [], - queuedAt: Date.now() - }) + const entry = { + ...createStructuredAgentSessionOutboxEntry({ + clientMessageId: createStructuredAgentSessionOperationId(() => crypto.randomUUID()), + sessionId, + text, + attachments: [], + queuedAt: Date.now() + }), + source: 'launch' as const + } return writeOutbox(sessionId, [...readOutbox(sessionId), entry]) ? entry : null } diff --git a/src/renderer/src/components/native-chat/use-native-chat-provisional-launch.ts b/src/renderer/src/components/native-chat/use-native-chat-provisional-launch.ts new file mode 100644 index 00000000000..95a2c05236f --- /dev/null +++ b/src/renderer/src/components/native-chat/use-native-chat-provisional-launch.ts @@ -0,0 +1,22 @@ +import { useCallback } from 'react' +import { + retryStructuredAgentSessionLaunch, + useStructuredAgentSessionLaunchLifecycle +} from '@/lib/structured-agent-session-launch' + +export function useNativeChatProvisionalLaunch( + worktreeId: string | null | undefined, + sessionId: string +) { + const lifecycle = useStructuredAgentSessionLaunchLifecycle(worktreeId ?? '', sessionId) + const retry = useCallback(() => { + if (worktreeId) { + retryStructuredAgentSessionLaunch(worktreeId, sessionId) + } + }, [sessionId, worktreeId]) + return { + lifecycle, + retry, + transportEnabled: lifecycle === null || lifecycle === 'published' + } +} diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session-mutate.ts b/src/renderer/src/components/native-chat/use-structured-agent-session-mutate.ts index 6f071e1a16b..40b4cee6e6e 100644 --- a/src/renderer/src/components/native-chat/use-structured-agent-session-mutate.ts +++ b/src/renderer/src/components/native-chat/use-structured-agent-session-mutate.ts @@ -5,7 +5,7 @@ // every result is discarded unless the runtime fence it was issued against is // still the current one. -import { useCallback, useRef, useState } from 'react' +import { useCallback, useEffect, useRef, useState } from 'react' import * as conversationCommands from './structured-conversation-command-send' import type { AgentSessionMutationResult } from '../../../../shared/agent-session-wire' import { agentSessionRefusalOperationState } from '../../../../shared/agent-session-refusal-retry' @@ -24,13 +24,19 @@ export type StructuredAgentSessionMutate = ( export function useStructuredAgentSessionMutate(args: { sessionId: string target: RuntimeClientTarget + enabled?: boolean /** Read at settle time, not at call time: the fence can move while a request * is in flight, and a result from the previous fence is not this session's. */ stateRef: { current: { fence: number | null } } }): { mutate: StructuredAgentSessionMutate; writeError: string | null } { - const { sessionId, stateRef, target } = args + const { enabled = true, sessionId, stateRef, target } = args const [writeError, setWriteError] = useState(null) const operationIds = useRef(new Map()) + const enabledRef = useRef(enabled) + useEffect(() => { + // Why: update the gate after commit so render stays free of ref mutations. + enabledRef.current = enabled + }, [enabled]) const mutate = useCallback( async ( @@ -39,7 +45,7 @@ export function useStructuredAgentSessionMutate(args: { fields: Record, operationIdOverride?: string | null ): Promise => { - if (stateRef.current.fence === null) { + if (!enabled || !enabledRef.current || stateRef.current.fence === null) { return null } const targetFence = stateRef.current.fence @@ -63,7 +69,7 @@ export function useStructuredAgentSessionMutate(args: { ...fields }) } catch (error) { - if (stateRef.current.fence === targetFence) { + if (enabledRef.current && stateRef.current.fence === targetFence) { setWriteError(error instanceof Error ? error.message : 'Request was not sent') } return null @@ -75,12 +81,12 @@ export function useStructuredAgentSessionMutate(args: { ) { operationIds.current.delete(key) } - if (stateRef.current.fence === targetFence) { + if (enabledRef.current && stateRef.current.fence === targetFence) { setWriteError(result.refusal.message) } return null } - if (stateRef.current.fence !== targetFence) { + if (!enabledRef.current || stateRef.current.fence !== targetFence) { return null } if (!conversationCommands.isUnconfirmedConversationCommand(fingerprintMethod, result.value)) { @@ -89,7 +95,7 @@ export function useStructuredAgentSessionMutate(args: { setWriteError(null) return result.value }, - [sessionId, stateRef, target] + [enabled, sessionId, stateRef, target] ) return { mutate, writeError } diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session-options.ts b/src/renderer/src/components/native-chat/use-structured-agent-session-options.ts new file mode 100644 index 00000000000..34dad47e495 --- /dev/null +++ b/src/renderer/src/components/native-chat/use-structured-agent-session-options.ts @@ -0,0 +1,204 @@ +import { useCallback, useEffect, useMemo, useRef, useState } from 'react' +import type { AgentSessionConversationCommand } from '../../../../shared/agent-session-conversation-command' +import type { + AgentSessionOptionResult, + AgentSessionOptionsResult +} from '../../../../shared/agent-session-wire' +import type { AgentType } from '../../../../shared/agent-status-types' +import { getAgentSessionOptionCatalog } from '../../../../shared/agent-session-option-catalog' +import type { SessionOptionsSurface } from '../../../../shared/native-chat-session-options' +import { + applyStructuredAgentSessionOptions, + canSetStructuredAgentSessionOption, + commitStructuredAgentSessionOptionValues, + createStructuredAgentSessionOptionState, + structuredAgentSessionOptionPicks, + structuredAgentSessionOptionSnapshot, + type StructuredAgentSessionOptionState +} from '../../../../shared/structured-agent-session-options' +import type { RuntimeClientTarget } from '@/runtime/runtime-rpc-client' +import { callStructuredAgentSession } from '@/runtime/structured-agent-session-client' +import { enqueueSessionOptionSettingsWrite } from './native-chat-session-option-settings-write' +import { encodeStructuredAgentSessionOptionValue } from '../../../../shared/structured-agent-session-option-codec' +import type { StructuredAgentSessionMutate } from './use-structured-agent-session-mutate' + +export function useStructuredAgentSessionOptions(args: { + agent: AgentType + sessionId: string + target: RuntimeClientTarget + transportEnabled: boolean + providerVisible: boolean + fence: number | null + turnId: string | null + mutate: StructuredAgentSessionMutate +}) { + const { agent, fence, mutate, providerVisible, sessionId, target, transportEnabled, turnId } = + args + const [conversationSupport, setConversationSupport] = useState<{ + sessionId: string + commands: readonly AgentSessionConversationCommand[] + } | null>(null) + const [optionState, setOptionState] = useState(() => + createStructuredAgentSessionOptionState(agent) + ) + const optionStateRef = useRef(optionState) + const activeOptionRecordRef = useRef(optionState.record) + const pendingOptionRef = useRef(null) + const optionMutationGeneration = useRef(0) + const updateOptionState = useCallback( + (update: (current: StructuredAgentSessionOptionState) => StructuredAgentSessionOptionState) => { + const next = update(optionStateRef.current) + optionStateRef.current = next + setOptionState(next) + }, + [] + ) + const optionCatalog = useMemo(() => getAgentSessionOptionCatalog(agent), [agent]) + + useEffect(() => { + const next = createStructuredAgentSessionOptionState(agent) + optionMutationGeneration.current += 1 + pendingOptionRef.current = null + optionStateRef.current = next + activeOptionRecordRef.current = next.record + setOptionState(next) + }, [agent, fence, sessionId, transportEnabled]) + + // Refresh options each turn to confirm which model the provider actually selected. + useEffect(() => { + if (!providerVisible || !optionCatalog) { + return + } + let stale = false + const readGeneration = optionMutationGeneration.current + void callStructuredAgentSession(target, 'agentSession.options', { + sessionId + }) + .then((result) => { + if (!stale && optionMutationGeneration.current === readGeneration) { + setConversationSupport({ sessionId, commands: result.conversationCommands ?? [] }) + updateOptionState((current) => + current.record === activeOptionRecordRef.current + ? applyStructuredAgentSessionOptions(current, optionCatalog, result) + : current + ) + } + }) + .catch(() => {}) + return () => { + stale = true + } + }, [fence, optionCatalog, providerVisible, sessionId, target, turnId, updateOptionState]) + + const optionSnapshot = useMemo( + () => structuredAgentSessionOptionSnapshot(optionState), + [optionState] + ) + const visibleOptionSnapshot = useMemo( + () => (transportEnabled ? optionSnapshot : []), + [optionSnapshot, transportEnabled] + ) + const setStructuredOption = useCallback( + async (id: string, value: string | boolean): Promise => { + const currentState = optionStateRef.current + const encoded = encodeStructuredAgentSessionOptionValue(id, value) + if ( + !transportEnabled || + pendingOptionRef.current !== null || + !optionCatalog || + encoded === null || + !canSetStructuredAgentSessionOption(currentState, id, value) + ) { + return false + } + const targetRecord = currentState.record + const mutationGeneration = ++optionMutationGeneration.current + pendingOptionRef.current = id + updateOptionState((current) => ({ ...current, pendingId: id })) + try { + const result = await mutate( + 'agentSession.setOption', + 'agentSession.setOption', + { key: id, value: encoded } + ) + if ( + result && + activeOptionRecordRef.current === targetRecord && + optionMutationGeneration.current === mutationGeneration + ) { + const committed = result.options ?? { [id]: encoded } + updateOptionState((current) => + current.record === targetRecord + ? commitStructuredAgentSessionOptionValues(current, committed) + : current + ) + const picks = structuredAgentSessionOptionPicks(currentState, committed) + if (picks.length > 0) { + void enqueueSessionOptionSettingsWrite(target, { type: 'apply-picks', agent, picks }) + } + if (!transportEnabled) { + return false + } + void callStructuredAgentSession( + target, + 'agentSession.options', + { sessionId } + ) + .then((refreshed) => { + if ( + activeOptionRecordRef.current === targetRecord && + optionMutationGeneration.current === mutationGeneration + ) { + updateOptionState((latest) => + latest.record === targetRecord + ? applyStructuredAgentSessionOptions(latest, optionCatalog, refreshed) + : latest + ) + } + }) + .catch(() => {}) + } + return Boolean(result) + } finally { + if ( + activeOptionRecordRef.current === targetRecord && + optionMutationGeneration.current === mutationGeneration + ) { + pendingOptionRef.current = null + updateOptionState((current) => + current.record === targetRecord && current.pendingId === id + ? { ...current, pendingId: null } + : current + ) + } + } + }, + [agent, mutate, optionCatalog, sessionId, target, transportEnabled, updateOptionState] + ) + const setOption = useCallback( + async (id: string, value: string | boolean) => { + await setStructuredOption(id, value) + return { snapshot: structuredAgentSessionOptionSnapshot(optionStateRef.current) } + }, + [setStructuredOption] + ) + const optionSurface = useMemo( + () => ({ + getSnapshot: () => visibleOptionSnapshot, + setOption, + invokeAction: async () => ({ snapshot: visibleOptionSnapshot }), + subscribe: () => () => {} + }), + [setOption, visibleOptionSnapshot] + ) + + return { + conversationCommands: + transportEnabled && conversationSupport?.sessionId === sessionId + ? conversationSupport.commands + : [], + optionSnapshot: visibleOptionSnapshot, + optionSurface, + setStructuredOption + } +} diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.test.tsx b/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.test.tsx index c57ebe1b384..a0b94657e79 100644 --- a/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.test.tsx +++ b/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.test.tsx @@ -6,6 +6,7 @@ import { createRoot } from 'react-dom/client' import { beforeEach, describe, expect, it, vi } from 'vitest' import type { AgentJournalSubmission } from '../../../../shared/agent-session-journal-types' import type { AgentSessionWireRefusalCode } from '../../../../shared/agent-session-wire' +import { enqueueStructuredAgentSessionLaunchPrompt } from './structured-agent-session-outbox-storage' const mocks = vi.hoisted(() => ({ call: vi.fn() @@ -16,6 +17,7 @@ vi.mock('@/runtime/structured-agent-session-client', () => ({ })) import { useStructuredAgentSessionOutbox } from './use-structured-agent-session-outbox' +import { settleStructuredAgentLaunchPrompt } from '@/lib/structured-agent-session-launch-prompt' const LOCAL_TARGET = { kind: 'local' } as const @@ -134,6 +136,69 @@ describe('useStructuredAgentSessionOutbox', () => { }) }) + it('does not redispatch a launch prompt settled before the mounted outbox gets its fence', async () => { + const stagedEntry = enqueueStructuredAgentSessionLaunchPrompt('session-1', 'review this') + if (!stagedEntry) { + throw new Error('fixture outbox entry was not persisted') + } + mocks.call.mockResolvedValue(acceptedResultFor(stagedEntry.clientMessageId, 1)) + const initialProps: { fence: number | null } = { fence: null } + const { result, rerender } = renderHook( + ({ fence }) => + useStructuredAgentSessionOutbox({ + sessionId: 'session-1', + target: LOCAL_TARGET, + fence, + submissions: [] + }), + { initialProps } + ) + expect(result.current.outbox).toHaveLength(1) + + await expect( + settleStructuredAgentLaunchPrompt({ + launchResult: Promise.resolve({ sessionId: 'session-1', fence: 1 }), + options: { prompt: 'review this' }, + stagedEntry + }) + ).resolves.toEqual({ delivered: true, failureNotified: false }) + expect(mocks.call).toHaveBeenCalledOnce() + + rerender({ fence: 1 }) + await waitFor(() => expect(result.current.outbox).toHaveLength(0)) + expect(mocks.call).toHaveBeenCalledOnce() + }) + + it('joins a launch prompt dispatch already in flight when the outbox mounts', async () => { + const stagedEntry = enqueueStructuredAgentSessionLaunchPrompt('session-1', 'review this') + if (!stagedEntry) { + throw new Error('fixture outbox entry was not persisted') + } + const admission = deferred>() + mocks.call.mockReturnValueOnce(admission.promise) + const delivery = settleStructuredAgentLaunchPrompt({ + launchResult: Promise.resolve({ sessionId: 'session-1', fence: 1 }), + options: { prompt: 'review this' }, + stagedEntry + }) + await waitFor(() => expect(mocks.call).toHaveBeenCalledOnce()) + + const { result } = renderHook(() => + useStructuredAgentSessionOutbox({ + sessionId: 'session-1', + target: LOCAL_TARGET, + fence: 1, + submissions: [] + }) + ) + expect(result.current.outbox[0]?.state).toBe('dispatching') + + await act(async () => admission.resolve(acceptedResultFor(stagedEntry.clientMessageId, 1))) + await expect(delivery).resolves.toEqual({ delivered: true, failureNotified: false }) + await waitFor(() => expect(result.current.outbox).toHaveLength(0)) + expect(mocks.call).toHaveBeenCalledOnce() + }) + it('requeues across a fence change and ignores the stale settlement', async () => { const first = deferred>() const second = deferred>() diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.ts b/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.ts index 7934fc4759d..32368a56cf4 100644 --- a/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.ts +++ b/src/renderer/src/components/native-chat/use-structured-agent-session-outbox.ts @@ -1,24 +1,20 @@ import { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react' import type { AgentJournalSubmission } from '../../../../shared/agent-session-journal-types' -import type { - AgentSessionMutationResult, - AgentSessionSendResult -} from '../../../../shared/agent-session-wire' import { createStructuredAgentSessionOperationId } from '../../../../shared/structured-agent-session-mutation' import { createStructuredAgentSessionOutboxEntry, reconcileStructuredAgentSessionOutbox, - structuredAgentSessionSendRequest, type StructuredAgentSessionOutboxEntry } from '../../../../shared/structured-agent-session-outbox' -import { - disposeStructuredAgentSessionSendFailure, - disposeStructuredAgentSessionSendResult, - type StructuredAgentSessionSendDisposition -} from '../../../../shared/structured-agent-session-send-disposition' +import type { StructuredAgentSessionSendDisposition } from '../../../../shared/structured-agent-session-send-disposition' import type { RuntimeClientTarget } from '@/runtime/runtime-rpc-client' -import { callStructuredAgentSession } from '@/runtime/structured-agent-session-client' import { readOutbox, writeOutbox } from './structured-agent-session-outbox-storage' +import { + dispatchStructuredAgentSessionOutboxEntry, + hasInFlightLaunchDispatch, + readMountedStructuredAgentSessionOutbox +} from './structured-agent-session-outbox-dispatch' +import { getStructuredAgentLaunchPromptDispatch } from '@/lib/structured-agent-session-launch-prompt' export function structuredSessionOperationId(): string { return createStructuredAgentSessionOperationId(() => crypto.randomUUID()) @@ -31,11 +27,6 @@ const UNCONFIRMED_PROBE_BASE_DELAY_MS = 1_000 * Retry, because the entry leaves `unconfirmed` -- pre-existing, not closed here. */ const UNCONFIRMED_PROBE_MAX_DELAY_MS = 16_000 -function isDesktopDeliveryUnknown(error: unknown): boolean { - const text = error instanceof Error ? `${error.name}:${error.message}` : String(error) - return /timeout|disconnect|connection|closed|unavailable|cutover/i.test(text) -} - export function useStructuredAgentSessionOutbox(args: { sessionId: string target: RuntimeClientTarget @@ -45,7 +36,7 @@ export function useStructuredAgentSessionOutbox(args: { const { fence, sessionId, submissions, target } = args const targetKey = target.kind === 'local' ? 'local' : `environment:${target.environmentId}` const [outbox, setOutbox] = useState(() => - readOutbox(sessionId) + readMountedStructuredAgentSessionOutbox(sessionId, fence, readOutbox) ) const outboxRef = useRef(outbox) const outboxSessionRef = useRef(sessionId) @@ -78,9 +69,13 @@ export function useStructuredAgentSessionOutbox(args: { useEffect(() => { const sessionChanged = outboxSessionRef.current !== sessionId outboxSessionRef.current = sessionId - const current = sessionChanged ? readOutbox(sessionId) : outboxRef.current + const current = sessionChanged + ? readMountedStructuredAgentSessionOutbox(sessionId, fence, readOutbox) + : outboxRef.current const next = current.map((entry) => - entry.state === 'dispatching' ? { ...entry, state: 'queued' as const } : entry + entry.state === 'dispatching' && !hasInFlightLaunchDispatch(entry, fence) + ? { ...entry, state: 'queued' as const } + : entry ) if ( sessionChanged || @@ -138,9 +133,32 @@ export function useStructuredAgentSessionOutbox(args: { useEffect(() => { const next = outbox[0] + if (!next || next.sessionId !== sessionId) { + return + } + const launchDispatch = + next.source === 'launch' + ? getStructuredAgentLaunchPromptDispatch( + next.sessionId, + next.clientMessageId, + fence ?? undefined + ) + : undefined + if (launchDispatch) { + const persisted = readOutbox(sessionId, { recoverDispatching: false }) + const persistedHead = persisted[0] + if (persistedHead?.state !== next.state) { + outboxRef.current = persisted + setOutbox(persisted) + } + void launchDispatch.then(() => { + const latest = readOutbox(sessionId, { recoverDispatching: false }) + outboxRef.current = latest + setOutbox(latest) + }) + return + } if ( - !next || - next.sessionId !== sessionId || next.state !== 'queued' || fence === null || dispatchingRef.current || @@ -148,58 +166,45 @@ export function useStructuredAgentSessionOutbox(args: { ) { return } - dispatchingRef.current = true - const dispatchGeneration = dispatchGenerationRef.current - const staged = [ - { ...next, state: 'dispatching' as const, lastAttemptAt: Date.now() }, - ...outbox.slice(1) - ] - if (!writeOutbox(sessionId, staged)) { - dispatchingRef.current = false - blockedIdRef.current = next.clientMessageId - setError('Message could not be saved to the outbox') + // A launch settlement may have already admitted this entry and cleared its in-flight marker + // before this effect observes the queued React snapshot. Storage is the shared ownership + // record; only dispatch when the persisted head is still queued. + const persisted = readOutbox(sessionId, { recoverDispatching: false }) + const persistedHead = persisted[0] + if ( + persistedHead?.clientMessageId !== next.clientMessageId || + persistedHead.state !== 'queued' + ) { + outboxRef.current = persisted + setOutbox(persisted) return } - outboxRef.current = staged - setOutbox(staged) - void callStructuredAgentSession>( + const dispatchGeneration = dispatchGenerationRef.current + const dispatch = dispatchStructuredAgentSessionOutboxEntry({ + next: persistedHead, + persisted, + sessionId, target, - 'agentSession.send', - structuredAgentSessionSendRequest(next, fence) - ) - .then((result) => { - if (dispatchGenerationRef.current !== dispatchGeneration) { - return - } - applyDisposition( - disposeStructuredAgentSessionSendResult({ - entries: outboxRef.current, - entry: next, - blockedClientMessageId: blockedIdRef.current, - result, - createOperationId: structuredSessionOperationId - }) - ) - }) - .catch((caught) => { - if (dispatchGenerationRef.current !== dispatchGeneration) { - return - } - applyDisposition( - disposeStructuredAgentSessionSendFailure({ - entries: outboxRef.current, - entry: next, - blockedClientMessageId: blockedIdRef.current, - cause: caught, - isDeliveryUnknown: isDesktopDeliveryUnknown - }) - ) - }) - .finally(() => { - if (dispatchGenerationRef.current === dispatchGeneration) { - dispatchingRef.current = false - } + fence, + dispatchGeneration, + dispatchGenerationRef, + dispatchingRef, + blockedIdRef, + outboxRef, + setOutbox, + setError, + applyDisposition, + createOperationId: structuredSessionOperationId + }) + if (!dispatch.started) { + // The launch settlement owns this entry. Its storage mutation does not update this hook's + // local state, so mirror the settled state once the shared admission finishes. + void dispatch.promise.then(() => { + const latest = readOutbox(sessionId, { recoverDispatching: false }) + outboxRef.current = latest + setOutbox(latest) }) + } }, [applyDisposition, fence, outbox, sessionId, target]) // A transport-side unknown may never have reached the host, and nothing else diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session-provisional.test.tsx b/src/renderer/src/components/native-chat/use-structured-agent-session-provisional.test.tsx new file mode 100644 index 00000000000..721e61b3078 --- /dev/null +++ b/src/renderer/src/components/native-chat/use-structured-agent-session-provisional.test.tsx @@ -0,0 +1,166 @@ +// @vitest-environment happy-dom + +import { act, renderHook, waitFor } from '@testing-library/react' +import { beforeEach, describe, expect, it, vi } from 'vitest' +import type { StructuredAgentSessionState } from '../../../../shared/structured-agent-session-reducer' + +const mocks = vi.hoisted(() => ({ + call: vi.fn<(target: unknown, method: string, params: unknown) => Promise>(), + hold: vi.fn<(args: { enabled?: boolean }) => void>(), + read: vi.fn<(args: { isVisible?: boolean }) => void>(), + outbox: vi.fn<(args: { fence: number | null; submissions: readonly unknown[] }) => void>(), + send: vi.fn<(text: string) => boolean>(), + retry: vi.fn<(clientMessageId: string) => void>() +})) + +let readState: StructuredAgentSessionState + +vi.mock('@/runtime/structured-agent-session-client', () => ({ + callStructuredAgentSession: mocks.call +})) + +vi.mock('./use-structured-agent-session-hold', () => ({ + useStructuredAgentSessionHold: (args: { enabled?: boolean }) => mocks.hold(args) +})) + +vi.mock('./use-structured-agent-session-read', () => ({ + useStructuredAgentSessionRead: (args: { isVisible?: boolean }) => { + mocks.read(args) + return { + state: readState, + loadingOlder: false, + loadOlder: vi.fn<() => Promise>() + } + } +})) + +vi.mock('./use-structured-agent-session-outbox', () => ({ + structuredSessionOperationId: () => 'operation-1', + useStructuredAgentSessionOutbox: (args: { + fence: number | null + submissions: readonly unknown[] + }) => { + mocks.outbox(args) + return { + outbox: [], + blockedClientMessageId: null, + error: null, + send: mocks.send, + retry: mocks.retry + } + } +})) + +vi.mock('./native-chat-session-option-settings-write', () => ({ + enqueueSessionOptionSettingsWrite: vi.fn<(target: unknown, mutation: unknown) => Promise>() +})) + +import { useStructuredAgentSession } from './use-structured-agent-session' + +const LOCAL_TARGET = { kind: 'local' } as const +const OPTIONS = { + models: [ + { + id: 'gpt-live', + label: 'GPT Live', + isDefault: true, + defaultEffort: 'medium', + efforts: [{ value: 'medium', label: 'Medium' }] + } + ], + current: { model: 'gpt-live', effort: 'medium' } +} + +function sessionState(): StructuredAgentSessionState { + return { + epoch: 'epoch-1', + cursor: null, + fence: 3, + items: [], + submissions: [], + retainedItemLimit: 1_024, + hasOlder: true, + status: 'error', + error: 'cached transport error', + handoff: null, + commands: [{ name: 'provider-command', kind: 'command' }] + } +} + +describe('useStructuredAgentSession provisional launch gate', () => { + beforeEach(() => { + vi.clearAllMocks() + readState = sessionState() + mocks.send.mockReturnValue(true) + mocks.call.mockResolvedValue(OPTIONS) + }) + + it('keeps local sends usable while withholding every provider surface', async () => { + const { result } = renderHook(() => + useStructuredAgentSession({ + sessionId: 'session-1', + target: LOCAL_TARGET, + agent: 'codex', + isVisible: true, + transportEnabled: false + }) + ) + + expect(mocks.hold).toHaveBeenLastCalledWith(expect.objectContaining({ enabled: false })) + expect(mocks.read).toHaveBeenLastCalledWith(expect.objectContaining({ isVisible: false })) + expect(mocks.outbox).toHaveBeenLastCalledWith( + expect.objectContaining({ fence: null, submissions: [] }) + ) + expect(result.current).toMatchObject({ + status: 'ready', + error: null, + hasOlder: false, + loadingOlder: false, + journalItems: [], + prompts: [], + conversationCommands: [], + optionSnapshot: [] + }) + expect(result.current.sessionCommands).toBeUndefined() + expect(result.current.optionSurface.getSnapshot()).toEqual([]) + expect(result.current.send('queued while launching')).toBe(true) + expect(mocks.send).toHaveBeenCalledWith('queued while launching') + + await act(async () => { + await result.current.cancel('turn-1') + await result.current.stopBackgroundTask('task-1') + expect(await result.current.setStructuredOption('model', 'gpt-live')).toBe(false) + }) + + expect(mocks.call).not.toHaveBeenCalled() + }) + + it('activates provider surfaces after publication without repeating option discovery', async () => { + const { rerender } = renderHook( + ({ transportEnabled }: { transportEnabled: boolean }) => + useStructuredAgentSession({ + sessionId: 'session-1', + target: LOCAL_TARGET, + agent: 'codex', + isVisible: true, + transportEnabled + }), + { initialProps: { transportEnabled: false } } + ) + + expect(mocks.call).not.toHaveBeenCalled() + rerender({ transportEnabled: true }) + + await waitFor(() => + expect(mocks.call).toHaveBeenCalledWith(LOCAL_TARGET, 'agentSession.options', { + sessionId: 'session-1' + }) + ) + expect(mocks.call).toHaveBeenCalledTimes(1) + expect(mocks.hold).toHaveBeenLastCalledWith(expect.objectContaining({ enabled: true })) + expect(mocks.read).toHaveBeenLastCalledWith(expect.objectContaining({ isVisible: true })) + expect(mocks.outbox).toHaveBeenLastCalledWith( + expect.objectContaining({ fence: 3, submissions: [] }) + ) + }) +}) diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session-transport-state.ts b/src/renderer/src/components/native-chat/use-structured-agent-session-transport-state.ts new file mode 100644 index 00000000000..c2c93788a04 --- /dev/null +++ b/src/renderer/src/components/native-chat/use-structured-agent-session-transport-state.ts @@ -0,0 +1,49 @@ +import { useMemo } from 'react' +import { + activeStructuredAgentSessionTurnId, + hasUnansweredStructuredAgentSessionDispatch +} from '../../../../shared/structured-agent-session-projection' +import type { StructuredAgentSessionState } from '../../../../shared/structured-agent-session-reducer' +import { selectStructuredAgentTurnActivity } from '../../../../shared/native-chat-turn-activity' +import { structuredSessionBackgroundTasksView } from './structured-session-background-tasks-view' +import { useStructuredAgentTurnTiming } from './use-structured-agent-turn-timing' + +const NO_JOURNAL_ITEMS: StructuredAgentSessionState['items'] = [] +const NO_SUBMISSIONS: StructuredAgentSessionState['submissions'] = [] + +export function useStructuredAgentSessionTransportState( + state: StructuredAgentSessionState, + enabled: boolean +) { + const journalItems = enabled ? state.items : NO_JOURNAL_ITEMS + const submissions = enabled ? state.submissions : NO_SUBMISSIONS + const fence = enabled ? state.fence : null + const turnId = activeStructuredAgentSessionTurnId(journalItems) + const isWorking = + turnId !== null || hasUnansweredStructuredAgentSessionDispatch(submissions, fence) + const turnActivity = useMemo( + () => selectStructuredAgentTurnActivity(journalItems, turnId, enabled ? state.activity : null), + [enabled, journalItems, state.activity, turnId] + ) + const turnTiming = useStructuredAgentTurnTiming( + { + items: journalItems, + submissions, + ...(enabled ? { hostClock: state.hostClock } : {}) + }, + turnId + ) + return { + journalItems, + submissions, + fence, + turnId, + isWorking, + turnActivity, + turnTiming, + backgroundTasks: structuredSessionBackgroundTasksView( + enabled ? state.backgroundTasks : null, + turnId + ) + } +} diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session-transport.ts b/src/renderer/src/components/native-chat/use-structured-agent-session-transport.ts new file mode 100644 index 00000000000..58570f9de0a --- /dev/null +++ b/src/renderer/src/components/native-chat/use-structured-agent-session-transport.ts @@ -0,0 +1,33 @@ +import { useEffect, useRef } from 'react' +import type { RuntimeClientTarget } from '@/runtime/runtime-rpc-client' +import { useStructuredAgentSessionHold } from './use-structured-agent-session-hold' +import { useStructuredAgentSessionMutate } from './use-structured-agent-session-mutate' +import { useStructuredAgentSessionRead } from './use-structured-agent-session-read' + +export function useStructuredAgentSessionTransport(args: { + sessionId: string + target: RuntimeClientTarget + isVisible: boolean + enabled: boolean +}) { + const { enabled, isVisible, sessionId, target } = args + const providerVisible = isVisible && enabled + useStructuredAgentSessionHold({ + sessionId, + target, + surface: 'desktop-chat', + enabled: providerVisible + }) + const read = useStructuredAgentSessionRead({ sessionId, target, isVisible: providerVisible }) + const stateRef = useRef(read.state) + const mutation = useStructuredAgentSessionMutate({ + sessionId, + target, + stateRef, + enabled + }) + useEffect(() => { + stateRef.current = read.state + }, [read.state]) + return { ...read, ...mutation, providerVisible } +} diff --git a/src/renderer/src/components/native-chat/use-structured-agent-session.ts b/src/renderer/src/components/native-chat/use-structured-agent-session.ts index 020647de089..cfc07d3e4d5 100644 --- a/src/renderer/src/components/native-chat/use-structured-agent-session.ts +++ b/src/renderer/src/components/native-chat/use-structured-agent-session.ts @@ -1,49 +1,22 @@ -import { useCallback, useEffect, useMemo, useRef, useState } from 'react' -import * as conversationCommands from './structured-conversation-command-send' -import type { - AgentSessionOptionResult, - AgentSessionOptionsResult, - AgentSessionPromptResult -} from '../../../../shared/agent-session-wire' +import { useRef } from 'react' +import * as structuredConversationCommands from './structured-conversation-command-send' +import type { AgentSessionPromptResult } from '../../../../shared/agent-session-wire' import { useStructuredAgentSessionOutbox } from './use-structured-agent-session-outbox' -import { useStructuredAgentSessionMutate } from './use-structured-agent-session-mutate' import type { AgentSessionConversationCommand, AgentSessionConversationCommandResult } from '../../../../shared/agent-session-conversation-command' import type { AgentType } from '../../../../shared/agent-status-types' -import { getAgentSessionOptionCatalog } from '../../../../shared/agent-session-option-catalog' -import type { SessionOptionsSurface } from '../../../../shared/native-chat-session-options' -import { - applyStructuredAgentSessionOptions, - canSetStructuredAgentSessionOption, - commitStructuredAgentSessionOptionValues, - createStructuredAgentSessionOptionState, - structuredAgentSessionOptionPicks, - structuredAgentSessionOptionSnapshot, - type StructuredAgentSessionOptionState -} from '../../../../shared/structured-agent-session-options' -import { - activeStructuredAgentSessionTurnId, - hasUnansweredStructuredAgentSessionDispatch -} from '../../../../shared/structured-agent-session-projection' import type { RuntimeClientTarget } from '@/runtime/runtime-rpc-client' -import { - callStructuredAgentSession, - supportsStructuredAgentSessionPromptCancel -} from '@/runtime/structured-agent-session-client' -import { useStructuredAgentSessionHold } from './use-structured-agent-session-hold' -import { useStructuredAgentSessionRead } from './use-structured-agent-session-read' +import { supportsStructuredAgentSessionPromptCancel } from '@/runtime/structured-agent-session-client' import { pendingStructuredSessionPrompts, type StructuredPromptItem } from './structured-agent-session-message-projection' -import { structuredSessionBackgroundTasksView } from './structured-session-background-tasks-view' import { useStructuredAgentSessionMessages } from './use-structured-agent-session-messages' -import { selectStructuredAgentTurnActivity } from '../../../../shared/native-chat-turn-activity' -import { enqueueSessionOptionSettingsWrite } from './native-chat-session-option-settings-write' -import { useStructuredAgentTurnTiming } from './use-structured-agent-turn-timing' -import { encodeStructuredAgentSessionOptionValue } from '../../../../shared/structured-agent-session-option-codec' +import { useStructuredAgentSessionTransportState } from './use-structured-agent-session-transport-state' +import { useStructuredAgentSessionTransport } from './use-structured-agent-session-transport' +import { useStructuredAgentSessionOptions } from './use-structured-agent-session-options' export type { StructuredPromptItem } from './structured-agent-session-message-projection' @@ -54,202 +27,55 @@ export function useStructuredAgentSession(args: { target: RuntimeClientTarget agent: AgentType isVisible: boolean + transportEnabled?: boolean }) { - const { agent, isVisible, sessionId, target } = args - // Declared first: the hold is what gives a restored session its provider child back, and the - // read below is useless for sending until it lands. - useStructuredAgentSessionHold({ sessionId, target, surface: 'desktop-chat', enabled: isVisible }) - const { state, loadingOlder, loadOlder } = useStructuredAgentSessionRead(args) - const stateRef = useRef(state) - const { mutate, writeError } = useStructuredAgentSessionMutate({ sessionId, target, stateRef }) - const [conversationSupport, setConversationSupport] = useState<{ - sessionId: string - commands: readonly AgentSessionConversationCommand[] - } | null>(null) + const { agent, isVisible, sessionId, target, transportEnabled = true } = args + const { state, loadingOlder, loadOlder, mutate, writeError, providerVisible } = + useStructuredAgentSessionTransport({ + sessionId, + target, + isVisible, + enabled: transportEnabled + }) const commandPending = useRef(false) - const [optionState, setOptionState] = useState(() => - createStructuredAgentSessionOptionState(agent) - ) - const optionStateRef = useRef(optionState) - const activeOptionRecordRef = useRef(optionState.record) - const pendingOptionRef = useRef(null) - const optionMutationGeneration = useRef(0) - const updateOptionState = useCallback( - (update: (current: StructuredAgentSessionOptionState) => StructuredAgentSessionOptionState) => { - const next = update(optionStateRef.current) - optionStateRef.current = next - setOptionState(next) - }, - [] - ) - const optionCatalog = useMemo(() => getAgentSessionOptionCatalog(agent), [agent]) + const transportState = useStructuredAgentSessionTransportState(state, transportEnabled) + const { conversationCommands, optionSnapshot, optionSurface, setStructuredOption } = + useStructuredAgentSessionOptions({ + agent, + sessionId, + target, + transportEnabled, + providerVisible, + fence: state.fence, + turnId: transportState.turnId, + mutate + }) const outboxController = useStructuredAgentSessionOutbox({ sessionId, target, - fence: state.fence, - submissions: state.submissions + fence: transportState.fence, + submissions: transportState.submissions }) - useEffect(() => { - stateRef.current = state - }, [state]) - - useEffect(() => { - const next = createStructuredAgentSessionOptionState(agent) - optionMutationGeneration.current += 1 - pendingOptionRef.current = null - optionStateRef.current = next - activeOptionRecordRef.current = next.record - setOptionState(next) - }, [agent, sessionId, state.fence]) - - // Refresh options each turn to confirm which model the provider actually selected. - const turnId = activeStructuredAgentSessionTurnId(state.items) - // A dispatch the provider has not answered is already work; Claude's running row trails the - // send by seconds, and only a provider-minted turn is cancellable, so the two stay separate. - const isWorking = - turnId !== null || hasUnansweredStructuredAgentSessionDispatch(state.submissions, state.fence) - const turnActivity = useMemo( - () => selectStructuredAgentTurnActivity(state.items, turnId, state.activity), - [state.activity, state.items, turnId] - ) - const turnTiming = useStructuredAgentTurnTiming(state, turnId) - const backgroundTasks = structuredSessionBackgroundTasksView(state.backgroundTasks, turnId) - - useEffect(() => { - if (!isVisible || !optionCatalog) { - return - } - let stale = false - const readGeneration = optionMutationGeneration.current - void callStructuredAgentSession(target, 'agentSession.options', { - sessionId - }) - .then((result) => { - if (!stale && optionMutationGeneration.current === readGeneration) { - setConversationSupport({ sessionId, commands: result.conversationCommands ?? [] }) - updateOptionState((current) => - current.record === activeOptionRecordRef.current - ? applyStructuredAgentSessionOptions(current, optionCatalog, result) - : current - ) - } - }) - .catch(() => {}) - return () => { - stale = true - } - }, [isVisible, optionCatalog, sessionId, state.fence, target, turnId, updateOptionState]) - - const optionSnapshot = useMemo( - () => structuredAgentSessionOptionSnapshot(optionState), - [optionState] - ) - const setStructuredOption = useCallback( - async (id: string, value: string | boolean): Promise => { - const currentState = optionStateRef.current - const encoded = encodeStructuredAgentSessionOptionValue(id, value) - if ( - pendingOptionRef.current !== null || - !optionCatalog || - encoded === null || - !canSetStructuredAgentSessionOption(currentState, id, value) - ) { - return false - } - const targetRecord = currentState.record - const mutationGeneration = ++optionMutationGeneration.current - pendingOptionRef.current = id - updateOptionState((current) => ({ ...current, pendingId: id })) - try { - const result = await mutate( - 'agentSession.setOption', - 'agentSession.setOption', - { key: id, value: encoded } - ) - if ( - result && - activeOptionRecordRef.current === targetRecord && - optionMutationGeneration.current === mutationGeneration - ) { - const committed = result.options ?? { [id]: encoded } - updateOptionState((current) => - current.record === targetRecord - ? commitStructuredAgentSessionOptionValues(current, committed) - : current - ) - const picks = structuredAgentSessionOptionPicks(currentState, committed) - if (picks.length > 0) { - void enqueueSessionOptionSettingsWrite(target, { - type: 'apply-picks', - agent, - picks - }) - } - void callStructuredAgentSession( - target, - 'agentSession.options', - { sessionId } - ) - .then((refreshed) => { - if ( - activeOptionRecordRef.current === targetRecord && - optionMutationGeneration.current === mutationGeneration - ) { - updateOptionState((latest) => - latest.record === targetRecord - ? applyStructuredAgentSessionOptions(latest, optionCatalog, refreshed) - : latest - ) - } - }) - .catch(() => {}) - } - return Boolean(result) - } finally { - if ( - activeOptionRecordRef.current === targetRecord && - optionMutationGeneration.current === mutationGeneration - ) { - pendingOptionRef.current = null - updateOptionState((current) => - current.record === targetRecord && current.pendingId === id - ? { ...current, pendingId: null } - : current - ) - } - } - }, - [agent, mutate, optionCatalog, sessionId, target, updateOptionState] - ) - const setOption = useCallback( - async (id: string, value: string | boolean) => { - await setStructuredOption(id, value) - return { snapshot: structuredAgentSessionOptionSnapshot(optionStateRef.current) } - }, - [setStructuredOption] - ) - const optionSurface = useMemo( - () => ({ - getSnapshot: () => optionSnapshot, - setOption, - invokeAction: async () => ({ snapshot: optionSnapshot }), - subscribe: () => () => {} - }), - [optionSnapshot, setOption] - ) - - const prompts = pendingStructuredSessionPrompts(state.items) + const prompts = pendingStructuredSessionPrompts(transportState.journalItems) const { outbox } = outboxController - const messages = useStructuredAgentSessionMessages(state.items, outbox, state.submissions) + const messages = useStructuredAgentSessionMessages( + transportState.journalItems, + outbox, + transportState.submissions + ) return { - conversationCommands: - conversationSupport?.sessionId === sessionId ? conversationSupport.commands : [], + conversationCommands, runConversationCommand: (command: AgentSessionConversationCommand) => - conversationCommands.sendStructuredConversationCommand({ + structuredConversationCommands.sendStructuredConversationCommand({ command, pending: commandPending, - blocked: Boolean(turnId || prompts.length || backgroundTasks.isMonitoring || outbox.length), + blocked: Boolean( + transportState.turnId || + prompts.length || + transportState.backgroundTasks.isMonitoring || + outbox.length + ), send: (command) => mutate( 'agentSession.conversationCommand', @@ -257,12 +83,14 @@ export function useStructuredAgentSession(args: { { command } ) }), - journalItems: state.items, + journalItems: transportState.journalItems, messages, - status: state.status, - error: state.error ?? writeError ?? outboxController.error, - hasOlder: state.hasOlder, - loadingOlder, + status: transportEnabled ? state.status : 'ready', + error: transportEnabled + ? (state.error ?? writeError ?? outboxController.error) + : outboxController.error, + hasOlder: transportEnabled && state.hasOlder, + loadingOlder: transportEnabled && loadingOlder, loadOlder, prompts, outbox, @@ -270,12 +98,12 @@ export function useStructuredAgentSession(args: { send: (...input: Parameters) => !commandPending.current && outboxController.send(...input), retry: outboxController.retry, - isWorking, - workingStartedAt: turnTiming.workingStartedAt, - settledTurns: turnTiming.settledTurns, - turnActivity, - backgroundTasks, - turnId, + isWorking: transportState.isWorking, + workingStartedAt: transportState.turnTiming.workingStartedAt, + settledTurns: transportState.turnTiming.settledTurns, + turnActivity: transportState.turnActivity, + backgroundTasks: transportState.backgroundTasks, + turnId: transportState.turnId, cancel: async (turnId: string, prompt?: StructuredPromptCancelTarget) => { // Capability negotiation must complete before mutate constructs the payload // fingerprint and operation id: older hosts reject the strict prompt field. @@ -302,7 +130,7 @@ export function useStructuredAgentSession(args: { ), optionSnapshot, optionSurface, - sessionCommands: state.commands ?? undefined, + sessionCommands: transportEnabled ? (state.commands ?? undefined) : undefined, setStructuredOption } } diff --git a/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.test.ts b/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.test.ts index d23652db43b..f0c307ae0ca 100644 --- a/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.test.ts +++ b/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.test.ts @@ -1,16 +1,25 @@ import { beforeEach, describe, expect, it, vi } from 'vitest' +import type { StructuredAgentLaunchSettlement } from '@/lib/structured-agent-launch-settlement' +import type { AiVaultSession } from '../../../../shared/ai-vault-types' + +type BeginArgs = { beforeOpen?: (sessionId: string) => boolean | void } +type Launch = { + sessionId: string + settlement: Promise + tab: { id: string } +} const mocks = vi.hoisted(() => ({ - settleStructuredAgentLaunch: vi.fn(), - prepareAiVaultSessionForResume: vi.fn(), - activateAndRevealWorktree: vi.fn(), - activateAndRevealFolderWorkspace: vi.fn(), - toastError: vi.fn(), + beginStructuredAgentSessionProvisionalLaunch: vi.fn<(args: BeginArgs) => Launch | null>(), + prepareAiVaultSessionForResume: vi.fn<() => Promise<{ sessionId: string }>>(), + activateAndRevealWorktree: vi.fn<(worktreeId: string) => unknown>(), + activateAndRevealFolderWorkspace: vi.fn<(workspaceId: string) => unknown>(), + toastError: vi.fn<(message: string) => void>(), activeWorktreeId: 'other-worktree' })) -vi.mock('@/lib/structured-agent-launch-settlement', () => ({ - settleStructuredAgentLaunch: mocks.settleStructuredAgentLaunch +vi.mock('@/lib/structured-agent-session-provisional-tab', () => ({ + beginStructuredAgentSessionProvisionalLaunch: mocks.beginStructuredAgentSessionProvisionalLaunch })) vi.mock('@/lib/ai-vault-session-resume-preparation', () => ({ prepareAiVaultSessionForResume: mocks.prepareAiVaultSessionForResume @@ -26,52 +35,92 @@ vi.mock('@/store', () => ({ import { resumeAiVaultSessionInNewChat } from './ai-vault-session-resume-in-chat-launch' -const session = { agent: 'codex', sessionId: 'vault-1', filePath: '/x' } as never +const session: AiVaultSession = { + id: 'vault-1', + executionHostId: 'local', + agent: 'codex', + sessionId: 'vault-1', + title: 'Vault session', + cwd: '/x', + branch: null, + model: null, + filePath: '/x', + codexHome: null, + createdAt: null, + updatedAt: null, + modifiedAt: '2025-01-01T00:00:00.000Z', + messageCount: 1, + totalTokens: 1, + previewMessages: [], + queuedMessageCount: 0, + subagentTranscriptCount: 0, + resumeCommand: 'resume', + subagent: null +} describe('resumeAiVaultSessionInNewChat', () => { beforeEach(() => { vi.clearAllMocks() mocks.prepareAiVaultSessionForResume.mockResolvedValue({ sessionId: 'provider-1' }) + mocks.activateAndRevealWorktree.mockReturnValue({ primaryTabId: null }) + mocks.beginStructuredAgentSessionProvisionalLaunch.mockImplementation((args) => { + args.beforeOpen?.('session-1') + return { + sessionId: 'session-1', + tab: { id: 'agent-session:session-1' }, + settlement: Promise.resolve({ kind: 'structured', sessionId: 'session-1' }) + } + }) }) - it('adopts the prepared conversation with no legacy fallback and reveals the workspace', async () => { - mocks.settleStructuredAgentLaunch.mockResolvedValue({ kind: 'structured', sessionId: 's' }) + it('reveals the workspace and opens chat before provider settlement', async () => { + let settle!: (value: StructuredAgentLaunchSettlement) => void + const settlement = new Promise((resolve) => { + settle = resolve + }) + mocks.beginStructuredAgentSessionProvisionalLaunch.mockImplementation((args) => { + args.beforeOpen?.('session-1') + return { sessionId: 'session-1', tab: { id: 'agent-session:session-1' }, settlement } + }) await resumeAiVaultSessionInNewChat(session, 'codex', 'worktree-1') - expect(mocks.settleStructuredAgentLaunch).toHaveBeenCalledWith( - 'worktree-1', - 'codex', - { resumeFrom: { providerSessionId: 'provider-1' } }, - {} + expect(mocks.beginStructuredAgentSessionProvisionalLaunch).toHaveBeenCalledWith( + expect.objectContaining({ + plan: expect.objectContaining({ resumeFrom: { providerSessionId: 'provider-1' } }), + hooks: {} + }) ) expect(mocks.activateAndRevealWorktree).toHaveBeenCalledWith('worktree-1') expect(mocks.toastError).not.toHaveBeenCalled() + settle({ kind: 'structured', sessionId: 'session-1' }) }) - it('toasts the conflict message when the launch fails with that code', async () => { - mocks.settleStructuredAgentLaunch.mockResolvedValue({ - kind: 'failed', - error: Object.assign(new Error('held'), { code: 'agent_session_conflict' }) + it('toasts a conflict reported by the eventual settlement', async () => { + const error = Object.assign(new Error('held'), { code: 'agent_session_conflict' }) + mocks.beginStructuredAgentSessionProvisionalLaunch.mockReturnValue({ + sessionId: 'session-1', + tab: { id: 'agent-session:session-1' }, + settlement: Promise.resolve({ kind: 'failed', error }) }) await resumeAiVaultSessionInNewChat(session, 'codex', 'worktree-1') - - expect(mocks.toastError).toHaveBeenCalledWith( - 'Another chat is already holding this conversation.' + await vi.waitFor(() => + expect(mocks.toastError).toHaveBeenCalledWith( + 'Another chat is already holding this conversation.' + ) ) - expect(mocks.activateAndRevealWorktree).not.toHaveBeenCalled() }) - it('stays silent on an unknown outcome so the launch layer can reconcile it', async () => { - mocks.settleStructuredAgentLaunch.mockResolvedValue({ - kind: 'visibility-unknown', - sessionId: 's' + it('keeps unknown outcomes silent for reconciliation', async () => { + mocks.beginStructuredAgentSessionProvisionalLaunch.mockReturnValue({ + sessionId: 'session-1', + tab: { id: 'agent-session:session-1' }, + settlement: Promise.resolve({ kind: 'visibility-unknown', sessionId: 'session-1' }) }) await resumeAiVaultSessionInNewChat(session, 'codex', 'worktree-1') - + await Promise.resolve() expect(mocks.toastError).not.toHaveBeenCalled() - expect(mocks.activateAndRevealWorktree).not.toHaveBeenCalled() }) }) diff --git a/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.ts b/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.ts index dd5b39d3ff5..01d286f4630 100644 --- a/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.ts +++ b/src/renderer/src/components/right-sidebar/ai-vault-session-resume-in-chat-launch.ts @@ -11,14 +11,14 @@ import { activateAndRevealFolderWorkspace, activateAndRevealWorktree } from '@/lib/worktree-activation' +import { beginStructuredAgentSessionProvisionalLaunch } from '@/lib/structured-agent-session-provisional-tab' -export function activateAiVaultResumeWorkspace(workspaceId: string): void { +export function activateAiVaultResumeWorkspace(workspaceId: string): boolean { const workspaceScope = parseWorkspaceKey(workspaceId) if (workspaceScope?.type === 'folder') { - activateAndRevealFolderWorkspace(workspaceScope.folderWorkspaceId) - return + return activateAndRevealFolderWorkspace(workspaceScope.folderWorkspaceId) !== false } - activateAndRevealWorktree(workspaceId) + return activateAndRevealWorktree(workspaceId) !== false } /** Adopt a vault conversation into a new structured chat. The route was decided by the @@ -34,22 +34,28 @@ export async function resumeAiVaultSessionInNewChat( // Codex rows can live under a shared legacy home; the same preparation the terminal resume // runs re-pins them, and its result is what names the conversation the host will look for. const preparedSession = await prepareAiVaultSessionForResume(session) - const settlement = await adoptAgentSessionLaunchVerdict({ + const plan = adoptAgentSessionLaunchVerdict({ route: 'structured-native-chat', agent, worktreeId, resumeFrom: { providerSessionId: preparedSession.sessionId } - }).launch({}) - if (settlement?.kind === 'failed') { - notifyAiVaultSessionResumeInChatFailure(settlement.error) - return - } - // Why: an unknown outcome is not a failure; the launch layer reconciles it on the next attempt. - if (settlement?.kind !== 'structured') { - return - } - if (useAppStore.getState().activeWorktreeId !== worktreeId) { - activateAiVaultResumeWorkspace(worktreeId) + }) + const launch = beginStructuredAgentSessionProvisionalLaunch({ + plan, + hooks: {}, + beforeOpen: () => { + if (useAppStore.getState().activeWorktreeId !== worktreeId) { + return activateAiVaultResumeWorkspace(worktreeId) + } + return true + } + }) + if (launch) { + void launch.settlement.then((settlement) => { + if (settlement.kind === 'failed') { + notifyAiVaultSessionResumeInChatFailure(settlement.error) + } + }) } } catch (error) { notifyAiVaultSessionResumeInChatFailure(error) diff --git a/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.test.ts b/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.test.ts index 64f191c007a..ee3542f746a 100644 --- a/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.test.ts +++ b/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.test.ts @@ -57,7 +57,7 @@ describe('runSourceControlAgentActionStart', () => { it('waits for deferred prompt delivery before confirming a source-control launch', async () => { mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.resolve({ delivered: true, failureNotified: false }) @@ -84,7 +84,7 @@ describe('runSourceControlAgentActionStart', () => { const onLaunchAccepted = vi.fn() const onLaunchAborted = vi.fn() mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult @@ -110,7 +110,7 @@ describe('runSourceControlAgentActionStart', () => { it('fires onLaunchAccepted exactly once and only when a tab was created', async () => { const onLaunchAccepted = vi.fn() mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.resolve({ delivered: true, failureNotified: false }) @@ -136,7 +136,7 @@ describe('runSourceControlAgentActionStart', () => { const onLaunchAccepted = vi.fn() const onLaunchAborted = vi.fn() mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.resolve({ delivered: false, failureNotified: true }) @@ -157,7 +157,7 @@ describe('runSourceControlAgentActionStart', () => { const originalConsole = console vi.stubGlobal('console', { ...originalConsole, error: vi.fn() }) mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.reject(new Error('boom')) @@ -189,7 +189,7 @@ describe('runSourceControlAgentActionStart', () => { it('keeps the source-control dialog open when deferred prompt delivery fails', async () => { mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.resolve({ delivered: false, failureNotified: false }) @@ -206,7 +206,7 @@ describe('runSourceControlAgentActionStart', () => { it('does not show a generic start failure when deferred delivery already notified the user', async () => { mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.resolve({ delivered: false, failureNotified: true }) @@ -226,7 +226,7 @@ describe('runSourceControlAgentActionStart', () => { const consoleError = vi.fn() vi.stubGlobal('console', { ...originalConsole, error: consoleError }) mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.reject(error) @@ -247,7 +247,7 @@ describe('runSourceControlAgentActionStart', () => { it('keeps non-deferred tab launches immediate', async () => { mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true }) @@ -338,7 +338,7 @@ describe('runSourceControlAgentActionStart', () => { vi.stubGlobal('console', { ...originalConsole, error: consoleError }) mocks.onSaveAgentDefault.mockRejectedValue(new Error('settings not loaded')) mocks.launchAgentInNewTab.mockReturnValue({ - tabId: 'tab-1', + surface: { kind: 'local-terminal', tabId: 'tab-1' }, startupPlan: {} as never, pasteDraftAfterLaunch: true, promptDeliveryResult: Promise.resolve({ delivered: true, failureNotified: false }) diff --git a/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.ts b/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.ts index b9b86e93228..201ca43b03b 100644 --- a/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.ts +++ b/src/renderer/src/components/right-sidebar/runSourceControlAgentActionStart.ts @@ -105,8 +105,8 @@ export async function runSourceControlAgentActionStart({ launchSource }) launched = Boolean(result) - if (result?.tabId) { - focusTerminalTabSurface(result.tabId) + if (result?.surface.kind === 'local-terminal') { + focusTerminalTabSurface(result.surface.tabId) } // Why: lets callers park launch-scoped state before submit-after-ready finishes // (can take tens of seconds); host mutations still wait for delivery below. diff --git a/src/renderer/src/components/right-sidebar/source-control/ai/recovery-launch.ts b/src/renderer/src/components/right-sidebar/source-control/ai/recovery-launch.ts index 1ba24f6ca83..ec1a7169825 100644 --- a/src/renderer/src/components/right-sidebar/source-control/ai/recovery-launch.ts +++ b/src/renderer/src/components/right-sidebar/source-control/ai/recovery-launch.ts @@ -170,8 +170,8 @@ export async function launchSourceControlRecoveryAgentWithDefault({ return false } - if (result.tabId) { - focusTerminalTabSurface(result.tabId) + if (result.surface.kind === 'local-terminal') { + focusTerminalTabSurface(result.surface.tabId) } toast.success(copy.success) return true diff --git a/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts b/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts index 77ff1c193b8..7185f453351 100644 --- a/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts +++ b/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts @@ -19,6 +19,7 @@ import { toFolderWorkspaceLinkedTask } from './folder-workspace-composer-helpers' import { planAgentSessionLaunch } from '@/lib/agent-session-launch-plan' +import { beginStructuredAgentSessionProvisionalLaunch } from '@/lib/structured-agent-session-provisional-tab' import { getNewWorkspaceProjectGroupHostId } from '@/lib/new-workspace-project-options' import { useAppStore } from '@/store' import { @@ -206,59 +207,30 @@ export async function submitFolderWorkspaceCreate({ : undefined onOpenChange(false) try { - let activation = activateAndRevealFolderWorkspace(workspace.id, { - agent: quickAgent, - ...(!structuredLaunch && startup ? { startup } : {}), - ...(structuredLaunch ? { providesInitialSurface: true } : {}), - runtimeEnvironmentId - }) - let structuredLaunchAccepted = structuredLaunch - const settlement = - plan?.route === 'structured-native-chat' - ? await plan.launch( - { - legacyFallback: async () => { - if (pendingFirstAgentMessageRename) { - await useAppStore - .getState() - .updateFolderWorkspace(workspace.id, { pendingFirstAgentMessageRename: true }) - .catch(() => undefined) - } - await preflightAgentTrust({ - agent: quickAgent, - workspacePath: workspace.folderPath, - connectionId: workspace.connectionId ?? projectGroup.connectionId - }) - const fallbackActivation = activateAndRevealFolderWorkspace(workspace.id, { - agent: quickAgent, - ...(startup ? { startup } : {}), - runtimeEnvironmentId - }) - return { - activation: fallbackActivation, - primaryTabId: - fallbackActivation === false ? null : fallbackActivation.primaryTabId - } - } - }, - { worktreeId: folderWorkspaceKey(workspace.id) } - ) - : null - if (settlement) { - // Why: the workspace exists either way. Unknown keeps reporting false and failed true, as - // the boolean did before the loop was shared; the launch layer owns the failure toast. - if (settlement.kind === 'visibility-unknown') { - return false - } - if (settlement.kind === 'failed' || settlement.kind === 'cancelled') { - return true - } - if (settlement.kind === 'refused-then-legacy') { - structuredLaunchAccepted = false - // Why: this flow's own fallback always activates; `??` only satisfies the shared type. - activation = settlement.activation ?? false - } + const activationHolder: { + value: ReturnType + } = { value: false } + const revealWorkspace = (): boolean => { + activationHolder.value = activateAndRevealFolderWorkspace(workspace.id, { + agent: quickAgent, + ...(!structuredLaunch && startup ? { startup } : {}), + ...(structuredLaunch ? { providesInitialSurface: true } : {}), + runtimeEnvironmentId + }) + return activationHolder.value !== false } + const structuredLaunchAccepted = structuredLaunch + if (plan?.route === 'structured-native-chat') { + beginStructuredAgentSessionProvisionalLaunch({ + plan, + hooks: {}, + target: { worktreeId: folderWorkspaceKey(workspace.id) }, + beforeOpen: revealWorkspace + }) + } else { + revealWorkspace() + } + const activation = activationHolder.value if ( !structuredLaunchAccepted && quickAgent && diff --git a/src/renderer/src/components/tab-bar/QuickLaunchButton.tsx b/src/renderer/src/components/tab-bar/QuickLaunchButton.tsx index 6d5b523c2af..026944575c8 100644 --- a/src/renderer/src/components/tab-bar/QuickLaunchButton.tsx +++ b/src/renderer/src/components/tab-bar/QuickLaunchButton.tsx @@ -153,17 +153,15 @@ function QuickLaunchAgentMenuItemsInner({ ) return } - if (!result.tabId) { - // Why: paired web clients create the tab on the host; focus follows the - // next session-tabs snapshot instead of a local tab id. + if (result.surface.kind !== 'local-terminal') { return } - onFocusTerminal(result.tabId) + onFocusTerminal(result.surface.tabId) // Why: launch success means the terminal session exists. Agent readiness // can lag behind on slow machines, and prompt paste flows already own // their own readiness timeout once a PTY exists. - const launchedTabId = result.tabId + const launchedTabId = result.surface.tabId void waitForTerminalPty(launchedTabId, 5000).then((hasPty) => { if (hasPty) { return @@ -207,12 +205,6 @@ function QuickLaunchAgentMenuItemsInner({ const label = entry?.label ?? agent const isStructuredLaunchPending = isAgentSessionHandleProvider(agent) && structuredLaunchStatusByAgent[agent] === 'pending' - const pendingLabel = translate( - 'components.native-chat.structuredSessionLaunchPending', - 'Starting {{value0}} chat…', - { value0: label } - ) - const menuLabel = isStructuredLaunchPending ? pendingLabel : label const showsDefaultAgentShortcut = newAgentShortcut !== null && defaultAgent !== 'blank' && agent === defaultAgent return ( @@ -221,22 +213,18 @@ function QuickLaunchAgentMenuItemsInner({ disabled={isStructuredLaunchPending} onSelect={() => runLaunch(agent)} className="gap-2 rounded-[7px] px-2 py-1.5 text-[12px] leading-5 font-medium" - title={ - isStructuredLaunchPending - ? pendingLabel - : translate( - 'auto.components.tab.bar.QuickLaunchButton.ec2adf093e', - 'Launch {{value0}} in a new terminal', - { value0: label } - ) - } + title={translate( + 'auto.components.tab.bar.QuickLaunchButton.ec2adf093e', + 'Launch {{value0}} in a new terminal', + { value0: label } + )} > {isStructuredLaunchPending ? (